diff --git a/app/config/environment.d.ts b/app/config/environment.d.ts index 00e55a2e2f0..c63f4710b6f 100644 --- a/app/config/environment.d.ts +++ b/app/config/environment.d.ts @@ -32,6 +32,34 @@ declare const config: { assetsPrefix: string; sentryDSN: string | null; googleTagManagerId: string | null; + cedarConfig: { + ceeConfig: { + showTemplateUpload: boolean, + showDataSaver: boolean, + showSampleTemplateLinks: boolean, + }, + editorConfig: { + sampleTemplateLocationPrefix: string, + loadSampleTemplateName: string, + expandedSampleTemplateLinks: boolean, + showTemplateRenderingRepresentation: boolean, + showMultiInstanceInfo: boolean, + expandedInstanceDataFull: boolean, + expandedInstanceDataCore: boolean, + expandedMultiInstanceInfo: boolean, + expandedTemplateRenderingRepresentation: boolean, + showInstanceDataFull: boolean, + showTemplateSourceData: boolean, + expandedTemplateSourceData: boolean, + collapseStaticComponents: boolean, + showStaticText: boolean, + showInstanceDataCore: boolean, + showHeader: boolean, + showFooter: boolean, + showInstanceDataFull: boolean, + showTemplateSourceData: boolean, + }, + } sentryOptions: { release?: string; ignoreErrors: string[]; diff --git a/app/guid-node/metadata/-components/metadata-cedar/styles.scss b/app/guid-node/metadata/-components/metadata-cedar/styles.scss new file mode 100644 index 00000000000..124d56e8a97 --- /dev/null +++ b/app/guid-node/metadata/-components/metadata-cedar/styles.scss @@ -0,0 +1,19 @@ +// stylelint-disable max-nesting-depth, selector-max-compound-selectors + +.metadata-cedar-container { + margin-bottom: 30px; + width: 100%; + display: flex; + flex-direction: column; + justify-content: flex-start; + align-items: flex-start; + + .cedar-container { + width: 100%; + margin-bottom: 30px; + } + + .return-container { + width: 100%; + } +} diff --git a/app/guid-node/metadata/-components/metadata-cedar/template.hbs b/app/guid-node/metadata/-components/metadata-cedar/template.hbs new file mode 100644 index 00000000000..cf77cb38d2c --- /dev/null +++ b/app/guid-node/metadata/-components/metadata-cedar/template.hbs @@ -0,0 +1,16 @@ +
+
+ +
+
+ +
+
diff --git a/app/guid-node/metadata/-components/metadata-select/component.ts b/app/guid-node/metadata/-components/metadata-select/component.ts deleted file mode 100644 index 5ad7b32ac58..00000000000 --- a/app/guid-node/metadata/-components/metadata-select/component.ts +++ /dev/null @@ -1,24 +0,0 @@ -import Component from '@glimmer/component'; -import { inject as service } from '@ember/service'; -import Media from 'ember-responsive'; -import CedarMetadataTemplateModel from 'ember-osf-web/models/cedar-metadata-template'; -import { action } from '@ember/object'; - -interface TabArgs { - template: CedarMetadataTemplateModel; -} - - -export default class MetadataSelect extends Component { - @service media!: Media; - - template = this.args.template; - - @action - // eslint-disable-next-line - selectTemplate() { } - - get isMobile() { - return this.media.isMobile; - } -} diff --git a/app/guid-node/metadata/-components/metadata-select/template.hbs b/app/guid-node/metadata/-components/metadata-select/template.hbs index 2cf4139af08..ef738330309 100644 --- a/app/guid-node/metadata/-components/metadata-select/template.hbs +++ b/app/guid-node/metadata/-components/metadata-select/template.hbs @@ -1,16 +1,15 @@ -
+
- {{ this.template.schemaName }} + {{ @template.schemaName }}
- {{ this.template.template.description}} + {{ @template.template.description}}
diff --git a/app/guid-node/metadata/-components/metadata-tabs/component.ts b/app/guid-node/metadata/-components/metadata-tabs/component.ts index 1dd37b9df0c..8eec9838754 100644 --- a/app/guid-node/metadata/-components/metadata-tabs/component.ts +++ b/app/guid-node/metadata/-components/metadata-tabs/component.ts @@ -17,7 +17,7 @@ export default class MetadataTabs extends Component { @service media!: Media; @service analytics!: Analytics; - guidNode= this.args.guidNode; + guidNode = this.args.guidNode; templates = this.args.templates; @tracked showTabs = false; diff --git a/app/guid-node/metadata/add/controller.ts b/app/guid-node/metadata/add/controller.ts index 3e3139cb702..fde53f19e0f 100644 --- a/app/guid-node/metadata/add/controller.ts +++ b/app/guid-node/metadata/add/controller.ts @@ -2,12 +2,43 @@ import Controller from '@ember/controller'; import { inject as service } from '@ember/service'; import Media from 'ember-responsive'; import config from 'ember-osf-web/config/environment'; +import { action } from '@ember/object'; +import { tracked } from '@glimmer/tracking'; +import RouterService from '@ember/routing/router-service'; +import CedarMetadataTemplateModel from 'ember-osf-web/models/cedar-metadata-template'; +import Intl from 'ember-intl/services/intl'; export default class GuidMetadataAdd extends Controller { @service media!: Media; + @service router!: RouterService; + @service intl!: Intl; supportEmail = config.support.supportEmail; + @tracked displaySelectionOptions = true; + @tracked selectedTemplate?: CedarMetadataTemplateModel; + @tracked tabTitle = this.intl.t('metadata.add-flow.select'); + + @action + selectTemplate(cedarMetadataTemplate: CedarMetadataTemplateModel): void { + this.displaySelectionOptions = false; + this.selectedTemplate = cedarMetadataTemplate; + this.updateTitle(); + } + + @action + closeCedarEditor(): void { + this.displaySelectionOptions = true; + this.selectedTemplate = undefined; + this.updateTitle(); + } + + private updateTitle(): void { + // eslint-disable-next-line max-len + const translation = this.displaySelectionOptions ? 'metadata.add-flow.tab-title-select' : 'metadata.add-flow.tab-title-add'; + this.tabTitle = this.intl.t(translation); + } + get isMobile() { return this.media.isMobile; } diff --git a/app/guid-node/metadata/add/template.hbs b/app/guid-node/metadata/add/template.hbs index 4eac9c4e7c3..2951de8786c 100644 --- a/app/guid-node/metadata/add/template.hbs +++ b/app/guid-node/metadata/add/template.hbs @@ -1,23 +1,33 @@ +{{page-title this.tabTitle}}
-
-
-

- {{t 'metadata.add-flow.select-metadata-schema'}} -

+ {{#if this.displaySelectionOptions}} +
+
+

+ {{t 'metadata.add-flow.select-metadata-schema'}} +

+
+
+ {{t 'metadata.add-flow.explanation' supportEmail=this.supportEmail htmlSafe=true }} +
+
+ {{t 'metadata.add-flow.available-schemas' }} +
-
- {{t 'metadata.add-flow.explanation' supportEmail=this.supportEmail htmlSafe=true }} +
+ {{#each this.model.templates as |template|}} + + {{/each}}
-
- {{t 'metadata.add-flow.available-schemas' }} -
-
-
- {{#each this.model.templates as |template|}} - - {{/each}} -
+ {{else}} + + {{/if}}
diff --git a/app/guid-node/metadata/template.hbs b/app/guid-node/metadata/template.hbs index 3cdcecd5546..fe7a9cf90de 100644 --- a/app/guid-node/metadata/template.hbs +++ b/app/guid-node/metadata/template.hbs @@ -1,2 +1,3 @@ +{{page-title (t 'metadata.tab-title')}} {{outlet}} diff --git a/config/environment.js b/config/environment.js index 4f61c2a037a..7ddda948865 100644 --- a/config/environment.js +++ b/config/environment.js @@ -24,6 +24,27 @@ const { showDataSaver: false, showSampleTemplateLinks: false, }, + editorConfig: { + sampleTemplateLocationPrefix: 'http://localhost:4240/cedar-embeddable-editor-sample-templates/', + loadSampleTemplateName: '01', + expandedSampleTemplateLinks: true, + showTemplateRenderingRepresentation: false, + showMultiInstanceInfo: false, + expandedInstanceDataFull: false, + expandedInstanceDataCore: false, + expandedMultiInstanceInfo: false, + expandedTemplateRenderingRepresentation: false, + expandedTemplateSourceData: false, + collapseStaticComponents: false, + showStaticText: false, + showInstanceDataCore: false, + showHeader: false, + showFooter: false, + + // These are required to be false + showInstanceDataFull: false, + showTemplateSourceData: false, + }, }, CLIENT_ID: clientId, COLLECTIONS_ENABLED = false, diff --git a/lib/osf-components/addon/components/cedar-metadata-editor/component.ts b/lib/osf-components/addon/components/cedar-metadata-editor/component.ts index af4363346fc..b456a8cac15 100644 --- a/lib/osf-components/addon/components/cedar-metadata-editor/component.ts +++ b/lib/osf-components/addon/components/cedar-metadata-editor/component.ts @@ -10,6 +10,9 @@ interface Args { } export default class CedarMetadataEditor extends Component { + + cedarConfig = cedarConfig.editorConfig; + @action save() { /* @@ -17,5 +20,4 @@ export default class CedarMetadataEditor extends Component { console.log(cee.metadata); */ } - cedarConfig = cedarConfig; } diff --git a/lib/osf-components/addon/components/cedar-metadata-editor/styles.scss b/lib/osf-components/addon/components/cedar-metadata-editor/styles.scss new file mode 100644 index 00000000000..6a43036b35a --- /dev/null +++ b/lib/osf-components/addon/components/cedar-metadata-editor/styles.scss @@ -0,0 +1,46 @@ +// stylelint-disable max-nesting-depth, selector-max-compound-selectors + +.cedar-add-container { + width: 100%; + display: flex; + flex-direction: column; + justify-content: flex-start; + align-items: flex-start; + + .cedar-container { + width: 100%; + display: flex; + flex-direction: row; + justify-content: flex-start; + align-items: flex-start; + margin-bottom: 30px; + + .cedar-editor { + width: 100%; + + h1 { + font-size: 24px; + font-weight: bold; + margin-top: 5px; + } + + h2 { + display: none; + } + + } + } + + .action-container { + width: calc(100% - 85px); + display: flex; + flex-direction: row; + justify-content: flex-end; + align-items: center; + } + + :global(.template-card) { + margin: 0 !important; + } +} + diff --git a/lib/osf-components/addon/components/cedar-metadata-editor/template.hbs b/lib/osf-components/addon/components/cedar-metadata-editor/template.hbs index 0d519098cd2..0fe28d0a3ac 100644 --- a/lib/osf-components/addon/components/cedar-metadata-editor/template.hbs +++ b/lib/osf-components/addon/components/cedar-metadata-editor/template.hbs @@ -1,13 +1,19 @@ -
- - - +
+
+ +
+
+ +
\ No newline at end of file diff --git a/mirage/fixtures/cedar-metadata-templates.ts b/mirage/fixtures/cedar-metadata-templates.ts index be5ce51027a..e4a9a784a5e 100644 --- a/mirage/fixtures/cedar-metadata-templates.ts +++ b/mirage/fixtures/cedar-metadata-templates.ts @@ -1,35 +1,60 @@ +/* eslint-disable max-len */ import CedarMetadataTemplateModel from 'ember-osf-web/models/cedar-metadata-template'; +import { biosampleTemplate } from './cedar-templates/cedar-template.biosample'; +import { ffisTemplate } from './cedar-templates/cedar-template.ffis'; +import { licenseTemplate } from './cedar-templates/cedar-template.license'; +import { radxTemplate } from './cedar-templates/cedar-template.radx'; +import { bibframeTemplate } from './cedar-templates/cedar-template.bibframe'; +import { healTemplate } from './cedar-templates/cedar-template.heal'; const cedarMetadataTemplates: Array> = [ { id: '2', - schemaName: 'OSF Registries - 1', - cedarId: 'abc-123', + schemaName: 'Biosample Submission', + cedarId: 'https://repo.metadatacenter.net/templates/58098c2d-dea9-4ec6-8f5d-d85d5f1b4f6f', active: true, - template: Object({ - description: 'A template description may or may not exist on the cedar template object', - }), + template: biosampleTemplate, templateVersion: 1, }, { id: '3', - schemaName: 'OSF Registries - 2', - cedarId: 'abc-123', + schemaName: 'Ffis Funder Draft', + cedarId: 'https://repo.metadatacenter.org/templates/352a29d7-3df8-4bdd-bd75-e09d16c7063d', active: true, - template: Object({ - description: 'A template description may or may not exist on the cedar template object', - }), + template: ffisTemplate, templateVersion: 1, }, { id: '1', - schemaName: 'A - OSF Registries - 2', - cedarId: 'abc-123', + schemaName: 'BIDS Dataset Description', + cedarId: 'https://repo.metadatacenter.org/template-fields/8b51634a-42df-414b-be27-6cfdfb611591', active: true, - template: Object({ - description: 'A template description may or may not exist on the cedar template object', - }), + template: licenseTemplate, + templateVersion: 1, + }, + { + id: '6', + schemaName: 'HEAL Study Core Metadata', + cedarId: 'https://repo.metadatacenter.org/templates/d01330c7-ccd1-4e99-856a-86e08937347c', + active: true, + template: healTemplate, + templateVersion: 1, + }, + { + id: '4', + schemaName: 'Radx Metadata Specification', + cedarId: 'https://repo.metadatacenter.org/templates/ec918d9b-fcd2-4e6e-b63b-2c67aece9f68', + active: true, + template: radxTemplate, + templateVersion: 1, + }, + { + id: '5', + schemaName: 'BIBFRAME AUDIO WORK', + cedarId: 'https://repo.metadatacenter.net/template-fields/6214d1f3-9667-492c-9d87-8ce5e7b65960', + active: true, + template: bibframeTemplate, templateVersion: 1, }, ]; diff --git a/mirage/fixtures/cedar-templates/cedar-template.bibframe.ts b/mirage/fixtures/cedar-templates/cedar-template.bibframe.ts new file mode 100644 index 00000000000..83044da11a2 --- /dev/null +++ b/mirage/fixtures/cedar-templates/cedar-template.bibframe.ts @@ -0,0 +1,2054 @@ +/* eslint-disable max-len */ +export const bibframeTemplate = Object({ + 'bibo:status': 'bibo:draft', + _ui: { + order: [ + 'Title', + 'Variant Title For The Work', + 'Date Of Work', + 'Place Of Origin Of The Work', + 'Nature Of Content', + 'Coverage Of Content', + 'Content Type', + 'Media Type', + 'Carrier Type', + 'captureInformation', + 'Language Of Expression', + 'Genre', + 'Contributor', + 'Copyright Date', + ], + pages: [], + propertyLabels: { + captureInformation: 'Capture Information', + Title: 'Title', + 'Place Of Origin Of The Work': 'Place Of Origin Of The Work', + 'Nature Of Content': 'Nature Of Content', + Contributor: 'Contributor', + 'Copyright Date': 'Copyright Date', + 'Language Of Expression': 'Language Of Expression', + 'Content Type': 'Content Type', + 'Media Type': 'Media Type', + 'Carrier Type': 'Carrier Type', + 'Variant Title For The Work': 'Variant Title For The Work', + 'Date Of Work': 'Date Of Work', + Genre: 'Genre', + 'Coverage Of Content': 'Coverage Of Content', + }, + }, + title: 'Bibframe audio work template schema', + required: [ + '@context', + '@id', + 'schema:isBasedOn', + 'schema:name', + 'schema:description', + 'pav:createdOn', + 'pav:createdBy', + 'pav:lastUpdatedOn', + 'oslc:modifiedBy', + 'Date Of Work', + 'captureInformation', + 'Variant Title For The Work', + 'Genre', + 'Nature Of Content', + 'Title', + 'Language Of Expression', + 'Media Type', + 'Copyright Date', + 'Contributor', + 'Content Type', + 'Place Of Origin Of The Work', + 'Coverage Of Content', + 'Carrier Type', + ], + 'schema:name': 'BIBFRAME AUDIO WORK', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + bibo: 'http://purl.org/ontology/bibo/', + 'schema:description': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Bibframe audio work template schema generated by the CEDAR Template Editor 2.6.44', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + 'pav:lastUpdatedOn': '2016-09-13T10:05:35-07:00', + 'pav:createdOn': '2016-09-13T10:01:05-07:00', + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.net/templates/a87b5cb4-6344-4a43-8fcb-82d400bff2c7', + 'pav:version': '0.0.1', + 'schema:description': 'BIBFRAME Audio Work Template', + '@type': 'https://schema.metadatacenter.org/core/Template', + properties: { + 'schema:isBasedOn': { + type: 'string', + format: 'uri', + }, + captureInformation: { + 'bibo:status': 'bibo:draft', + _ui: { + order: [ + 'captureInformation', + 'placeOfCapture', + 'dateOfCapture(SingleDate)', + 'dateOfCapture', + ], + propertyLabels: { + dateOfCapture: 'Date Of Capture', + captureInformation: 'Capture Information', + 'dateOfCapture(SingleDate)': 'Date Of Capture( Single Date)', + placeOfCapture: 'Place Of Capture', + }, + }, + title: 'Capture information element schema', + required: [ + '@context', + '@id', + 'dateOfCapture', + 'placeOfCapture', + 'captureInformation', + 'dateOfCapture(SingleDate)', + ], + 'schema:name': 'Capture Information', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + bibo: 'http://purl.org/ontology/bibo/', + 'schema:description': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Capture information element schema autogenerated by the CEDAR Template Editor', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + 'pav:lastUpdatedOn': '2016-09-13T10:05:35-07:00', + 'pav:createdOn': '2016-09-13T10:05:35-07:00', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: false, + }, + '@id': 'https://repo.metadatacenter.net/template-elements/bcdb354f-413a-4c00-9d21-bc1ac82b3d4c', + 'pav:version': '0.0.1', + 'schema:description': 'BIBFRAME Capture Information Template Element', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + properties: { + dateOfCapture: { + _ui: { + temporalGranularity: 'day', + dateType: 'date-range', + inputType: 'temporal', + }, + 'schema:name': 'Date Of Capture', + title: 'Date Of Capture field schema', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Date Of Capture field schema generated by the CEDAR Template Editor 2.6.44', + 'pav:lastUpdatedOn': '2016-09-13T10:05:07-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/0ae92e10-eb1c-45ef-bdb2-483beebdc22a', + _valueConstraints: { + temporalType: 'xsd:date', + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2016-09-13T10:05:07-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + placeOfCapture: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Place Of Capture', + title: 'Place Of Capture field schema', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Place Of Capture field schema generated by the CEDAR Template Editor 2.6.44', + 'pav:lastUpdatedOn': '2016-09-13T10:05:07-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/049288ff-58e4-4d75-9a75-0c455b5e07be', + _valueConstraints: { + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2016-09-13T10:05:07-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + captureInformation: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Capture Information', + title: 'Capture information field schema', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Capture information field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:05:07-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/0cb15dd0-c04f-4bcd-b463-91bcdf575eef', + _valueConstraints: { + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2016-09-13T10:05:07-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'captureInformation', + 'placeOfCapture', + 'dateOfCapture(SingleDate)', + 'dateOfCapture', + ], + properties: { + dateOfCapture: { + enum: [ + 'https://schema.metadatacenter.net/properties/dateOfCapture', + ], + }, + captureInformation: { + enum: [ + 'https://schema.metadatacenter.net/properties/captureInformation', + ], + }, + 'dateOfCapture(SingleDate)': { + enum: [ + 'https://schema.metadatacenter.net/properties/dateOfCapture(SingleDate)', + ], + }, + placeOfCapture: { + enum: [ + 'https://schema.metadatacenter.net/properties/placeOfCapture', + ], + }, + }, + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'dateOfCapture(SingleDate)': { + _ui: { + temporalGranularity: 'day', + dateType: 'single-date', + inputType: 'temporal', + }, + 'schema:name': 'Date Of Capture( Single Date)', + title: 'Date Of Capture( Single Date) field schema', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Date Of Capture( Single Date) field schema generated by the CEDAR Template Editor 2.6.44', + 'pav:lastUpdatedOn': '2016-09-13T10:05:07-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/3af46ca1-acfe-452a-b9b0-66b6beae54ad', + _valueConstraints: { + temporalType: 'xsd:date', + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2016-09-13T10:05:07-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'schema:description': { + type: 'string', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'schema:name': { + type: 'string', + minLength: 1, + }, + 'pav:createdBy': { + type: [ + 'string', + 'null', + ], + format: 'uri', + }, + 'oslc:modifiedBy': { + type: [ + 'string', + 'null', + ], + format: 'uri', + }, + 'pav:lastUpdatedOn': { + type: [ + 'string', + 'null', + ], + format: 'date-time', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'xsd', + 'rdfs', + 'pav', + 'schema', + 'oslc', + 'Title', + 'Variant Title For The Work', + 'Date Of Work', + 'Place Of Origin Of The Work', + 'Nature Of Content', + 'Coverage Of Content', + 'Content Type', + 'Media Type', + 'Carrier Type', + 'Language Of Expression', + 'Genre', + 'Contributor', + 'Copyright Date', + 'captureInformation', + 'schema:isBasedOn', + 'schema:description', + 'schema:name', + 'rdfs:label', + 'oslc:modifiedBy', + 'pav:createdBy', + 'pav:createdOn', + 'pav:lastUpdatedOn', + 'skos', + 'skos:notation', + ], + properties: { + 'rdfs:label': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:string', + ], + type: 'string', + }, + }, + }, + rdfs: { + enum: [ + 'http://www.w3.org/2000/01/rdf-schema#', + ], + type: 'string', + format: 'uri', + }, + oslc: { + enum: [ + 'http://open-services.net/ns/core#', + ], + type: 'string', + format: 'uri', + }, + captureInformation: { + enum: [ + 'https://schema.metadatacenter.net/properties/captureInformation', + ], + }, + skos: { + enum: [ + 'http://www.w3.org/2004/02/skos/core#', + ], + type: 'string', + format: 'uri', + }, + 'oslc:modifiedBy': { + type: 'object', + properties: { + '@type': { + enum: [ + '@id', + ], + type: 'string', + }, + }, + }, + 'schema:description': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:string', + ], + type: 'string', + }, + }, + }, + 'pav:createdBy': { + type: 'object', + properties: { + '@type': { + enum: [ + '@id', + ], + type: 'string', + }, + }, + }, + 'schema:isBasedOn': { + type: 'object', + properties: { + '@type': { + enum: [ + '@id', + ], + type: 'string', + }, + }, + }, + 'schema:name': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:string', + ], + type: 'string', + }, + }, + }, + schema: { + enum: [ + 'http://schema.org/', + ], + type: 'string', + format: 'uri', + }, + pav: { + enum: [ + 'http://purl.org/pav/', + ], + type: 'string', + format: 'uri', + }, + xsd: { + enum: [ + 'http://www.w3.org/2001/XMLSchema#', + ], + type: 'string', + format: 'uri', + }, + 'pav:lastUpdatedOn': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:dateTime', + ], + type: 'string', + }, + }, + }, + 'pav:createdOn': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:dateTime', + ], + type: 'string', + }, + }, + }, + 'skos:notation': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:string', + ], + type: 'string', + }, + }, + }, + 'pav:derivedFrom': { + type: 'object', + properties: { + '@type': { + enum: [ + '@id', + ], + type: 'string', + }, + }, + }, + Title: { + enum: [ + 'https://schema.metadatacenter.net/properties/title', + ], + }, + 'Place Of Origin Of The Work': { + enum: [ + 'https://schema.metadatacenter.net/properties/placeOfOriginOfTheWork', + ], + }, + 'Nature Of Content': { + enum: [ + 'https://schema.metadatacenter.net/properties/natureOfContent', + ], + }, + Contributor: { + enum: [ + 'https://schema.metadatacenter.net/properties/contributor', + ], + }, + 'Copyright Date': { + enum: [ + 'https://schema.metadatacenter.net/properties/copyrightDate', + ], + }, + 'Language Of Expression': { + enum: [ + 'https://schema.metadatacenter.net/properties/languageOfExpression', + ], + }, + 'Content Type': { + enum: [ + 'https://schema.metadatacenter.net/properties/contentType', + ], + }, + 'Media Type': { + enum: [ + 'https://schema.metadatacenter.net/properties/mediaType', + ], + }, + 'Carrier Type': { + enum: [ + 'https://schema.metadatacenter.net/properties/carrierType', + ], + }, + 'Variant Title For The Work': { + enum: [ + 'https://schema.metadatacenter.net/properties/variantTitleForTheWork', + ], + }, + 'Date Of Work': { + enum: [ + 'https://schema.metadatacenter.net/properties/dateOfWork', + ], + }, + Genre: { + enum: [ + 'https://schema.metadatacenter.net/properties/genre', + ], + }, + 'Coverage Of Content': { + enum: [ + 'https://schema.metadatacenter.net/properties/coverageOfContent', + ], + }, + }, + }, + '@id': { + type: [ + 'string', + 'null', + ], + format: 'uri', + }, + 'pav:derivedFrom': { + type: 'string', + format: 'uri', + }, + 'pav:createdOn': { + type: [ + 'string', + 'null', + ], + format: 'date-time', + }, + Title: { + minItems: 1, + type: 'array', + items: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Title', + title: 'Title field schema', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Title field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:05:35-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/1c696f77-7116-4284-a429-bbc67b32531d', + _valueConstraints: { + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2016-09-13T10:05:35-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'Place Of Origin Of The Work': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Place Of Origin Of The Work', + title: 'Place Of Origin Of The Work field schema', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Place Of Origin Of The Work field schema generated by the CEDAR Template Editor 2.6.44', + 'pav:lastUpdatedOn': '2016-09-13T10:05:35-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/c57ee2e9-42b1-4227-9733-947483ed6fdc', + _valueConstraints: { + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2016-09-13T10:05:35-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Nature Of Content': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Nature Of Content', + title: 'Nature Of Content field schema', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Nature Of Content field schema generated by the CEDAR Template Editor 2.6.44', + 'pav:lastUpdatedOn': '2016-09-13T10:05:35-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/67c13404-ef6e-4d43-b027-f064fe1e98d6', + _valueConstraints: { + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2016-09-13T10:05:35-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + Contributor: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Contributor', + title: 'Contributor field schema', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Contributor field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:05:35-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/4c190d27-a94d-4db6-8639-e56c3506a437', + _valueConstraints: { + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2016-09-13T10:05:35-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Copyright Date': { + _ui: { + temporalGranularity: 'day', + dateType: 'single-date', + inputType: 'temporal', + }, + 'schema:name': 'Copyright Date', + title: 'Copyright Date field schema', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Copyright Date field schema generated by the CEDAR Template Editor 2.6.44', + 'pav:lastUpdatedOn': '2016-09-13T10:05:35-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/de1dffb5-8918-4bfa-ba08-4cd8a5bcd4a8', + _valueConstraints: { + temporalType: 'xsd:date', + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2016-09-13T10:05:35-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Language Of Expression': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Language Of Expression', + title: 'Language Of Expression field schema', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Language Of Expression field schema generated by the CEDAR Template Editor 2.6.44', + 'pav:lastUpdatedOn': '2016-09-13T10:05:35-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/c7e518b1-6524-43fc-80cd-778e19620a36', + _valueConstraints: { + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2016-09-13T10:05:35-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Content Type': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Content Type', + title: 'Content type field schema', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Content type field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:05:35-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/abcc37f2-e62f-45cc-be83-b58350d66a62', + _valueConstraints: { + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2016-09-13T10:05:35-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Media Type': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Media Type', + title: 'Media type field schema', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Media type field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:05:35-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/6fd2e261-219b-4a9b-b0b6-817c1be1be18', + _valueConstraints: { + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2016-09-13T10:05:35-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Carrier Type': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Carrier Type', + title: 'Carrier type field schema', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Carrier type field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:05:35-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/3cf2192f-279e-403c-a3f0-405b4231c370', + _valueConstraints: { + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2016-09-13T10:05:35-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Variant Title For The Work': { + minItems: 1, + type: 'array', + items: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Variant Title For The Work', + title: 'Variant Title For The Work field schema', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Variant Title For The Work field schema generated by the CEDAR Template Editor 2.6.44', + 'pav:lastUpdatedOn': '2016-09-13T10:05:35-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/736f4871-d824-4057-9e38-f4650a9cb56b', + _valueConstraints: { + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2016-09-13T10:05:35-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'Date Of Work': { + _ui: { + temporalGranularity: 'day', + dateType: 'single-date', + inputType: 'temporal', + }, + 'schema:name': 'Date Of Work', + title: 'Date Of Work field schema', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Date Of Work field schema generated by the CEDAR Template Editor 2.6.44', + 'pav:lastUpdatedOn': '2016-09-13T10:05:35-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/3ab9df03-5a55-4484-bc10-b5a4a3acca31', + _valueConstraints: { + temporalType: 'xsd:date', + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2016-09-13T10:05:35-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + Genre: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Genre', + title: 'Genre field schema', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Genre field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:05:35-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/f8476717-a1b4-4c1a-9666-531539f95419', + _valueConstraints: { + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2016-09-13T10:05:35-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Coverage Of Content': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Coverage Of Content', + title: 'Coverage Of Content field schema', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + description: 'Coverage Of Content field schema generated by the CEDAR Template Editor 2.6.44', + 'pav:lastUpdatedOn': '2016-09-13T10:05:35-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/6214d1f3-9667-492c-9d87-8ce5e7b65960', + _valueConstraints: { + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2016-09-13T10:05:35-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', +}); diff --git a/mirage/fixtures/cedar-templates/cedar-template.biosample.ts b/mirage/fixtures/cedar-templates/cedar-template.biosample.ts new file mode 100644 index 00000000000..e2599e92cb4 --- /dev/null +++ b/mirage/fixtures/cedar-templates/cedar-template.biosample.ts @@ -0,0 +1,4514 @@ +/* eslint-disable max-len */ +export const biosampleTemplate = Object({ + _ui: { + order: [ + 'nCBISubmissionDescription', + 'bioSample', + ], + pages: [], + propertyLabels: { + nCBISubmissionDescription: 'N Cbi Submission Description', + bioSample: 'Bio Sample', + }, + }, + 'schema:name': 'BioSample Submission', + properties: { + 'schema:isBasedOn': { + type: 'string', + format: 'uri', + }, + 'schema:name': { + type: 'string', + minLength: 1, + }, + 'oslc:modifiedBy': { + type: [ + 'string', + 'null', + ], + format: 'uri', + }, + 'pav:createdBy': { + type: [ + 'string', + 'null', + ], + format: 'uri', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'xsd', + 'rdfs', + 'pav', + 'schema', + 'oslc', + 'nCBISubmissionDescription', + 'bioSample', + 'schema:isBasedOn', + 'schema:description', + 'schema:name', + 'rdfs:label', + 'oslc:modifiedBy', + 'pav:createdBy', + 'pav:createdOn', + 'pav:lastUpdatedOn', + 'skos', + 'skos:notation', + ], + properties: { + 'schema:isBasedOn': { + type: 'object', + properties: { + '@type': { + enum: [ + '@id', + ], + type: 'string', + }, + }, + }, + 'schema:name': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:string', + ], + type: 'string', + }, + }, + }, + 'oslc:modifiedBy': { + type: 'object', + properties: { + '@type': { + enum: [ + '@id', + ], + type: 'string', + }, + }, + }, + schema: { + enum: [ + 'http://schema.org/', + ], + type: 'string', + format: 'uri', + }, + 'pav:createdBy': { + type: 'object', + properties: { + '@type': { + enum: [ + '@id', + ], + type: 'string', + }, + }, + }, + xsd: { + enum: [ + 'http://www.w3.org/2001/XMLSchema#', + ], + type: 'string', + format: 'uri', + }, + rdfs: { + enum: [ + 'http://www.w3.org/2000/01/rdf-schema#', + ], + type: 'string', + format: 'uri', + }, + nCBISubmissionDescription: { + enum: [ + 'https://schema.metadatacenter.net/properties/nCBISubmissionDescription', + ], + }, + 'rdfs:label': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:string', + ], + type: 'string', + }, + }, + }, + 'pav:derivedFrom': { + type: 'object', + properties: { + '@type': { + enum: [ + '@id', + ], + type: 'string', + }, + }, + }, + skos: { + enum: [ + 'http://www.w3.org/2004/02/skos/core#', + ], + type: 'string', + format: 'uri', + }, + 'pav:lastUpdatedOn': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:dateTime', + ], + type: 'string', + }, + }, + }, + oslc: { + enum: [ + 'http://open-services.net/ns/core#', + ], + type: 'string', + format: 'uri', + }, + bioSample: { + enum: [ + 'https://schema.metadatacenter.net/properties/bioSample', + ], + }, + 'skos:notation': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:string', + ], + type: 'string', + }, + }, + }, + pav: { + enum: [ + 'http://purl.org/pav/', + ], + type: 'string', + format: 'uri', + }, + 'schema:description': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:string', + ], + type: 'string', + }, + }, + }, + 'pav:createdOn': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:dateTime', + ], + type: 'string', + }, + }, + }, + }, + }, + nCBISubmissionDescription: { + 'bibo:status': 'bibo:draft', + 'schema:name': 'NCBI Submission Description', + properties: { + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'comment', + 'releaseDate', + 'nCBIOrganization', + ], + properties: { + nCBIOrganization: { + enum: [ + 'https://schema.metadatacenter.net/properties/nCBIOrganization', + ], + }, + comment: { + enum: [ + 'https://schema.metadatacenter.net/properties/comment', + ], + }, + releaseDate: { + enum: [ + 'https://schema.metadatacenter.net/properties/releaseDate', + ], + }, + }, + }, + '@id': { + type: 'string', + format: 'uri', + }, + comment: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Comment', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/3d3ccff6-d9bd-45e9-a2ad-f7b2926cad60', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Comment field schema', + description: 'Comment field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:23:47-07:00', + 'pav:createdOn': '2016-09-13T10:23:47-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + releaseDate: { + _ui: { + temporalGranularity: 'day', + dateType: 'single-date', + inputType: 'temporal', + }, + 'schema:name': 'Release Date', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/68a39756-8e9b-404a-aad2-c13e3ccd54d5', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Release date field schema', + description: 'Release date field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:23:47-07:00', + 'pav:createdOn': '2016-09-13T10:23:47-07:00', + _valueConstraints: { + temporalType: 'xsd:date', + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + nCBIOrganization: { + 'bibo:status': 'bibo:draft', + 'schema:name': 'NCBI Organization', + properties: { + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'institutionName', + 'nCBIContact', + ], + properties: { + nCBIContact: { + enum: [ + 'https://schema.metadatacenter.net/properties/nCBIContact', + ], + }, + institutionName: { + enum: [ + 'https://schema.metadatacenter.net/properties/institutionName', + ], + }, + }, + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + nCBIContact: { + _ui: { + order: [ + 'untitled', + 'nCBIName', + ], + propertyLabels: {}, + }, + 'schema:name': 'NCBI Contact', + properties: { + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'nCBIName', + 'untitled', + ], + properties: { + nCBIName: { + enum: [ + 'https://schema.metadatacenter.net/properties/nCBIName', + ], + }, + untitled: { + enum: [ + 'https://schema.metadatacenter.net/properties/untitled', + ], + }, + }, + }, + nCBIName: { + _ui: { + order: [ + 'firstName', + 'middleInitial', + 'lastName', + ], + propertyLabels: {}, + }, + 'schema:name': 'NCBI Name', + properties: { + lastName: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Last Name', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/f1e9235e-52ba-487e-b139-f96c95c693f3', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Last name field schema', + description: 'Last name field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:18:33-07:00', + 'pav:createdOn': '2016-09-13T10:18:33-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'lastName', + 'middleInitial', + 'firstName', + ], + properties: { + lastName: { + enum: [ + 'https://schema.metadatacenter.net/properties/lastName', + ], + }, + firstName: { + enum: [ + 'https://schema.metadatacenter.net/properties/firstName', + ], + }, + middleInitial: { + enum: [ + 'https://schema.metadatacenter.net/properties/middleInitial', + ], + }, + }, + }, + middleInitial: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Middle Initial', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/27cc68dd-3769-4e34-8200-1dc8b6f07682', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Middle initial field schema', + description: 'Middle initial field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:18:33-07:00', + 'pav:createdOn': '2016-09-13T10:18:33-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + firstName: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'First Name', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/59722701-8180-4a1b-8bf0-0b9a6febbe3c', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'First name field schema', + description: 'First name field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:18:33-07:00', + 'pav:createdOn': '2016-09-13T10:18:33-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@context', + '@id', + 'firstName', + 'middleInitial', + 'lastName', + ], + '@id': 'https://repo.metadatacenter.net/template-elements/574df466-392b-4e3a-91a0-f615e0d960b9', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + pav: 'http://purl.org/pav/', + oslc: 'http://open-services.net/ns/core#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Ncbi name element schema', + description: 'Ncbi name element schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:21:33-07:00', + 'pav:createdOn': '2016-09-13T10:21:33-07:00', + 'bibo:status': 'bibo:draft', + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'NCBI Name', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + untitled: { + _ui: { + inputType: 'email', + }, + 'schema:name': 'Email', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/27b3fbf9-3ac2-4b4a-9424-fdcfc082bf0f', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Email field schema', + description: 'Email field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:21:33-07:00', + 'pav:createdOn': '2016-09-13T10:21:33-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@context', + '@id', + 'untitled', + 'nCBIName', + ], + '@id': 'https://repo.metadatacenter.net/template-elements/564980a0-a8d0-4752-a948-2a2b75db8fcc', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + pav: 'http://purl.org/pav/', + oslc: 'http://open-services.net/ns/core#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Ncbi contact element schema', + description: 'Ncbi contact element schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:23:02-07:00', + 'pav:createdOn': '2016-09-13T10:23:02-07:00', + 'bibo:status': 'bibo:draft', + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'NCBI Contact', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + institutionName: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Institution Name', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/bddef332-caab-4662-aef8-f98be77a1206', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Institution name field schema', + description: 'Institution name field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:23:02-07:00', + 'pav:createdOn': '2016-09-13T10:23:02-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@context', + '@id', + 'institutionName', + 'nCBIContact', + ], + '@id': 'https://repo.metadatacenter.net/template-elements/7dfebdf0-abbf-4fa0-b7ce-2d112bd81ca9', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + pav: 'http://purl.org/pav/', + oslc: 'http://open-services.net/ns/core#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Ncbi organization element schema', + description: 'Ncbi organization element schema autogenerated by the CEDAR Template Editor', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + 'pav:lastUpdatedOn': '2016-09-13T10:23:47-07:00', + 'pav:createdOn': '2016-09-13T10:23:47-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'NCBI Organization', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + _ui: { + order: [ + 'institutionName', + 'nCBIContact', + ], + propertyLabels: { + nCBIContact: 'N Cbi Contact', + institutionName: 'Institution Name', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@context', + '@id', + 'comment', + 'releaseDate', + 'nCBIOrganization', + ], + '@id': 'https://repo.metadatacenter.net/template-elements/cbc6fed1-98f4-490b-b1a3-8826989c1352', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + pav: 'http://purl.org/pav/', + oslc: 'http://open-services.net/ns/core#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Ncbi submission description element schema', + description: 'Ncbi submission description element schema autogenerated by the CEDAR Template Editor', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + 'pav:lastUpdatedOn': '2016-09-13T10:45:24-07:00', + 'pav:createdOn': '2016-09-13T10:45:24-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'NCBI Submission Description', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + _ui: { + order: [ + 'comment', + 'releaseDate', + 'nCBIOrganization', + ], + propertyLabels: { + nCBIOrganization: 'N Cbi Organization', + comment: 'Comment', + releaseDate: 'Release Date', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'pav:derivedFrom': { + type: 'string', + format: 'uri', + }, + bioSample: { + 'bibo:status': 'bibo:draft', + 'schema:name': 'BioSample', + properties: { + bioSampleAttribute: { + minItems: 1, + type: 'array', + items: { + _ui: { + order: [ + 'attributeName', + 'attributeValue', + ], + propertyLabels: {}, + }, + 'schema:name': 'BioSample Attribute', + properties: { + attributeValue: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Attribute Value', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/666bbf5a-94ac-4acc-ae5d-c35532a37745', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Attribute value field schema', + description: 'Attribute value field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:44:33-07:00', + 'pav:createdOn': '2016-09-13T10:44:33-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'attributeName', + 'attributeValue', + ], + properties: { + attributeValue: { + enum: [ + 'https://schema.metadatacenter.net/properties/attributeValue', + ], + }, + attributeName: { + enum: [ + 'https://schema.metadatacenter.net/properties/attributeName', + ], + }, + }, + }, + attributeName: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Attribute Name', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/f76e69f3-47a8-4b17-84c2-d935c049d751', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Attribute name field schema', + description: 'Attribute name field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:44:33-07:00', + 'pav:createdOn': '2016-09-13T10:44:33-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + }, + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@context', + '@id', + 'attributeValue', + 'attributeName', + ], + '@id': 'https://repo.metadatacenter.net/template-elements/90a2675f-0567-4537-9fdb-e6a8c7d9f5a2', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + pav: 'http://purl.org/pav/', + oslc: 'http://open-services.net/ns/core#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'BioSample Attribute field schema', + description: 'BioSample Attribute field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:44:58-07:00', + 'pav:createdOn': '2016-09-13T10:44:58-07:00', + 'bibo:status': 'bibo:draft', + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'BioSample Attribute', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + bioProjectID: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Bio Project Id', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/874e436a-f188-47e8-91b2-4464bf21c1ce', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Bio Project Id field schema', + description: 'Bio Project Id field schema generated by the CEDAR Template Editor 2.6.44', + 'pav:lastUpdatedOn': '2016-09-13T10:44:58-07:00', + 'pav:createdOn': '2016-09-13T10:44:58-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + nCBIOrganism: { + 'bibo:status': 'bibo:draft', + 'schema:name': 'NCBI Organism', + properties: { + label: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Label', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/8f941388-0303-4de3-9b8a-b97a00652381', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Label field schema', + description: 'Label field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:34:29-07:00', + 'pav:createdOn': '2016-09-13T10:34:29-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + organismName: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Organism Name', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/edd6de99-db7f-4a23-aa5d-798b57f8a563', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Organism name field schema', + description: 'Organism name field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:34:29-07:00', + 'pav:createdOn': '2016-09-13T10:34:29-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + breed: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Breed', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/f047e043-8b42-4abd-ae71-29e8a9b752b2', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Breed field schema', + description: 'Breed field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:34:29-07:00', + 'pav:createdOn': '2016-09-13T10:34:29-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + isolateName: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Isolate Name', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/7fbab272-f7d9-4d82-b9cd-93c619c0a331', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Isolate name field schema', + description: 'Isolate name field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:34:29-07:00', + 'pav:createdOn': '2016-09-13T10:34:29-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'organismName', + 'label', + 'strain', + 'isolateName', + 'breed', + 'cultivar', + ], + properties: { + organismName: { + enum: [ + 'https://schema.metadatacenter.net/properties/organismName', + ], + }, + label: { + enum: [ + 'https://schema.metadatacenter.net/properties/label', + ], + }, + breed: { + enum: [ + 'https://schema.metadatacenter.net/properties/breed', + ], + }, + isolateName: { + enum: [ + 'https://schema.metadatacenter.net/properties/isolateName', + ], + }, + strain: { + enum: [ + 'https://schema.metadatacenter.net/properties/strain', + ], + }, + cultivar: { + enum: [ + 'https://schema.metadatacenter.net/properties/cultivar', + ], + }, + }, + }, + strain: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Strain', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/4f3e278c-4b18-4783-923e-016bceba7b30', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Strain field schema', + description: 'Strain field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:34:29-07:00', + 'pav:createdOn': '2016-09-13T10:34:29-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + cultivar: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Cultivar', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/9adad477-4cda-4e0f-a542-e56cabede9b0', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Cultivar field schema', + description: 'Cultivar field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:34:29-07:00', + 'pav:createdOn': '2016-09-13T10:34:29-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + }, + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@context', + '@id', + 'organismName', + 'breed', + 'label', + 'strain', + 'cultivar', + 'isolateName', + ], + '@id': 'https://repo.metadatacenter.net/template-elements/97748dac-ae1d-4bdd-a290-22991ca5e6cd', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + pav: 'http://purl.org/pav/', + oslc: 'http://open-services.net/ns/core#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Ncbi organism element schema', + description: 'Ncbi organism element schema autogenerated by the CEDAR Template Editor', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + 'pav:lastUpdatedOn': '2016-09-13T10:44:58-07:00', + 'pav:createdOn': '2016-09-13T10:44:58-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'NCBI Organism', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + _ui: { + order: [ + 'organismName', + 'label', + 'strain', + 'isolateName', + 'breed', + 'cultivar', + ], + propertyLabels: { + organismName: 'Organism Name', + label: 'Label', + breed: 'Breed', + isolateName: 'Isolate Name', + strain: 'Strain', + cultivar: 'Cultivar', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + bioSampleSampleID: { + 'bibo:status': 'bibo:draft', + 'schema:name': 'BioSample Sample ID', + properties: { + label: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Label', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/79de0cc9-1000-4719-9190-63572564752e', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Label field schema', + description: 'Label field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:30:55-07:00', + 'pav:createdOn': '2016-09-13T10:30:55-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + display: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Display', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/1fbd7c3a-fd50-498f-aa92-f6c1a65a05ca', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Display field schema', + description: 'Display field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:30:55-07:00', + 'pav:createdOn': '2016-09-13T10:30:55-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'label', + 'display', + 'nCBISPUID', + ], + properties: { + label: { + enum: [ + 'https://schema.metadatacenter.net/properties/label', + ], + }, + nCBISPUID: { + enum: [ + 'https://schema.metadatacenter.net/properties/nCBISPUID', + ], + }, + display: { + enum: [ + 'https://schema.metadatacenter.net/properties/display', + ], + }, + }, + }, + nCBISPUID: { + _ui: { + order: [ + 'submitterID', + 'namespace', + 'value', + ], + propertyLabels: {}, + }, + 'schema:name': 'NCBI SPUID', + properties: { + value: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Value', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/78a89853-95bf-4adc-811c-bf182a1bc6c9', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Value field schema', + description: 'Value field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:30:25-07:00', + 'pav:createdOn': '2016-09-13T10:30:25-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + submitterID: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Submitter ID', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/0657871c-b5ef-4f27-984b-dd10e51af275', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Submitter id field schema', + description: 'Submitter id field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:30:25-07:00', + 'pav:createdOn': '2016-09-13T10:30:25-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'submitterID', + 'value', + 'namespace', + ], + properties: { + namespace: { + enum: [ + 'https://schema.metadatacenter.net/properties/namespace', + ], + }, + value: { + enum: [ + 'https://schema.metadatacenter.net/properties/value', + ], + }, + submitterID: { + enum: [ + 'https://schema.metadatacenter.net/properties/submitterID', + ], + }, + }, + }, + namespace: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Namespace', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/fd5c09dd-be33-42cf-a767-7c74bb3249b1', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Namespace field schema', + description: 'Namespace field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:30:25-07:00', + 'pav:createdOn': '2016-09-13T10:30:25-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@context', + '@id', + 'submitterID', + 'namespace', + 'value', + ], + '@id': 'https://repo.metadatacenter.net/template-elements/71e4bb09-4ea1-455a-b37d-5a3bfe3a9ae3', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + pav: 'http://purl.org/pav/', + oslc: 'http://open-services.net/ns/core#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Ncbi spuid element schema', + description: 'Ncbi spuid element schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:30:55-07:00', + 'pav:createdOn': '2016-09-13T10:30:55-07:00', + 'bibo:status': 'bibo:draft', + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'NCBI SPUID', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + }, + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@context', + '@id', + 'display', + 'nCBISPUID', + 'label', + ], + '@id': 'https://repo.metadatacenter.net/template-elements/01efe14c-b312-4445-beb3-fe0f5ceb6889', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + pav: 'http://purl.org/pav/', + oslc: 'http://open-services.net/ns/core#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Biosample sample id element schema', + description: 'Biosample sample id element schema autogenerated by the CEDAR Template Editor', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + 'pav:lastUpdatedOn': '2016-09-13T10:44:58-07:00', + 'pav:createdOn': '2016-09-13T10:44:58-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'BioSample Sample ID', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + _ui: { + order: [ + 'label', + 'display', + 'nCBISPUID', + ], + propertyLabels: { + label: 'Label', + nCBISPUID: 'N Cbispuid', + display: 'Display', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'bioProjectID', + 'package', + 'bioSampleSampleID', + 'bioSampleDescriptor', + 'nCBIOrganism', + 'biosamplePathogenCl10Attributes', + 'bioSampleAttribute', + ], + properties: { + bioSampleAttribute: { + enum: [ + 'https://schema.metadatacenter.net/properties/bioSampleAttribute', + ], + }, + bioProjectID: { + enum: [ + 'https://schema.metadatacenter.net/properties/bioProjectID', + ], + }, + nCBIOrganism: { + enum: [ + 'https://schema.metadatacenter.net/properties/nCBIOrganism', + ], + }, + bioSampleSampleID: { + enum: [ + 'https://schema.metadatacenter.net/properties/bioSampleSampleID', + ], + }, + biosamplePathogenCl10Attributes: { + enum: [ + 'https://schema.metadatacenter.net/properties/biosamplePathogenCl10Attributes', + ], + }, + package: { + enum: [ + 'https://schema.metadatacenter.net/properties/package', + ], + }, + bioSampleDescriptor: { + enum: [ + 'https://schema.metadatacenter.net/properties/bioSampleDescriptor', + ], + }, + }, + }, + biosamplePathogenCl10Attributes: { + 'bibo:status': 'bibo:draft', + 'schema:name': 'Biosample pathogen cl 1 0 attributes', + properties: { + isolationSource: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Isolation Source', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/eaf4a4dc-ac6a-468c-9a80-4ef2fd6621ab', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Isolation source field schema', + description: 'Isolation source field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:41:10-07:00', + 'pav:createdOn': '2016-09-13T10:41:10-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + collectionDate: { + _ui: { + temporalGranularity: 'day', + dateType: 'single-date', + inputType: 'temporal', + }, + 'schema:name': 'Collection Date', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/febd57c9-536d-478e-8120-7708f0eb216d', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Collection date field schema', + description: 'Collection date field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:41:10-07:00', + 'pav:createdOn': '2016-09-13T10:41:10-07:00', + _valueConstraints: { + temporalType: 'xsd:date', + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + host: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Host', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/3576df01-53a6-4cc0-accc-dd18d36b82f1', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Host field schema', + description: 'Host field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:41:10-07:00', + 'pav:createdOn': '2016-09-13T10:41:10-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'strain', + 'collectionDate', + 'collectedBy', + 'gEOLocationName', + 'isolationSource', + 'latitude/Longitude', + 'host', + 'hostDisease', + ], + properties: { + isolationSource: { + enum: [ + 'https://schema.metadatacenter.net/properties/isolationSource', + ], + }, + 'latitude/Longitude': { + enum: [ + 'https://schema.metadatacenter.net/properties/latitude/Longitude', + ], + }, + collectionDate: { + enum: [ + 'https://schema.metadatacenter.net/properties/collectionDate', + ], + }, + strain: { + enum: [ + 'https://schema.metadatacenter.net/properties/strain', + ], + }, + hostDisease: { + enum: [ + 'https://schema.metadatacenter.net/properties/hostDisease', + ], + }, + gEOLocationName: { + enum: [ + 'https://schema.metadatacenter.net/properties/gEOLocationName', + ], + }, + host: { + enum: [ + 'https://schema.metadatacenter.net/properties/host', + ], + }, + collectedBy: { + enum: [ + 'https://schema.metadatacenter.net/properties/collectedBy', + ], + }, + }, + }, + hostDisease: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Host Disease', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/be5e247a-11d4-474e-9a1a-d71a52fd0f2a', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Host disease field schema', + description: 'Host disease field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:41:10-07:00', + 'pav:createdOn': '2016-09-13T10:41:10-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + collectedBy: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Collected By', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/0ca5d330-7b44-499f-827f-13e87694f206', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Collected by field schema', + description: 'Collected by field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:41:10-07:00', + 'pav:createdOn': '2016-09-13T10:41:10-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + gEOLocationName: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'G Eo Location Name', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/87be6f98-72c1-4fa0-bf01-78a6a4f9cdcf', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'G Eo Location Name field schema', + description: 'G Eo Location Name field schema generated by the CEDAR Template Editor 2.6.44', + 'pav:lastUpdatedOn': '2016-09-13T10:41:10-07:00', + 'pav:createdOn': '2016-09-13T10:41:10-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + strain: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Strain', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/2e036cf5-a725-4cd2-8c57-89b82cf2f5f1', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Strain field schema', + description: 'Strain field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:41:10-07:00', + 'pav:createdOn': '2016-09-13T10:41:10-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'latitude/Longitude': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Latitude_ Longitude', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/84455ee3-da9c-46aa-a3ca-f0dbf1892a56', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Latitude_ Longitude field schema', + description: 'Latitude_ Longitude field schema generated by the CEDAR Template Editor 2.6.44', + 'pav:lastUpdatedOn': '2016-09-13T10:41:10-0700', + 'pav:createdOn': '2016-09-13T10:41:10-0700', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.5.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@context', + '@id', + 'latitude/Longitude', + 'collectedBy', + 'strain', + 'isolationSource', + 'hostDisease', + 'gEOLocationName', + 'host', + 'collectionDate', + ], + '@id': 'https://repo.metadatacenter.net/template-elements/54ef63f4-a734-44af-bece-23f8b6c99428', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + pav: 'http://purl.org/pav/', + oslc: 'http://open-services.net/ns/core#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Biosample pathogen cl 1 0 attributes element schema', + description: 'Biosample pathogen cl 1 0 attributes element schema autogenerated by the CEDAR Template Editor', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + 'pav:lastUpdatedOn': '2016-09-13T10:44:58-07:00', + 'pav:createdOn': '2016-09-13T10:44:58-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'Biosample pathogen cl 1 0 attributes', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + _ui: { + order: [ + 'strain', + 'collectionDate', + 'collectedBy', + 'gEOLocationName', + 'isolationSource', + 'latitude/Longitude', + 'host', + 'hostDisease', + ], + propertyLabels: { + isolationSource: 'Isolation Source', + 'latitude/Longitude': 'Latitude_ Longitude', + collectionDate: 'Collection Date', + strain: 'Strain', + hostDisease: 'Host Disease', + gEOLocationName: 'G Eo Location Name', + host: 'Host', + collectedBy: 'Collected By', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + package: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Package', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/56f8b9b3-3805-448f-bfe4-b7832f168c39', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Package field schema', + description: 'Package field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:44:58-07:00', + 'pav:createdOn': '2016-09-13T10:44:58-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + bioSampleDescriptor: { + 'bibo:status': 'bibo:draft', + 'schema:name': 'BioSample Descriptor', + properties: { + externalLink: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'External Link', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/47d7a72d-e578-4106-8e9b-40a5a6f3ef84', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'External link field schema', + description: 'External link field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:32:26-07:00', + 'pav:createdOn': '2016-09-13T10:32:26-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'title', + 'description', + 'externalLink', + ], + properties: { + title: { + enum: [ + 'https://schema.metadatacenter.net/properties/title', + ], + }, + description: { + enum: [ + 'https://schema.metadatacenter.net/properties/description', + ], + }, + externalLink: { + enum: [ + 'https://schema.metadatacenter.net/properties/externalLink', + ], + }, + }, + }, + title: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Title', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/34f6c221-667d-4255-93a8-dcabe46939d8', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Title field schema', + description: 'Title field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:32:26-07:00', + 'pav:createdOn': '2016-09-13T10:32:26-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + description: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Description', + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.net/template-fields/fb9e046f-e9ac-4e54-bc78-2603c9338152', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Description field schema', + description: 'Description field schema autogenerated by the CEDAR Template Editor', + 'pav:lastUpdatedOn': '2016-09-13T10:32:26-07:00', + 'pav:createdOn': '2016-09-13T10:32:26-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': '', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@context', + '@id', + 'description', + 'title', + 'externalLink', + ], + '@id': 'https://repo.metadatacenter.net/template-elements/59157574-4b8a-4f45-8ee1-9081c3ab24c8', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + pav: 'http://purl.org/pav/', + oslc: 'http://open-services.net/ns/core#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Biosample descriptor element schema', + description: 'Biosample descriptor element schema autogenerated by the CEDAR Template Editor', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + 'pav:lastUpdatedOn': '2016-09-13T10:44:58-07:00', + 'pav:createdOn': '2016-09-13T10:44:58-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'BioSample Descriptor', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + _ui: { + order: [ + 'title', + 'description', + 'externalLink', + ], + propertyLabels: { + title: 'Title', + description: 'Description', + externalLink: 'External Link', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@context', + '@id', + 'package', + 'biosamplePathogenCl10Attributes', + 'bioSampleAttribute', + 'bioSampleSampleID', + 'bioProjectID', + 'bioSampleDescriptor', + 'nCBIOrganism', + ], + '@id': 'https://repo.metadatacenter.net/template-elements/3e8e812c-ba32-4ef7-8820-cffe8206fb2c', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + pav: 'http://purl.org/pav/', + oslc: 'http://open-services.net/ns/core#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Biosample element schema', + description: 'Biosample element schema autogenerated by the CEDAR Template Editor', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + 'pav:lastUpdatedOn': '2016-09-13T10:45:24-07:00', + 'pav:createdOn': '2016-09-13T10:45:24-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'Description', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + _ui: { + order: [ + 'bioProjectID', + 'package', + 'bioSampleSampleID', + 'bioSampleDescriptor', + 'nCBIOrganism', + 'biosamplePathogenCl10Attributes', + 'bioSampleAttribute', + ], + propertyLabels: { + bioSampleAttribute: 'Bio Sample Attribute', + bioProjectID: 'Bio Project Id', + nCBIOrganism: 'N Cbi Organism', + bioSampleSampleID: 'Bio Sample Sample Id', + biosamplePathogenCl10Attributes: 'Biosample Pathogen Cl10 Attributes', + package: 'Package', + bioSampleDescriptor: 'Bio Sample Descriptor', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'pav:lastUpdatedOn': { + type: [ + 'string', + 'null', + ], + format: 'date-time', + }, + 'pav:createdOn': { + type: [ + 'string', + 'null', + ], + format: 'date-time', + }, + 'schema:description': { + type: 'string', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@id': { + type: [ + 'string', + 'null', + ], + format: 'uri', + }, + }, + 'oslc:modifiedBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + required: [ + '@context', + '@id', + 'schema:isBasedOn', + 'schema:name', + 'schema:description', + 'pav:createdOn', + 'pav:createdBy', + 'pav:lastUpdatedOn', + 'oslc:modifiedBy', + 'nCBISubmissionDescription', + 'bioSample', + ], + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + pav: 'http://purl.org/pav/', + oslc: 'http://open-services.net/ns/core#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + '@id': 'https://repo.metadatacenter.net/templates/58098c2d-dea9-4ec6-8f5d-d85d5f1b4f6f', + type: 'object', + title: 'Biosample submission template schema', + description: 'Biosample submission template schema generated by the CEDAR Template Editor 2.6.44', + 'pav:lastUpdatedOn': '2016-09-13T10:45:24-07:00', + 'pav:createdOn': '2016-09-13T10:11:03-07:00', + additionalProperties: false, + 'bibo:status': 'bibo:draft', + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'BioSample Submission Template', + '@type': 'https://schema.metadatacenter.org/core/Template', + 'pav:createdBy': 'https://repo.metadatacenter.net/users/6d21a887-b704-49a9-922a-aa71632f3232', + $schema: 'http://json-schema.org/draft-04/schema#', +}); diff --git a/mirage/fixtures/cedar-templates/cedar-template.ffis.ts b/mirage/fixtures/cedar-templates/cedar-template.ffis.ts new file mode 100644 index 00000000000..0f6928f5908 --- /dev/null +++ b/mirage/fixtures/cedar-templates/cedar-template.ffis.ts @@ -0,0 +1,7538 @@ +/* eslint-disable max-len */ +export const ffisTemplate = Object({ + _ui: { + order: [ + 'Application Information', + 'Grant Award Information', + 'Product Information', + ], + pages: [], + propertyDescriptions: { + 'Application Information': 'Data provided with the funding application', + 'Product Information': 'Description of product or outcome from the funded research', + 'Grant Award Information': 'Information about the grant once awarded', + }, + propertyLabels: { + 'Application Information': 'Application Information', + 'Product Information': 'Product Information', + 'Grant Award Information': 'Grant Award Information', + }, + }, + 'schema:name': 'FFIS Funder Draft', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@context', + '@id', + 'schema:isBasedOn', + 'schema:name', + 'schema:description', + 'pav:createdOn', + 'pav:createdBy', + 'pav:lastUpdatedOn', + 'oslc:modifiedBy', + 'Grant Award Information', + 'Product Information', + 'Application Information', + ], + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'schema:name': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + bibo: 'http://purl.org/ontology/bibo/', + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + 'pav:createdOn': '2019-09-30T14:42:35-07:00', + type: 'object', + title: 'Ffis funder draft template schema', + description: 'Ffis funder draft template schema generated by the CEDAR Template Editor 2.6.44', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2019-11-04T17:32:03-08:00', + '@id': 'https://repo.metadatacenter.org/templates/352a29d7-3df8-4bdd-bd75-e09d16c7063d', + additionalProperties: false, + 'bibo:status': 'bibo:draft', + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'An updated version of the FAIR Funder Implementation Study metadata template', + '@type': 'https://schema.metadatacenter.org/core/Template', + properties: { + 'schema:isBasedOn': { + type: 'string', + format: 'uri', + }, + 'schema:name': { + type: 'string', + minLength: 1, + }, + 'pav:createdBy': { + type: [ + 'string', + 'null', + ], + format: 'uri', + }, + 'Product Information': { + minItems: 1, + type: 'array', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/02502d7f-7316-479f-9ef6-6fba133da555', + items: { + _ui: { + order: [ + 'Resolvable Object Identifier', + 'Object Title', + 'Object Author', + 'Object Publication Date', + 'Object Keyword', + 'Object Home Page', + 'Object Storage Location', + 'DO Primary Publication', + 'DO License', + 'DO Distribution', + 'DO Material', + 'DO Characteristic', + 'DO Funding', + ], + propertyLabels: { + 'Object Title': 'Object Title', + 'Object Publication Date': 'Object Publication Date', + 'DO License': 'DO License', + 'Resolvable Object Identifier': 'Resolvable Object Identifier', + 'DO Characteristic': 'DO Characteristic', + 'DO Material': 'DO Material', + 'DO Primary Publication': 'DO Primary Publication', + 'Object Keyword': 'Object Keyword', + 'DO Distribution': 'DO Distribution', + 'Object Author': 'Object Author', + 'DO Funding': 'DO Funding', + 'Object Home Page': 'Object Home Page', + 'Object Storage Location': 'Object Storage Location', + }, + propertyDescriptions: { + 'Object Title': 'Name or formal title of project deliverable', + 'Object Publication Date': 'Date the deliverable was (or will be) publicly released', + 'DO License': 'The legal document describing what the user may do with a digital object (or collection), possibly including redistribution, modification, derivation, reuse, and conditions for citation/acknowledgment', + 'Resolvable Object Identifier': 'Universally unique and resolvable identifier for the digital object (e.g. URI/IRI, DOI, ARK, ...)', + 'DO Characteristic': 'A feature of a digital object (or collection); an individual measurable property (either quantitative or qualitative) that has been observed', + 'DO Material': 'A physical entity involved in the generation of the digital object (or collection); typically this is a tissue', + 'DO Primary Publication': 'information about the most authoritative published document describing the digital object (or collection)', + 'Object Keyword': 'Keyword describing the deliverable. Multiple keywords may be specified, one per entry.', + 'DO Distribution': 'Distribution (location) information for the digital object (or collection)', + 'Object Author': 'Creator of the deliverable; multiple entries can be specified, one author per entry. Recommended format is "First M. Last (ORCID_ID)"', + 'DO Funding': 'Grant or other funding source that supported generation of the digital object (or collection)', + 'Object Home Page': 'Web page(s) (IRI/URI) describing the deliverable.', + 'Object Storage Location': 'If digital object, the name of the repository (including the cloud provider if appropriate) hosting the digital object. (Enter "Multiple: " if distributed across multiple hosts, followed by the host names.) If a physical object, enter "Physical: " followed by a facility and physical location.', + }, + }, + 'schema:name': 'Product Information', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@context', + '@id', + 'DO Primary Publication', + 'DO License', + 'DO Distribution', + 'DO Material', + 'DO Characteristic', + 'DO Funding', + 'Resolvable Object Identifier', + 'Object Title', + 'Object Author', + 'Object Publication Date', + 'Object Keyword', + 'Object Home Page', + 'Object Storage Location', + ], + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'schema:name': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + bibo: 'http://purl.org/ontology/bibo/', + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Product Information field schema', + description: 'Product Information field schema generated by the CEDAR Template Editor 2.4.0', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2019-11-04T17:32:03-08:00', + 'pav:createdOn': '2019-11-04T17:32:03-08:00', + '@id': 'https://repo.metadatacenter.org/template-elements/36cfc4cd-7870-430b-903c-eef5edbee834', + 'skos:prefLabel': 'Information on this Grant Product', + 'bibo:status': 'bibo:draft', + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'Description of product or outcome from the funded research', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + properties: { + '@id': { + type: 'string', + format: 'uri', + }, + 'Object Title': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Object Title', + title: 'Object Title field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Object Title field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:11-07:00', + 'pav:createdOn': '2019-09-30T14:30:11-07:00', + 'skos:prefLabel': 'Title of Deliverable', + _valueConstraints: { + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'Name or formal title of project deliverable', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/0845541e-1e64-4096-b4ed-90d9d5445516', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Object Publication Date': { + _ui: { + inputType: 'numeric', + }, + 'schema:name': 'Object Publication Date', + title: 'Object Publication Date field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Object Publication Date field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:11-07:00', + 'pav:createdOn': '2019-09-30T14:30:11-07:00', + 'skos:prefLabel': 'Publication Date', + _valueConstraints: { + numberType: 'xsd:decimal', + requiredValue: false, + }, + required: [ + '@value', + '@type', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + type: 'string', + format: 'uri', + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'Date the deliverable was (or will be) publicly released', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/777751e5-1d4f-4c41-87c1-d30f3e5a91d0', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Object Keyword': { + minItems: 1, + type: 'array', + items: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Object Keyword', + title: 'Object Keyword field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Object Keyword field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:11-07:00', + 'pav:createdOn': '2019-09-30T14:30:11-07:00', + 'skos:prefLabel': 'Descriptive Keyword', + _valueConstraints: { + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'Keyword describing the deliverable. Multiple keywords may be specified, one per entry.', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/3e43b485-b4f0-452b-b546-4305f9fa4f71', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'Resolvable Object Identifier': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Resolvable Object Identifier', + title: 'Resolvable Object Identifier field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Resolvable Object Identifier field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:11-07:00', + 'pav:createdOn': '2019-09-30T14:30:11-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/635e1131-fc64-4567-815f-00888289f764', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'Universally unique and resolvable identifier for the digital object (e.g. URI/IRI, DOI, ARK, ...)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'DO Characteristic': { + _ui: { + order: [ + 'Measured or Observed Property', + 'Description of Characteristic', + 'Summary of Acceptable Values', + ], + propertyLabels: { + 'Measured or Observed Property': 'Measured or Observed Property', + 'Summary of Acceptable Values': 'Summary of Acceptable Values', + 'Description of Characteristic': 'Description of Characteristic', + }, + }, + 'schema:name': 'DO Characteristic', + properties: { + 'Measured or Observed Property': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Measured or Observed Property', + title: 'Measured or Observed Property field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Measured or Observed Property field schema generated by the CEDAR Template Editor 1.8.2-SNAPSHOT', + 'pav:lastUpdatedOn': '2018-06-06T18:15:51-07:00', + 'pav:createdOn': '2018-06-06T18:15:51-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/8607f0b9-5554-44ab-bdd4-0b26a35c9631', + _valueConstraints: { + requiredValue: true, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'The name of the feature or characteristic measured or observed during the data acquisition process, ideally including a unique identifier from a controlled terminology', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Description of Characteristic': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Description of Characteristic', + title: 'Description of Characteristic field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Description of Characteristic field schema generated by the CEDAR Template Editor 1.8.2', + 'pav:lastUpdatedOn': '2018-06-06T18:15:51-07:00', + 'pav:createdOn': '2018-06-06T18:15:51-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/52bf6be7-8496-4898-932d-feffa1e36a76', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'A textual narrative comprised of one or more statements describing the characteristic', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'Measured or Observed Property', + 'Description of Characteristic', + 'Summary of Acceptable Values', + ], + properties: { + 'Measured or Observed Property': { + enum: [ + 'https://schema.metadatacenter.net/properties/name', + ], + }, + 'Summary of Acceptable Values': { + enum: [ + 'https://schema.metadatacenter.net/properties/values', + ], + }, + 'Description of Characteristic': { + enum: [ + 'https://schema.metadatacenter.net/properties/description', + ], + }, + }, + }, + 'Summary of Acceptable Values': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Summary of Acceptable Values', + title: 'Summary of Acceptable Values field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Summary of Acceptable Values field schema generated by the CEDAR Template Editor 1.8.2', + 'pav:lastUpdatedOn': '2018-06-06T18:15:51-07:00', + 'pav:createdOn': '2018-06-06T18:15:51-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/c19c1425-0a18-40cc-a3e6-610dbd80c764', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': "Description of the values collected for the characteristic, for example 'integer between 18 and 67', 'positive real number', or a list of possible values", + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + title: 'Do characteristic element schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'schema:name': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + bibo: 'http://purl.org/ontology/bibo/', + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Do characteristic element schema generated by the CEDAR Template Editor 1.8.2', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/89736f2b-c3ad-4a54-bb02-4a5676a89271', + 'pav:lastUpdatedOn': '2019-09-30T14:30:11-07:00', + 'pav:createdOn': '2019-09-30T14:30:11-07:00', + 'bibo:status': 'bibo:draft', + required: [ + '@context', + '@id', + 'Summary of Acceptable Values', + 'Description of Characteristic', + 'Measured or Observed Property', + ], + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'A feature of a digital object (or collection); an individual measurable property (either quantitative or qualitative) that has been observed', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + '@id': 'https://repo.metadatacenter.org/template-elements/2e476ded-7d19-42b7-a76b-04f89a2c77a6', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'DO Primary Publication', + 'DO License', + 'DO Distribution', + 'DO Material', + 'DO Characteristic', + 'DO Funding', + 'Resolvable Object Identifier', + 'Object Title', + 'Object Author', + 'Object Publication Date', + 'Object Keyword', + 'Object Home Page', + 'Object Storage Location', + ], + properties: { + 'Object Title': { + enum: [ + 'https://schema.metadatacenter.org/properties/93096c3c-02c8-4c80-bdad-665f1d9e1d36', + ], + }, + 'Object Publication Date': { + enum: [ + 'https://schema.metadatacenter.org/properties/9b964067-8d5d-4f23-943c-3070056c9594', + ], + }, + 'DO License': { + enum: [ + 'https://schema.metadatacenter.org/properties/326f9cf0-9a8b-4535-a8e9-41f97c87e0b6', + ], + }, + 'Resolvable Object Identifier': { + enum: [ + 'https://schema.metadatacenter.org/properties/b12a88f9-c0de-4656-9485-6dd47cb9ce99', + ], + }, + 'DO Characteristic': { + enum: [ + 'https://schema.metadatacenter.org/properties/9cd6445c-8f95-4004-be39-d5476f188525', + ], + }, + 'DO Material': { + enum: [ + 'https://schema.metadatacenter.org/properties/6086d4ff-0f7f-4d12-b0b7-3b6402e1e2e2', + ], + }, + 'DO Primary Publication': { + enum: [ + 'https://schema.metadatacenter.org/properties/8f1a03fc-d773-4503-b3c1-30a76c9e317d', + ], + }, + 'Object Keyword': { + enum: [ + 'https://schema.metadatacenter.org/properties/e8731a0d-1256-4832-a2c3-2728d77d49e6', + ], + }, + 'DO Distribution': { + enum: [ + 'https://schema.metadatacenter.org/properties/1fe17426-6edc-4838-94d6-a34215981e1d', + ], + }, + 'Object Author': { + enum: [ + 'https://schema.metadatacenter.org/properties/20c64a6a-bbdb-4fde-a9aa-59ffd4683efe', + ], + }, + 'DO Funding': { + enum: [ + 'https://schema.metadatacenter.org/properties/6b8084b8-7a4c-4714-8735-a98b7c9cb553', + ], + }, + 'Object Home Page': { + enum: [ + 'https://schema.metadatacenter.org/properties/4d4b812a-4d85-45bc-a01a-0f1f838084a9', + ], + }, + 'Object Storage Location': { + enum: [ + 'https://schema.metadatacenter.org/properties/a35d763d-7072-4df8-805f-86ae6a1ef10f', + ], + }, + }, + }, + 'DO Material': { + _ui: { + order: [ + 'Material Name', + 'Description of Material', + 'Disease Summary', + 'Organism', + 'Anatomical Summary', + ], + propertyLabels: { + 'Description of Material': 'Description of Material', + Organism: 'Organism', + 'Anatomical Summary': 'Anatomical Summary', + 'Disease Summary': 'Disease Summary', + 'Material Name': 'Material Name', + }, + }, + 'schema:name': 'DO Material', + properties: { + 'Description of Material': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Description of Material', + title: 'Description of Material field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Description of Material field schema generated by the CEDAR Template Editor 1.8.2', + 'pav:lastUpdatedOn': '2018-06-14T18:21:37-07:00', + 'pav:createdOn': '2018-06-14T18:21:37-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/68641df6-05e4-483b-ac78-85d4361cf736', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'A textual narrative describing the material', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + Organism: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Organism', + title: 'Organism field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Organism field schema generated by the CEDAR Template Editor 1.8.2', + 'pav:lastUpdatedOn': '2018-06-14T18:21:37-07:00', + 'pav:createdOn': '2018-06-14T18:21:37-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/6e5fb703-cf2b-4e70-b7fd-dbfa04c1d6a2', + _valueConstraints: { + valueSets: [], + multipleChoice: false, + ontologies: [ + { + numTerms: 2991, + uri: 'http://data.bioontology.org/ontologies/NCIT-ORG', + name: 'NCIT Organism Module', + acronym: 'NCIT-ORG', + }, + ], + branches: [], + classes: [], + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + 'schema:description': 'Taxonomic source of the material used in the study or referred to in the digital object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + properties: { + '@type': { + oneOf: [ + { + enum: [ + 'http://data.bioontology.org/ontologies/NCIT/classes/http%3A%2F%2Fncicb.nci.nih.gov%2Fxml%2Fowl%2FEVS%2FThesaurus.owl%23C14250', + ], + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + enum: [ + 'http://data.bioontology.org/ontologies/NCIT/classes/http%3A%2F%2Fncicb.nci.nih.gov%2Fxml%2Fowl%2FEVS%2FThesaurus.owl%23C14250', + ], + type: 'string', + format: 'uri', + }, + }, + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + 'Material Name': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Material Name', + title: 'Material Name field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Material Name field schema generated by the CEDAR Template Editor 1.8.2-SNAPSHOT', + 'pav:lastUpdatedOn': '2018-06-14T18:21:37-07:00', + 'pav:createdOn': '2018-06-14T18:21:37-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/38a6be22-d19d-4aea-8364-966b5a5d87eb', + _valueConstraints: { + requiredValue: true, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'The physical entity used in generating the digital object (or collection)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'Material Name', + 'Description of Material', + 'Disease Summary', + 'Organism', + 'Anatomical Summary', + ], + properties: { + 'Description of Material': { + enum: [ + 'https://schema.metadatacenter.net/properties/description', + ], + }, + Organism: { + enum: [ + 'https://schema.metadatacenter.net/properties/taxonomy', + ], + }, + 'Anatomical Summary': { + enum: [ + 'https://schema.metadatacenter.net/properties/characteristics', + ], + }, + 'Disease Summary': { + enum: [ + 'https://schema.metadatacenter.net/properties/bearerOfDisease', + ], + }, + 'Material Name': { + enum: [ + 'https://schema.metadatacenter.net/properties/name', + ], + }, + }, + }, + 'Disease Summary': { + minItems: 1, + type: 'array', + items: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Disease Summary', + title: 'Disease Summary field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Disease Summary field schema generated by the CEDAR Template Editor 1.8.2', + 'pav:lastUpdatedOn': '2018-06-14T18:21:37-07:00', + 'pav:createdOn': '2018-06-14T18:21:37-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/e1183707-cbbc-44ee-89f3-5344c7d8dc3f', + _valueConstraints: { + valueSets: [], + multipleChoice: false, + ontologies: [], + branches: [ + { + uri: 'http://purl.obolibrary.org/obo/DOID_4', + source: 'undefined (DOID)', + name: 'disease', + acronym: 'DOID', + maxDepth: 0, + }, + ], + classes: [], + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + 'schema:description': 'The pathology affecting the material used in the study or referred to in the digital object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'Anatomical Summary': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Anatomical Summary', + title: 'Anatomical Summary field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Anatomical Summary field schema generated by the CEDAR Template Editor 1.8.2-SNAPSHOT', + 'pav:lastUpdatedOn': '2018-06-14T18:21:37-07:00', + 'pav:createdOn': '2018-06-14T18:21:37-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/fdb4632a-caf3-4de6-97a8-a77bcc9072c8', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'Anatomical characteristics (location and physical qualities) of the material used in the study or referred to in the digital object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + title: 'Do material element schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'schema:name': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + bibo: 'http://purl.org/ontology/bibo/', + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Do material element schema generated by the CEDAR Template Editor 1.8.2', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/d1ae9c1b-c026-422a-991d-68ae24d4ab3b', + 'pav:lastUpdatedOn': '2019-09-30T14:30:11-07:00', + 'pav:createdOn': '2019-09-30T14:30:11-07:00', + 'bibo:status': 'bibo:draft', + required: [ + '@context', + '@id', + 'Description of Material', + 'Anatomical Summary', + 'Organism', + 'Disease Summary', + 'Material Name', + ], + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'A physical entity involved in the generation of the digital object (or collection); typically this is a tissue', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + '@id': 'https://repo.metadatacenter.org/template-elements/c38b0f90-8018-4492-8fee-13c695ebc3e5', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'DO Primary Publication': { + _ui: { + order: [ + 'ID of Publication', + 'Title of Publication', + 'Publication Date', + 'Publisher', + 'Author of Publication', + 'Funding', + 'Abstract', + ], + propertyLabels: { + Abstract: 'abstract', + 'Author of Publication': 'Author of Publication', + 'ID of Publication': 'ID of Publication', + 'Title of Publication': 'Title of Publication', + Funding: 'Funding', + Publisher: 'Publisher', + 'Publication Date': 'Publication Date', + }, + }, + 'schema:name': 'DO Primary Publication', + properties: { + Funding: { + minItems: 1, + type: 'array', + items: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Funding', + title: 'Funding field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Funding field schema generated by the CEDAR Template Editor 1.8.2-SNAPSHOT', + 'pav:lastUpdatedOn': '2018-06-06T17:38:04-07:00', + 'pav:createdOn': '2018-06-06T17:38:04-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/ec872717-61d2-4fcb-ae18-3c9f4d4296a3', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'The grant(s) which funded and supported the work reported by the publication; multiple entries can be specified, one grant per entry', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'Author of Publication': { + minItems: 1, + type: 'array', + items: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Author of Publication', + title: 'Author of Publication field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Author of Publication field schema generated by the CEDAR Template Editor 1.8.2', + 'pav:lastUpdatedOn': '2018-06-06T17:38:04-07:00', + 'pav:createdOn': '2018-06-06T17:38:04-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/67864608-2176-4bc8-a4f9-d4e59f038875', + _valueConstraints: { + requiredValue: true, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'The person(s) and/or organisation(s) responsible for the publication; multiple entries can be specified, one author per entry', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + Publisher: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Publisher', + title: 'Publisher field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Publisher field schema generated by the CEDAR Template Editor 1.8.2-SNAPSHOT', + 'pav:lastUpdatedOn': '2018-06-06T17:38:04-07:00', + 'pav:createdOn': '2018-06-06T17:38:04-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/874dc2d6-043d-4962-a306-772646c5b6fe', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'The name of the publication venue (journal, book, etc.) where the document is published', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + 'Title of Publication': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Title of Publication', + title: 'Title of Publication field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Title of Publication field schema generated by the CEDAR Template Editor 1.8.2', + 'pav:lastUpdatedOn': '2018-06-06T17:38:04-07:00', + 'pav:createdOn': '2018-06-06T17:38:04-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/bcfa468a-692d-4cc4-9c87-77fc7c64956c', + _valueConstraints: { + requiredValue: true, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'The full name of the published document (usually a short phrase; note this is not the journal or book name)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + Abstract: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'abstract', + title: 'abstract field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'abstract field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2018-06-06T17:38:04-07:00', + 'pav:createdOn': '2018-06-06T17:38:04-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/847acaf2-a098-497d-b02b-986e844dec5b', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'Abstract (summary text) for the Primary Publication', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'ID of Publication': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'ID of Publication', + title: 'ID of Publication field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'ID of Publication field schema generated by the CEDAR Template Editor 1.8.2', + 'pav:lastUpdatedOn': '2018-06-06T17:38:04-07:00', + 'pav:createdOn': '2018-06-06T17:38:04-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/646fb654-89f4-420e-b77c-d83136ab2114', + _valueConstraints: { + requiredValue: true, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'Unique identifier (e.g. Pubmed ID, DOI, or URI/IRI) for the publication', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Publication Date': { + _ui: { + temporalGranularity: 'day', + inputType: 'temporal', + }, + 'schema:name': 'Publication Date', + title: 'Publication Date field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Publication Date field schema generated by the CEDAR Template Editor 1.8.2-SNAPSHOT', + 'pav:lastUpdatedOn': '2018-06-06T17:38:04-07:00', + 'pav:createdOn': '2018-06-06T17:38:04-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/4e048024-a703-48b0-885a-dbfbdc0672c4', + _valueConstraints: { + temporalType: 'xsd:date', + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + type: 'string', + format: 'uri', + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'Date when content was formally published', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + '@type', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'ID of Publication', + 'Title of Publication', + 'Publication Date', + 'Publisher', + 'Author of Publication', + 'Funding', + 'Abstract', + ], + properties: { + Abstract: { + enum: [ + 'http://purl.org/ontology/bibo/abstract', + ], + }, + 'Author of Publication': { + enum: [ + 'https://schema.metadatacenter.net/properties/authors', + ], + }, + 'ID of Publication': { + enum: [ + 'https://schema.metadatacenter.net/properties/iD', + ], + }, + 'Title of Publication': { + enum: [ + 'https://schema.metadatacenter.net/properties/title', + ], + }, + Funding: { + enum: [ + 'https://schema.metadatacenter.net/properties/acknowledges', + ], + }, + Publisher: { + enum: [ + 'https://schema.metadatacenter.net/properties/publicationVenue', + ], + }, + 'Publication Date': { + enum: [ + 'https://schema.metadatacenter.net/properties/date', + ], + }, + }, + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + title: 'Do primary publication element schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'schema:name': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + bibo: 'http://purl.org/ontology/bibo/', + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Do primary publication element schema generated by the CEDAR Template Editor 1.8.2', + 'pav:derivedFrom': 'https://repo.metadatacenter.net/template-elements/b70460f4-9207-45ce-990c-6d0add590afd', + 'pav:lastUpdatedOn': '2019-09-30T14:30:11-07:00', + 'pav:createdOn': '2019-09-30T14:30:11-07:00', + 'bibo:status': 'bibo:draft', + required: [ + '@context', + '@id', + 'Title of Publication', + 'Publication Date', + 'Funding', + 'Author of Publication', + 'Publisher', + 'ID of Publication', + 'Abstract', + ], + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'information about the most authoritative published document describing the digital object (or collection)', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + '@id': 'https://repo.metadatacenter.org/template-elements/274c3d78-39de-4eab-98b3-88bc660a62b2', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'DO License': { + _ui: { + order: [ + 'License Name', + 'Landing Page of License', + ], + propertyLabels: { + 'License Name': 'License Name', + 'Landing Page of License': 'Landing Page of License', + }, + }, + 'schema:name': 'DO License', + properties: { + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'License Name', + 'Landing Page of License', + ], + properties: { + 'License Name': { + enum: [ + 'https://schema.metadatacenter.net/properties/name', + ], + }, + 'Landing Page of License': { + enum: [ + 'http://www.w3.org/ns/dcat#landingPage', + ], + }, + }, + }, + 'License Name': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'License Name', + title: 'License Name field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'License Name field schema generated by the CEDAR Template Editor 1.8.2-SNAPSHOT', + 'pav:lastUpdatedOn': '2018-06-06T18:15:01-07:00', + 'pav:createdOn': '2018-06-06T18:15:01-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/c558671d-3fff-41fb-9b7a-2b46e7edcc91', + _valueConstraints: { + requiredValue: true, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'The name of the license that applies to the digital object (or collection)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'Landing Page of License': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Landing Page of License', + title: 'Landing Page of License field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Landing Page of License field schema generated by the CEDAR Template Editor 1.8.2', + 'pav:lastUpdatedOn': '2018-06-06T18:15:01-07:00', + 'pav:createdOn': '2018-06-06T18:15:01-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/bfbec63e-8097-400e-aebc-7cd042e6ff75', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'The URL, URI, or IRI of the page describing the license that applies to the digital object (or collection); ideally, the value also serves as the identifier of the license', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + title: 'Do license element schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'schema:name': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + bibo: 'http://purl.org/ontology/bibo/', + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Do license element schema generated by the CEDAR Template Editor 1.8.2', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/b8bf6962-893f-4480-b060-e0f63e954113', + 'pav:lastUpdatedOn': '2019-09-30T14:30:11-07:00', + 'pav:createdOn': '2019-09-30T14:30:11-07:00', + 'bibo:status': 'bibo:draft', + required: [ + '@context', + '@id', + 'Landing Page of License', + 'License Name', + ], + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'The legal document describing what the user may do with a digital object (or collection), possibly including redistribution, modification, derivation, reuse, and conditions for citation/acknowledgment', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + '@id': 'https://repo.metadatacenter.org/template-elements/ff6db0f9-ed61-40a0-82e1-db6c24cba34e', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'DO Distribution': { + _ui: { + order: [ + 'Title of Distribution', + 'Host Repository or Cloud Provider', + 'Description of Distribution', + 'Landing Page of Distribution', + 'Size of Distribution (MB)', + 'Number of Digital Objects in Distribution', + 'Primary Data Distribution', + ], + propertyLabels: { + 'Description of Distribution': 'Description of Distribution', + 'Landing Page of Distribution': 'Landing Page of Distribution', + 'Host Repository or Cloud Provider': 'Host Repository or Cloud Provider', + 'Number of Digital Objects in Distribution': 'Number of Digital Objects in Distribution', + 'Title of Distribution': 'Title of Distribution', + 'Primary Data Distribution': 'Primary Data Distribution', + 'Size of Distribution (MB)': 'Size of Distribution (MB)', + }, + }, + 'schema:name': 'DO Distribution', + properties: { + 'Number of Digital Objects in Distribution': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Number of Digital Objects in Distribution', + title: 'Number of Digital Objects in Distribution field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Number of Digital Objects in Distribution field schema generated by the CEDAR Template Editor 1.8.2', + 'pav:lastUpdatedOn': '2018-06-06T18:12:50-07:00', + 'pav:createdOn': '2018-06-06T18:12:50-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/7935dce2-a802-4cbf-9801-e8fcba547758', + _valueConstraints: { + requiredValue: true, + defaultValue: '1', + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'The number of digital objects that are part of this distribution; if this metadata is not describing a collection, this number should be 1', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Description of Distribution': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Description of Distribution', + title: 'Description of Distribution field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Description of Distribution field schema generated by the CEDAR Template Editor 1.8.2', + 'pav:lastUpdatedOn': '2018-06-06T18:12:50-07:00', + 'pav:createdOn': '2018-06-06T18:12:50-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/d235b4c0-3891-4de6-bcb4-4005949fe00b', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'A textual narrative detailing this digital object distribution', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Landing Page of Distribution': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Landing Page of Distribution', + title: 'Landing Page of Distribution field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Landing Page of Distribution field schema generated by the CEDAR Template Editor 1.8.2', + 'pav:lastUpdatedOn': '2018-06-06T18:12:50-07:00', + 'pav:createdOn': '2018-06-06T18:12:50-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/f1999511-d6b6-491d-b936-4c6bd70248ab', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'The URL, URI, or IRI where this distribution of the digital object (or collection) can be found', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Host Repository or Cloud Provider': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Host Repository or Cloud Provider', + title: 'Host Repository or Cloud Provider field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Host Repository or Cloud Provider field schema generated by the CEDAR Template Editor 1.8.2', + 'pav:lastUpdatedOn': '2018-06-06T18:12:50-07:00', + 'pav:createdOn': '2018-06-06T18:12:50-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/9ed217fd-8f52-4160-b935-75ef26698568', + _valueConstraints: { + requiredValue: true, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'Entity hosting the storage of the digital object (or collection)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'Title of Distribution', + 'Host Repository or Cloud Provider', + 'Description of Distribution', + 'Size of Distribution (MB)', + 'Number of Digital Objects in Distribution', + 'Landing Page of Distribution', + 'Primary Data Distribution', + ], + properties: { + 'Description of Distribution': { + enum: [ + 'https://schema.metadatacenter.net/properties/description', + ], + }, + 'Landing Page of Distribution': { + enum: [ + 'https://schema.metadatacenter.org/properties/aeca906d-f4b3-4ecb-94de-8d00c894c814', + ], + }, + 'Host Repository or Cloud Provider': { + enum: [ + 'https://schema.metadatacenter.net/properties/provider', + ], + }, + 'Number of Digital Objects in Distribution': { + enum: [ + 'https://schema.metadatacenter.net/properties/unit', + ], + }, + 'Title of Distribution': { + enum: [ + 'https://schema.metadatacenter.net/properties/title', + ], + }, + 'Primary Data Distribution': { + enum: [ + 'https://schema.metadatacenter.org/properties/d9efe7c6-75b6-46a8-8be0-0defd0f7b6c5', + ], + }, + 'Size of Distribution (MB)': { + enum: [ + 'https://schema.metadatacenter.net/properties/size', + ], + }, + }, + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'Title of Distribution': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Title of Distribution', + title: 'Title of Distribution field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Title of Distribution field schema generated by the CEDAR Template Editor 1.8.2', + 'pav:lastUpdatedOn': '2018-06-06T18:12:50-07:00', + 'pav:createdOn': '2018-06-06T18:12:50-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/7bd327fa-3335-4060-9417-d0af96fbc68c', + _valueConstraints: { + requiredValue: true, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'Descriptive phrase specifying this distribution', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Primary Data Distribution': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Primary Data Distribution', + title: 'Primary Data Distribution field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Primary Data Distribution field schema generated by the CEDAR Template Editor 1.8.2', + 'pav:lastUpdatedOn': '2018-06-06T18:12:50-07:00', + 'pav:createdOn': '2018-06-06T18:12:50-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/ea4c206b-57c0-4844-87ce-c9d460aed007', + _valueConstraints: { + valueSets: [], + multipleChoice: false, + ontologies: [], + branches: [], + classes: [ + { + label: 'True', + uri: 'http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C68850', + type: 'OntologyClass', + prefLabel: 'True', + source: 'NCIT', + }, + { + label: 'False', + uri: 'http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C68851', + type: 'OntologyClass', + prefLabel: 'False', + source: 'NCIT', + }, + ], + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + 'schema:description': 'Set to True if this is the primary distribution (location) for the digital object (or collection), and to False otherwise', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Size of Distribution (MB)': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Size of Distribution (MB)', + title: 'Size of Distribution (MB) field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Size of Distribution (MB) field schema generated by the CEDAR Template Editor 1.8.2', + 'pav:lastUpdatedOn': '2018-06-06T18:12:50-07:00', + 'pav:createdOn': '2018-06-06T18:12:50-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/8c10f35f-2d7b-4fcd-b058-403a644faae9', + _valueConstraints: { + requiredValue: true, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'Aggregate size of the total collection digital objects represented by this distribution (in megabytes)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + title: 'Do distribution element schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'schema:name': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + bibo: 'http://purl.org/ontology/bibo/', + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Do distribution element schema generated by the CEDAR Template Editor 1.8.2', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/f4d7923c-a6d6-48aa-9304-c8029d240330', + 'pav:lastUpdatedOn': '2019-09-30T14:30:11-07:00', + 'pav:createdOn': '2019-09-30T14:30:11-07:00', + 'bibo:status': 'bibo:draft', + required: [ + '@context', + '@id', + 'Host Repository or Cloud Provider', + 'Title of Distribution', + 'Number of Digital Objects in Distribution', + 'Description of Distribution', + 'Size of Distribution (MB)', + 'Landing Page of Distribution', + 'Primary Data Distribution', + ], + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'Distribution (location) information for the digital object (or collection)', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + '@id': 'https://repo.metadatacenter.org/template-elements/17c8a4b8-3698-4e0d-9069-92a639950011', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'Object Storage Location': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Object Storage Location', + title: 'Object Storage Location field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Object Storage Location field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:11-07:00', + 'pav:createdOn': '2019-09-30T14:30:11-07:00', + 'skos:prefLabel': 'Storage Location', + _valueConstraints: { + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'If digital object, the name of the repository (including the cloud provider if appropriate) hosting the digital object. (Enter "Multiple: " if distributed across multiple hosts, followed by the host names.) If a physical object, enter "Physical: " followed by a facility and physical location.', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/f38e1168-b012-4fba-bc24-1d5bce5b71ba', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'DO Funding': { + _ui: { + order: [ + 'Funding Body or Agency', + 'Identifier', + 'Acknowledgement Text', + ], + propertyLabels: { + 'Funding Body or Agency': 'Funding Body or Agency', + 'Acknowledgement Text': 'Acknowledgement Text', + Identifier: 'Identifier', + }, + }, + 'schema:name': 'DO Funding', + properties: { + 'Funding Body or Agency': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Funding Body or Agency', + title: 'Funding Body or Agency field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/ed08eddb-a063-4a68-9a60-02c71946fc24', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ed08eddb-a063-4a68-9a60-02c71946fc24', + description: 'Funding Body or Agency field schema generated by the CEDAR Template Editor 1.8.2-SNAPSHOT', + 'pav:lastUpdatedOn': '2018-06-07T12:17:53-07:00', + 'pav:createdOn': '2018-06-07T12:17:53-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/39bff9fa-8845-4d41-993f-bb8fb5d04711', + _valueConstraints: { + requiredValue: true, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'The person(s) or organization(s) which has awarded the funds supporting the project.', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Acknowledgement Text': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Acknowledgement Text', + title: 'Acknowledgement Text field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/ed08eddb-a063-4a68-9a60-02c71946fc24', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ed08eddb-a063-4a68-9a60-02c71946fc24', + description: 'Acknowledgement Text field schema generated by the CEDAR Template Editor 1.8.2-SNAPSHOT', + 'pav:lastUpdatedOn': '2018-06-07T12:17:53-07:00', + 'pav:createdOn': '2018-06-07T12:17:53-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/8021fbfd-f20f-44d7-af94-ab28404a6fef', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'Text acknowledging the grant which funded and supported the work', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'Identifier', + 'Funding Body or Agency', + 'Acknowledgement Text', + ], + properties: { + 'Funding Body or Agency': { + enum: [ + 'https://schema.metadatacenter.net/properties/funders', + ], + }, + 'Acknowledgement Text': { + enum: [ + 'https://schema.metadatacenter.org/properties/359996b5-e374-4e8a-9109-91126ac4f94e', + ], + }, + Identifier: { + enum: [ + 'https://schema.metadatacenter.net/properties/identifier', + ], + }, + }, + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + Identifier: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Identifier', + title: 'Identifier field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/ed08eddb-a063-4a68-9a60-02c71946fc24', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ed08eddb-a063-4a68-9a60-02c71946fc24', + description: 'Identifier field schema generated by the CEDAR Template Editor 1.8.2-SNAPSHOT', + 'pav:lastUpdatedOn': '2018-06-07T12:17:53-07:00', + 'pav:createdOn': '2018-06-07T12:17:53-07:00', + '@id': 'https://repo.metadatacenter.net/template-fields/08761930-4d88-4ecb-a2ff-959e6f618e4b', + _valueConstraints: { + requiredValue: true, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'The primary identification number for the grant.', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + required: [ + '@value', + ], + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + title: 'Do funding element schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'schema:name': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + bibo: 'http://purl.org/ontology/bibo/', + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Do funding element schema generated by the CEDAR Template Editor 1.8.2-SNAPSHOT', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/8ee5c2f8-a61b-4df1-882a-26532986a406', + 'pav:lastUpdatedOn': '2019-09-30T14:30:11-07:00', + 'pav:createdOn': '2019-09-30T14:30:11-07:00', + 'bibo:status': 'bibo:draft', + required: [ + '@context', + '@id', + 'Identifier', + 'Funding Body or Agency', + 'Acknowledgement Text', + ], + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'Grant or other funding source that supported generation of the digital object (or collection)', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + '@id': 'https://repo.metadatacenter.org/template-elements/903ad100-2b01-49ac-accd-8e1e13a0f3a5', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Object Home Page': { + minItems: 1, + type: 'array', + items: { + _ui: { + inputType: 'link', + }, + 'schema:name': 'Object Home Page', + title: 'Object Home Page field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@id': 'https://repo.metadatacenter.org/template-fields/8ae77522-ffee-44cb-b09d-ce3d405fe0b3', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Object Home Page field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:11-07:00', + 'pav:createdOn': '2019-09-30T14:30:11-07:00', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'Web page(s) (IRI/URI) describing the deliverable.', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'skos:prefLabel': 'Deliverable Home Page', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'Object Author': { + minItems: 1, + type: 'array', + items: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Object Author', + title: 'Object Author field schema', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + description: 'Object Author field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:11-07:00', + 'pav:createdOn': '2019-09-30T14:30:11-07:00', + 'skos:prefLabel': 'Deliverable Creator', + _valueConstraints: { + requiredValue: false, + }, + required: [ + '@value', + ], + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'Creator of the deliverable; multiple entries can be specified, one author per entry. Recommended format is "First M. Last (ORCID_ID)"', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/ca84f458-ce08-4feb-a571-68598c5ffa9a', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'xsd', + 'pav', + 'schema', + 'oslc', + 'schema:isBasedOn', + 'schema:name', + 'schema:description', + 'pav:createdOn', + 'pav:createdBy', + 'pav:lastUpdatedOn', + 'oslc:modifiedBy', + 'Grant Award Information', + 'Product Information', + 'Application Information', + ], + properties: { + 'schema:isBasedOn': { + type: 'object', + properties: { + '@type': { + enum: [ + '@id', + ], + type: 'string', + }, + }, + }, + 'schema:name': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:string', + ], + type: 'string', + }, + }, + }, + schema: { + enum: [ + 'http://schema.org/', + ], + type: 'string', + format: 'uri', + }, + 'pav:createdBy': { + type: 'object', + properties: { + '@type': { + enum: [ + '@id', + ], + type: 'string', + }, + }, + }, + xsd: { + enum: [ + 'http://www.w3.org/2001/XMLSchema#', + ], + type: 'string', + format: 'uri', + }, + rdfs: { + enum: [ + 'http://www.w3.org/2000/01/rdf-schema#', + ], + type: 'string', + format: 'uri', + }, + 'Product Information': { + enum: [ + 'https://schema.metadatacenter.org/properties/f75aaf18-cba2-43b7-bc97-e335aff90d2c', + ], + }, + 'oslc:modifiedBy': { + type: 'object', + properties: { + '@type': { + enum: [ + '@id', + ], + type: 'string', + }, + }, + }, + 'rdfs:label': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:string', + ], + type: 'string', + }, + }, + }, + 'pav:derivedFrom': { + type: 'object', + properties: { + '@type': { + enum: [ + '@id', + ], + type: 'string', + }, + }, + }, + skos: { + enum: [ + 'http://www.w3.org/2004/02/skos/core#', + ], + type: 'string', + format: 'uri', + }, + 'pav:lastUpdatedOn': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:dateTime', + ], + type: 'string', + }, + }, + }, + oslc: { + enum: [ + 'http://open-services.net/ns/core#', + ], + type: 'string', + format: 'uri', + }, + 'pav:createdOn': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:dateTime', + ], + type: 'string', + }, + }, + }, + 'skos:notation': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:string', + ], + type: 'string', + }, + }, + }, + pav: { + enum: [ + 'http://purl.org/pav/', + ], + type: 'string', + format: 'uri', + }, + 'Grant Award Information': { + enum: [ + 'https://schema.metadatacenter.org/properties/33a9becf-df36-4b63-9ecb-23b1d8eb2a90', + ], + }, + 'schema:description': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:string', + ], + type: 'string', + }, + }, + }, + 'Application Information': { + enum: [ + 'https://schema.metadatacenter.org/properties/1b404db9-5a26-4870-9614-82a948098672', + ], + }, + }, + }, + 'oslc:modifiedBy': { + type: [ + 'string', + 'null', + ], + format: 'uri', + }, + 'pav:derivedFrom': { + type: 'string', + format: 'uri', + }, + 'schema:description': { + type: 'string', + }, + 'pav:lastUpdatedOn': { + type: [ + 'string', + 'null', + ], + format: 'date-time', + }, + '@id': { + type: [ + 'string', + 'null', + ], + format: 'uri', + }, + 'Grant Award Information': { + _ui: { + order: [ + 'Funded Project Number', + 'Funding Organization', + 'Funding Grant', + 'Funded Award Number', + ], + propertyDescriptions: { + 'Funding Organization': 'Provide the GRID semantic identifier of the (lowest level) organization that is awarding this grant. (GRID IDs may be found at www.grid.ac.)', + 'Funded Award Number': 'Unique identifier (may be IRI) assigned to this award when project is funded', + 'Funded Project Number': 'Unique numeric identifier assigned by award system when project is funded (may be same as application identifier)', + 'Funding Grant': 'Resolvable IRI (preferred) or other unique identifier of the grant that funded this award', + }, + propertyLabels: { + 'Funding Organization': 'Funding Organization', + 'Funded Award Number': 'Funded Award Number', + 'Funded Project Number': 'Funded Project Number', + 'Funding Grant': 'Funding Grant', + }, + }, + 'schema:name': 'Grant Award Information', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@context', + '@id', + 'Funded Project Number', + 'Funding Organization', + 'Funding Grant', + 'Funded Award Number', + ], + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'schema:name': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + bibo: 'http://purl.org/ontology/bibo/', + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Grant award information element schema', + description: 'Grant award information element schema generated by the CEDAR Template Editor 2.2.3', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/38cb204c-8aaa-4ff1-8c05-969fb70aca1d', + 'pav:lastUpdatedOn': '2019-11-04T17:32:03-08:00', + 'pav:createdOn': '2019-11-04T17:32:03-08:00', + '@id': 'https://repo.metadatacenter.org/template-elements/ac84c337-4fb7-41fb-a86b-6725d4b474b6', + 'bibo:status': 'bibo:draft', + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'Information about the grant once awarded', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + properties: { + 'Funding Organization': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Funding Organization', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + _valueConstraints: { + requiredValue: false, + }, + type: 'object', + title: 'Funding Organization field schema', + description: 'Funding Organization field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2019-09-30T14:31:20-07:00', + 'pav:createdOn': '2019-09-30T14:31:20-07:00', + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'schema:description': 'Provide the GRID semantic identifier of the (lowest level) organization that is awarding this grant. (GRID IDs may be found at www.grid.ac.)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/7db7452d-cb18-407c-9403-8dce9e5d24be', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'Funded Project Number', + 'Funding Organization', + 'Funding Grant', + 'Funded Award Number', + ], + properties: { + 'Funding Organization': { + enum: [ + 'https://schema.metadatacenter.org/properties/3a0f1ad0-7106-4823-a665-c1daaf93fc3f', + ], + }, + 'Funded Award Number': { + enum: [ + 'https://schema.metadatacenter.org/properties/c364f989-4835-4191-a2eb-dc208f07f458', + ], + }, + 'Funded Project Number': { + enum: [ + 'https://schema.metadatacenter.org/properties/0c5f2a49-8896-47b7-bffa-68dc77fbab9d', + ], + }, + 'Funding Grant': { + enum: [ + 'https://schema.metadatacenter.org/properties/36e97363-587d-4d56-9bec-267ec77b6126', + ], + }, + }, + }, + 'Funded Award Number': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Funded Award Number', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Funded Award Number field schema', + description: 'Funded Award Number field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:31:20-07:00', + 'pav:createdOn': '2019-09-30T14:31:20-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/9082fd3a-e48b-4cf7-b94d-3c7ea41c94b6', + 'skos:prefLabel': 'Award Number', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: false, + }, + 'schema:description': 'Unique identifier (may be IRI) assigned to this award when project is funded', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Funded Project Number': { + _ui: { + inputType: 'numeric', + }, + 'schema:name': 'Funded Project Number', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + type: 'string', + format: 'uri', + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + '@type', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Funded Project Number field schema', + description: 'Funded Project Number field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:31:20-07:00', + 'pav:createdOn': '2019-09-30T14:31:20-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/d8e72d86-a5e7-422b-b273-9a1082ab38e7', + 'skos:prefLabel': 'Project Number', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + numberType: 'xsd:decimal', + requiredValue: false, + minValue: 1, + }, + 'schema:description': 'Unique numeric identifier assigned by award system when project is funded (may be same as application identifier)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'Funding Grant': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Funding Grant', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + _valueConstraints: { + requiredValue: false, + }, + type: 'object', + title: 'Funding Grant field schema', + description: 'Funding Grant field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2019-09-30T14:31:20-07:00', + 'pav:createdOn': '2019-09-30T14:31:20-07:00', + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'schema:description': 'Resolvable IRI (preferred) or other unique identifier of the grant that funded this award', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/051b49d6-fbd4-4a44-990b-fc36aea114ef', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Application Information': { + _ui: { + order: [ + 'Application Title', + 'Participant Information3', + 'Participant Information4', + 'Participant Information5', + 'Project Scientific Summary', + 'Project Public Summary', + 'Application ID', + 'Proposal Topic Keyword', + 'Research Topic', + ], + propertyDescriptions: { + 'Project Scientific Summary': 'Overview of project in language that is meaningful to scientific reviewers and peers', + 'Participant Information4': 'Details about any collaborating applicant on this submission', + 'Project Public Summary': 'Overview of project in language understandable by the general public', + 'Research Topic': 'Topic of scientific research addressed by this application', + 'Participant Information5': 'Details about a project member participating in this submission', + 'Application Title': 'Name of the project described in this application', + 'Proposal Topic Keyword': 'Enter a keyword representing your proposal; use multiple entry for multiple keywords (up to 5)', + 'Application ID': 'Application Identifier (provided by application software; do not enter manually)', + 'Participant Information3': 'Details about the lead applicant for this submission', + }, + propertyLabels: { + 'Project Scientific Summary': 'Project Scientific Summary', + 'Participant Information4': 'Co-Applicant', + 'Project Public Summary': 'Project Public Summary', + 'Research Topic': 'Research Topic', + 'Participant Information5': 'Participant Information', + 'Application Title': 'Application Title', + 'Proposal Topic Keyword': 'Proposal Topic Keyword', + 'Application ID': 'Application ID', + 'Participant Information3': 'Principal Applicant', + }, + }, + 'schema:name': 'Application Information', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@context', + '@id', + 'Application Title', + 'Project Scientific Summary', + 'Project Public Summary', + 'Application ID', + 'Proposal Topic Keyword', + 'Research Topic', + 'Participant Information3', + 'Participant Information4', + 'Participant Information5', + ], + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'schema:name': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + bibo: 'http://purl.org/ontology/bibo/', + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Application information element schema', + description: 'Application information element schema generated by the CEDAR Template Editor 2.4.0', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/bacbdeec-963a-4cd4-9f0d-e95024800cd3', + 'pav:lastUpdatedOn': '2019-11-04T17:32:03-08:00', + 'pav:createdOn': '2019-11-04T17:32:03-08:00', + '@id': 'https://repo.metadatacenter.org/template-elements/f59dec0e-1901-4786-939c-b1684fae005c', + 'bibo:status': 'bibo:draft', + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'Data provided with the funding application', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + properties: { + 'Project Scientific Summary': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Project Scientific Summary', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Project Scientific Summary field schema', + description: 'Project Scientific Summary field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-10-01T01:21:35-07:00', + 'pav:createdOn': '2019-10-01T01:21:35-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/64abdaf4-dd64-438f-be33-27a34370a5a4', + 'skos:prefLabel': 'Scientific Summary', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: true, + }, + 'schema:description': 'Overview of project in language that is meaningful to scientific reviewers and peers', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Participant Information4': { + minItems: 1, + type: 'array', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/33f97dff-1f7b-4dc6-8853-74ed68649e13', + items: { + _ui: { + order: [ + 'Surname', + 'Proper Name', + 'Middle Name', + 'ORCID Identifier', + 'LinkedIn IRI', + 'Affiliated Organization', + ], + propertyDescriptions: { + 'Affiliated Organization': 'Enter identifier of organization (preferably from www.grid.ac) associated with this individual for this submission', + Surname: 'Enter the surname (family name) of the individual', + 'Proper Name': 'Enter the given or proper name of the individual', + 'ORCID Identifier': 'Enter an ORCID ID of the individual (from orcid.org)', + 'LinkedIn IRI': "Enter IRI for individual at LinkedIn (begins 'https://linkedin.com/')", + 'Middle Name': 'Enter additional middle name(s) or initial(s) if desired', + }, + propertyLabels: { + 'Affiliated Organization': 'Affiliated Organization', + Surname: 'Surname', + 'Proper Name': 'Proper Name', + 'ORCID Identifier': 'ORCID Identifier', + 'LinkedIn IRI': 'LinkedIn IRI', + 'Middle Name': 'Middle Name', + }, + }, + 'schema:name': 'Participant Information', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@context', + '@id', + 'Surname', + 'Proper Name', + 'Middle Name', + 'ORCID Identifier', + 'LinkedIn IRI', + 'Affiliated Organization', + ], + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'schema:name': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + bibo: 'http://purl.org/ontology/bibo/', + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Participant Information field schema', + description: 'Participant Information field schema generated by the CEDAR Template Editor 2.4.0', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2019-10-01T01:21:35-07:00', + 'pav:createdOn': '2019-10-01T01:21:35-07:00', + '@id': 'https://repo.metadatacenter.org/template-elements/4dba5c86-5a3a-4949-87a1-26ca104b43f9', + 'bibo:status': 'bibo:draft', + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'Details about any person involved in submission', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + properties: { + 'Affiliated Organization': { + _ui: { + inputType: 'link', + }, + 'schema:name': 'Affiliated Organization', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@id': 'https://repo.metadatacenter.org/template-fields/92dca5bd-797d-4c95-96f4-6c9629364c26', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + _valueConstraints: { + requiredValue: true, + }, + type: 'object', + title: 'Affiliated Organization field schema', + description: 'Affiliated Organization field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:40-07:00', + 'skos:prefLabel': 'Organizational Affiliation', + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + properties: { + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + 'schema:description': 'Enter identifier of organization (preferably from www.grid.ac) associated with this individual for this submission', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2019-09-30T14:30:40-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + 'Proper Name': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Proper Name', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Proper Name field schema', + description: 'Proper Name field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:40-07:00', + 'pav:createdOn': '2019-09-30T14:30:40-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/2caafa3f-f3d7-422c-92d9-9b09bf3ae2bb', + 'skos:prefLabel': 'First/Given Name', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: true, + }, + 'schema:description': 'Enter the given or proper name of the individual', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'Surname', + 'Proper Name', + 'Middle Name', + 'ORCID Identifier', + 'LinkedIn IRI', + 'Affiliated Organization', + ], + properties: { + 'Affiliated Organization': { + enum: [ + 'https://schema.metadatacenter.org/properties/5057b496-c8ae-459f-8989-494e96f97c16', + ], + }, + Surname: { + enum: [ + 'https://schema.metadatacenter.org/properties/09b0600c-a29a-4cb4-8c09-4213f4e413dc', + ], + }, + 'Proper Name': { + enum: [ + 'https://schema.metadatacenter.org/properties/0bc7666c-3e1a-43d9-b20a-32ca6d7d301a', + ], + }, + 'ORCID Identifier': { + enum: [ + 'https://schema.metadatacenter.org/properties/f0f3146c-87b3-46af-ada6-5fde8f54244e', + ], + }, + 'LinkedIn IRI': { + enum: [ + 'https://schema.metadatacenter.org/properties/5d293662-80f7-4185-bc2b-2e5ef3c6c9fc', + ], + }, + 'Middle Name': { + enum: [ + 'https://schema.metadatacenter.org/properties/82d555c7-2357-4f19-9727-b344b6f8c5a6', + ], + }, + }, + }, + 'ORCID Identifier': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'ORCID Identifier', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + _valueConstraints: { + requiredValue: false, + }, + type: 'object', + title: 'ORCID Identifier field schema', + description: 'ORCID Identifier field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2019-09-30T14:30:40-07:00', + 'pav:createdOn': '2019-09-30T14:30:40-07:00', + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'schema:description': 'Enter an ORCID ID of the individual (from orcid.org)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/6d472846-721a-4da4-a93e-ea249df48a84', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'LinkedIn IRI': { + _ui: { + inputType: 'link', + }, + 'schema:name': 'LinkedIn IRI', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@id': 'https://repo.metadatacenter.org/template-fields/b595550a-78d8-4426-931e-e6dc68d41a32', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + _valueConstraints: { + requiredValue: false, + }, + type: 'object', + title: 'LinkedIn IRI field schema', + description: 'LinkedIn IRI field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:40-07:00', + 'skos:prefLabel': 'LinkedIn Page', + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + properties: { + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + 'schema:description': "Enter IRI for individual at LinkedIn (begins 'https://linkedin.com/')", + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2019-09-30T14:30:40-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Middle Name': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Middle Name', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Middle Name field schema', + description: 'Middle Name field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:40-07:00', + 'pav:createdOn': '2019-09-30T14:30:40-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/731ee848-b79f-48ec-b7ff-81bb48322586', + 'skos:prefLabel': 'Middle Name or Initial', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: false, + }, + 'schema:description': 'Enter additional middle name(s) or initial(s) if desired', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + Surname: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Surname', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Surname field schema', + description: 'Surname field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:40-07:00', + 'pav:createdOn': '2019-09-30T14:30:40-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/8f3f7f5f-dfb0-4817-b3dc-36769752f823', + 'skos:prefLabel': 'Last/Family Name', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: true, + }, + 'schema:description': 'Enter the surname (family name) of the individual', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'Project Public Summary': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Project Public Summary', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Project Public Summary field schema', + description: 'Project Public Summary field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-10-01T01:21:35-07:00', + 'pav:createdOn': '2019-10-01T01:21:35-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/e673e57e-9ca9-4d8a-b153-83e10e0790cc', + 'skos:prefLabel': 'Public Summary', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: true, + }, + 'schema:description': 'Overview of project in language understandable by the general public', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Research Topic': { + minItems: 1, + type: 'array', + items: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Research Topic', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Research Topic field schema', + description: 'Research Topic field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-10-01T01:21:35-07:00', + 'pav:createdOn': '2019-10-01T01:21:35-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/844f3e3b-ce42-4166-a4ad-edacf6decbc8', + _valueConstraints: { + valueSets: [], + multipleChoice: false, + ontologies: [], + branches: [ + { + uri: 'http://edamontology.org/topic_0003', + source: 'EDAM bioinformatics operations, types of data, data formats, identifiers, and topics (EDAM)', + name: 'Topic', + acronym: 'EDAM', + maxDepth: 0, + }, + ], + classes: [], + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + 'schema:description': 'Topic of scientific research addressed by this application', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + properties: { + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'Application Title', + 'Project Scientific Summary', + 'Project Public Summary', + 'Application ID', + 'Proposal Topic Keyword', + 'Research Topic', + 'Participant Information3', + 'Participant Information4', + 'Participant Information5', + ], + properties: { + 'Project Scientific Summary': { + enum: [ + 'https://schema.metadatacenter.org/properties/aed9ffb1-0295-4cd1-b18d-ad597cc08cd4', + ], + }, + 'Participant Information4': { + enum: [ + 'https://schema.metadatacenter.org/properties/147b8049-6103-4eca-a56d-98c01a32ebaa', + ], + }, + 'Project Public Summary': { + enum: [ + 'https://schema.metadatacenter.org/properties/b7634463-10bf-4e93-bd94-dfb7f408eb0b', + ], + }, + 'Research Topic': { + enum: [ + 'https://schema.metadatacenter.org/properties/9f21b165-8c2a-4a2a-8426-2dc23d12353f', + ], + }, + 'Participant Information5': { + enum: [ + 'https://schema.metadatacenter.org/properties/13d9c108-cab9-43ab-8487-7609af09abec', + ], + }, + 'Application Title': { + enum: [ + 'https://schema.metadatacenter.org/properties/80f630a1-aa41-4386-9a3b-688d36c823fe', + ], + }, + 'Proposal Topic Keyword': { + enum: [ + 'https://schema.metadatacenter.org/properties/c92e985a-87a0-405b-a713-a7f8913f5834', + ], + }, + 'Application ID': { + enum: [ + 'https://schema.metadatacenter.org/properties/35c990f2-c5f4-4fdf-8bbd-412b7566f44f', + ], + }, + 'Participant Information3': { + enum: [ + 'https://schema.metadatacenter.org/properties/84d8f4ba-525a-40b5-8a12-c50f2c4efdc4', + ], + }, + }, + }, + 'Participant Information5': { + minItems: 1, + type: 'array', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/33f97dff-1f7b-4dc6-8853-74ed68649e13', + items: { + _ui: { + order: [ + 'Surname', + 'Proper Name', + 'Middle Name', + 'ORCID Identifier', + 'LinkedIn IRI', + 'Affiliated Organization', + ], + propertyDescriptions: { + 'Affiliated Organization': 'Enter identifier of organization (preferably from www.grid.ac) associated with this individual for this submission', + Surname: 'Enter the surname (family name) of the individual', + 'Proper Name': 'Enter the given or proper name of the individual', + 'ORCID Identifier': 'Enter an ORCID ID of the individual (from orcid.org)', + 'LinkedIn IRI': "Enter IRI for individual at LinkedIn (begins 'https://linkedin.com/')", + 'Middle Name': 'Enter additional middle name(s) or initial(s) if desired', + }, + propertyLabels: { + 'Affiliated Organization': 'Affiliated Organization', + Surname: 'Surname', + 'Proper Name': 'Proper Name', + 'ORCID Identifier': 'ORCID Identifier', + 'LinkedIn IRI': 'LinkedIn IRI', + 'Middle Name': 'Middle Name', + }, + }, + 'schema:name': 'Participant Information', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@context', + '@id', + 'Surname', + 'Proper Name', + 'Middle Name', + 'ORCID Identifier', + 'LinkedIn IRI', + 'Affiliated Organization', + ], + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'schema:name': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + bibo: 'http://purl.org/ontology/bibo/', + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Participant Information field schema', + description: 'Participant Information field schema generated by the CEDAR Template Editor 2.4.0', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2019-10-01T01:21:35-07:00', + 'pav:createdOn': '2019-10-01T01:21:35-07:00', + '@id': 'https://repo.metadatacenter.org/template-elements/4dba5c86-5a3a-4949-87a1-26ca104b43f9', + 'skos:prefLabel': 'Project Member', + 'bibo:status': 'bibo:draft', + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'Details about any person involved in submission', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + properties: { + 'Affiliated Organization': { + _ui: { + inputType: 'link', + }, + 'schema:name': 'Affiliated Organization', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@id': 'https://repo.metadatacenter.org/template-fields/92dca5bd-797d-4c95-96f4-6c9629364c26', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + _valueConstraints: { + requiredValue: true, + }, + type: 'object', + title: 'Affiliated Organization field schema', + description: 'Affiliated Organization field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:40-07:00', + 'skos:prefLabel': 'Organizational Affiliation', + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + properties: { + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + 'schema:description': 'Enter identifier of organization (preferably from www.grid.ac) associated with this individual for this submission', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2019-09-30T14:30:40-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + 'Proper Name': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Proper Name', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Proper Name field schema', + description: 'Proper Name field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:40-07:00', + 'pav:createdOn': '2019-09-30T14:30:40-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/2caafa3f-f3d7-422c-92d9-9b09bf3ae2bb', + 'skos:prefLabel': 'First/Given Name', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: true, + }, + 'schema:description': 'Enter the given or proper name of the individual', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'Surname', + 'Proper Name', + 'Middle Name', + 'ORCID Identifier', + 'LinkedIn IRI', + 'Affiliated Organization', + ], + properties: { + 'Affiliated Organization': { + enum: [ + 'https://schema.metadatacenter.org/properties/5057b496-c8ae-459f-8989-494e96f97c16', + ], + }, + Surname: { + enum: [ + 'https://schema.metadatacenter.org/properties/09b0600c-a29a-4cb4-8c09-4213f4e413dc', + ], + }, + 'Proper Name': { + enum: [ + 'https://schema.metadatacenter.org/properties/0bc7666c-3e1a-43d9-b20a-32ca6d7d301a', + ], + }, + 'ORCID Identifier': { + enum: [ + 'https://schema.metadatacenter.org/properties/f0f3146c-87b3-46af-ada6-5fde8f54244e', + ], + }, + 'LinkedIn IRI': { + enum: [ + 'https://schema.metadatacenter.org/properties/5d293662-80f7-4185-bc2b-2e5ef3c6c9fc', + ], + }, + 'Middle Name': { + enum: [ + 'https://schema.metadatacenter.org/properties/82d555c7-2357-4f19-9727-b344b6f8c5a6', + ], + }, + }, + }, + 'ORCID Identifier': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'ORCID Identifier', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + _valueConstraints: { + requiredValue: false, + }, + type: 'object', + title: 'ORCID Identifier field schema', + description: 'ORCID Identifier field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2019-09-30T14:30:40-07:00', + 'pav:createdOn': '2019-09-30T14:30:40-07:00', + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'schema:description': 'Enter an ORCID ID of the individual (from orcid.org)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/6d472846-721a-4da4-a93e-ea249df48a84', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'LinkedIn IRI': { + _ui: { + inputType: 'link', + }, + 'schema:name': 'LinkedIn IRI', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@id': 'https://repo.metadatacenter.org/template-fields/b595550a-78d8-4426-931e-e6dc68d41a32', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + _valueConstraints: { + requiredValue: false, + }, + type: 'object', + title: 'LinkedIn IRI field schema', + description: 'LinkedIn IRI field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:40-07:00', + 'skos:prefLabel': 'LinkedIn Page', + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + properties: { + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + 'schema:description': "Enter IRI for individual at LinkedIn (begins 'https://linkedin.com/')", + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2019-09-30T14:30:40-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Middle Name': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Middle Name', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Middle Name field schema', + description: 'Middle Name field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:40-07:00', + 'pav:createdOn': '2019-09-30T14:30:40-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/731ee848-b79f-48ec-b7ff-81bb48322586', + 'skos:prefLabel': 'Middle Name or Initial', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: false, + }, + 'schema:description': 'Enter additional middle name(s) or initial(s) if desired', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + Surname: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Surname', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Surname field schema', + description: 'Surname field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:40-07:00', + 'pav:createdOn': '2019-09-30T14:30:40-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/8f3f7f5f-dfb0-4817-b3dc-36769752f823', + 'skos:prefLabel': 'Last/Family Name', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: true, + }, + 'schema:description': 'Enter the surname (family name) of the individual', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'Proposal Topic Keyword': { + minItems: 1, + type: 'array', + maxItems: 5, + items: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Proposal Topic Keyword', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Proposal Topic Keyword field schema', + description: 'Proposal Topic Keyword field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-10-01T01:21:35-07:00', + 'pav:createdOn': '2019-10-01T01:21:35-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/46e5a835-27a3-493e-80be-d83081463b61', + 'skos:prefLabel': 'Topic Keyword', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: false, + }, + 'schema:description': 'Enter a keyword representing your proposal; use multiple entry for multiple keywords (up to 5)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'Participant Information3': { + 'bibo:status': 'bibo:draft', + title: 'Participant information element schema', + description: 'Participant information element schema generated by the CEDAR Template Editor 2.2.3', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/33f97dff-1f7b-4dc6-8853-74ed68649e13', + 'schema:schemaVersion': '1.6.0', + 'pav:version': '0.0.1', + 'schema:description': 'Details about any person involved in submission', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + required: [ + '@context', + '@id', + 'Surname', + 'Proper Name', + 'Middle Name', + 'ORCID Identifier', + 'LinkedIn IRI', + 'Affiliated Organization', + ], + _ui: { + order: [ + 'Surname', + 'Proper Name', + 'Middle Name', + 'ORCID Identifier', + 'LinkedIn IRI', + 'Affiliated Organization', + ], + propertyDescriptions: { + 'Affiliated Organization': 'Enter identifier of organization (preferably from www.grid.ac) associated with this individual for this submission', + Surname: 'Enter the surname (family name) of the individual', + 'Proper Name': 'Enter the given or proper name of the individual', + 'ORCID Identifier': 'Enter an ORCID ID of the individual (from orcid.org)', + 'LinkedIn IRI': "Enter IRI for individual at LinkedIn (begins 'https://linkedin.com/')", + 'Middle Name': 'Enter additional middle name(s) or initial(s) if desired', + }, + propertyLabels: { + 'Affiliated Organization': 'Affiliated Organization', + Surname: 'Surname', + 'Proper Name': 'Proper Name', + 'ORCID Identifier': 'ORCID Identifier', + 'LinkedIn IRI': 'LinkedIn IRI', + 'Middle Name': 'Middle Name', + }, + }, + 'schema:name': 'Participant Information', + '@id': 'https://repo.metadatacenter.org/template-elements/4dba5c86-5a3a-4949-87a1-26ca104b43f9', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'schema:name': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + bibo: 'http://purl.org/ontology/bibo/', + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2019-10-01T01:21:35-07:00', + 'pav:createdOn': '2019-10-01T01:21:35-07:00', + properties: { + 'Affiliated Organization': { + _ui: { + inputType: 'link', + }, + 'schema:name': 'Affiliated Organization', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@id': 'https://repo.metadatacenter.org/template-fields/92dca5bd-797d-4c95-96f4-6c9629364c26', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + _valueConstraints: { + requiredValue: true, + }, + type: 'object', + title: 'Affiliated Organization field schema', + description: 'Affiliated Organization field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:40-07:00', + 'skos:prefLabel': 'Organizational Affiliation', + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + properties: { + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + 'schema:description': 'Enter identifier of organization (preferably from www.grid.ac) associated with this individual for this submission', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2019-09-30T14:30:40-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + 'Proper Name': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Proper Name', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Proper Name field schema', + description: 'Proper Name field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:40-07:00', + 'pav:createdOn': '2019-09-30T14:30:40-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/2caafa3f-f3d7-422c-92d9-9b09bf3ae2bb', + 'skos:prefLabel': 'First/Given Name', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: true, + }, + 'schema:description': 'Enter the given or proper name of the individual', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'Surname', + 'Proper Name', + 'Middle Name', + 'ORCID Identifier', + 'LinkedIn IRI', + 'Affiliated Organization', + ], + properties: { + 'Affiliated Organization': { + enum: [ + 'https://schema.metadatacenter.org/properties/5057b496-c8ae-459f-8989-494e96f97c16', + ], + }, + Surname: { + enum: [ + 'https://schema.metadatacenter.org/properties/09b0600c-a29a-4cb4-8c09-4213f4e413dc', + ], + }, + 'Proper Name': { + enum: [ + 'https://schema.metadatacenter.org/properties/0bc7666c-3e1a-43d9-b20a-32ca6d7d301a', + ], + }, + 'ORCID Identifier': { + enum: [ + 'https://schema.metadatacenter.org/properties/f0f3146c-87b3-46af-ada6-5fde8f54244e', + ], + }, + 'LinkedIn IRI': { + enum: [ + 'https://schema.metadatacenter.org/properties/5d293662-80f7-4185-bc2b-2e5ef3c6c9fc', + ], + }, + 'Middle Name': { + enum: [ + 'https://schema.metadatacenter.org/properties/82d555c7-2357-4f19-9727-b344b6f8c5a6', + ], + }, + }, + }, + 'ORCID Identifier': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'ORCID Identifier', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + _valueConstraints: { + requiredValue: false, + }, + type: 'object', + title: 'ORCID Identifier field schema', + description: 'ORCID Identifier field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2019-09-30T14:30:40-07:00', + 'pav:createdOn': '2019-09-30T14:30:40-07:00', + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'schema:description': 'Enter an ORCID ID of the individual (from orcid.org)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/6d472846-721a-4da4-a93e-ea249df48a84', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'LinkedIn IRI': { + _ui: { + inputType: 'link', + }, + 'schema:name': 'LinkedIn IRI', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@id': 'https://repo.metadatacenter.org/template-fields/b595550a-78d8-4426-931e-e6dc68d41a32', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + _valueConstraints: { + requiredValue: false, + }, + type: 'object', + title: 'LinkedIn IRI field schema', + description: 'LinkedIn IRI field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:40-07:00', + 'skos:prefLabel': 'LinkedIn Page', + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + properties: { + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + 'schema:description': "Enter IRI for individual at LinkedIn (begins 'https://linkedin.com/')", + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdOn': '2019-09-30T14:30:40-07:00', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Middle Name': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Middle Name', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Middle Name field schema', + description: 'Middle Name field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:40-07:00', + 'pav:createdOn': '2019-09-30T14:30:40-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/731ee848-b79f-48ec-b7ff-81bb48322586', + 'skos:prefLabel': 'Middle Name or Initial', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: false, + }, + 'schema:description': 'Enter additional middle name(s) or initial(s) if desired', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + Surname: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Surname', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Surname field schema', + description: 'Surname field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-09-30T14:30:40-07:00', + 'pav:createdOn': '2019-09-30T14:30:40-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/8f3f7f5f-dfb0-4817-b3dc-36769752f823', + 'skos:prefLabel': 'Last/Family Name', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: true, + }, + 'schema:description': 'Enter the surname (family name) of the individual', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'skos:prefLabel': 'Principal Investigator/Applicant', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Application ID': { + _ui: { + inputType: 'textfield', + hidden: true, + }, + 'schema:name': 'Application ID', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Application ID field schema', + description: 'Application ID field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-10-01T01:21:35-07:00', + 'pav:createdOn': '2019-10-01T01:21:35-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/ebfd6d30-9073-4319-84ea-d5484f496026', + 'skos:prefLabel': 'Application ID', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: false, + }, + 'schema:description': 'Application Identifier (provided by application software; do not enter manually)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + 'Application Title': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Application Title', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'oslc:modifiedBy': { + '@type': '@id', + }, + 'pav:createdBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Application Title field schema', + description: 'Application Title field schema generated by the CEDAR Template Editor 2.2.3', + 'pav:lastUpdatedOn': '2019-10-01T01:21:35-07:00', + 'pav:createdOn': '2019-10-01T01:21:35-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/50cbbbbd-1c3f-4cb5-85a7-19053f7b9efa', + 'skos:prefLabel': 'Title of Project', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: true, + }, + 'schema:description': 'Name of the project described in this application', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + uniqueItems: true, + items: { + type: 'string', + format: 'uri', + }, + }, + ], + }, + 'pav:createdOn': { + type: [ + 'string', + 'null', + ], + format: 'date-time', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', +}); diff --git a/mirage/fixtures/cedar-templates/cedar-template.heal.ts b/mirage/fixtures/cedar-templates/cedar-template.heal.ts new file mode 100644 index 00000000000..4b0aebd82da --- /dev/null +++ b/mirage/fixtures/cedar-templates/cedar-template.heal.ts @@ -0,0 +1,7396 @@ +/* eslint-disable max-len */ +export const healTemplate = Object({ + '@type': 'https://schema.metadatacenter.org/core/Template', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'Heal study core metadata template schema', + description: 'Heal study core metadata template schema generated by the CEDAR Template Editor 2.6.44', + _ui: { + pages: [], + order: [ + 'Minimal Info', + 'Metadata Location', + 'Data Availability', + 'Study Translational Focus', + 'Study Type', + 'Human Treatment Applicability', + 'Human Condition Applicability', + 'Human Subject Applicability', + 'Data', + 'documentation_link', + ], + propertyLabels: { + 'Data Availability': 'Data Availability', + 'Human Condition Applicability': 'Human Condition Applicability', + Data: 'Data', + 'Metadata Location': 'Metadata Location', + 'Human Treatment Applicability': 'Human Treatment Applicability', + 'Study Translational Focus': 'Study Translational Focus', + documentation_link: 'documentation_link', + 'Minimal Info': 'Minimal Info', + 'Study Type': 'Study Type', + 'Human Subject Applicability': 'Human Subject Applicability', + }, + propertyDescriptions: { + 'Metadata Location': '', + Citation: '', + 'Contacts and Registrants': '', + 'Data Availability': '', + 'Study Translational Focus': '', + 'Study Type': '', + 'Human Treatment Applicability': "NOT APPLICABLE IF STUDY TRANSLATIONAL FOCUS IS NOT 'TREATMENT OF A CONDITION'", + 'Human Condition Applicability': '', + 'Human Subjects Applicability': '', + Data: '', + 'Human Subject Applicability': '', + 'Minimal Info': '', + 'Minimal Info1': '', + 'Study Type1': '', + 'Human Subject Applicability1': '', + documentation_link: 'For guidance on completing this form, please visit: https://bit.ly/HEAL-CEDAR', + }, + }, + properties: { + '@context': { + type: 'object', + properties: { + rdfs: { + type: 'string', + format: 'uri', + enum: [ + 'http://www.w3.org/2000/01/rdf-schema#', + ], + }, + xsd: { + type: 'string', + format: 'uri', + enum: [ + 'http://www.w3.org/2001/XMLSchema#', + ], + }, + pav: { + type: 'string', + format: 'uri', + enum: [ + 'http://purl.org/pav/', + ], + }, + schema: { + type: 'string', + format: 'uri', + enum: [ + 'http://schema.org/', + ], + }, + oslc: { + type: 'string', + format: 'uri', + enum: [ + 'http://open-services.net/ns/core#', + ], + }, + skos: { + type: 'string', + format: 'uri', + enum: [ + 'http://www.w3.org/2004/02/skos/core#', + ], + }, + 'rdfs:label': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + 'xsd:string', + ], + }, + }, + }, + 'schema:isBasedOn': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + '@id', + ], + }, + }, + }, + 'schema:name': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + 'xsd:string', + ], + }, + }, + }, + 'schema:description': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + 'xsd:string', + ], + }, + }, + }, + 'pav:derivedFrom': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + '@id', + ], + }, + }, + }, + 'pav:createdOn': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + 'xsd:dateTime', + ], + }, + }, + }, + 'pav:createdBy': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + '@id', + ], + }, + }, + }, + 'pav:lastUpdatedOn': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + 'xsd:dateTime', + ], + }, + }, + }, + 'oslc:modifiedBy': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + '@id', + ], + }, + }, + }, + 'skos:notation': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + 'xsd:string', + ], + }, + }, + }, + 'Data Availability': { + enum: [ + 'https://schema.metadatacenter.org/properties/727c0bb9-5ccc-4e57-9c60-e904fb6554ae', + ], + }, + 'Human Condition Applicability': { + enum: [ + 'https://schema.metadatacenter.org/properties/7616106d-3048-4de2-b195-2e6b96dd8d9f', + ], + }, + Data: { + enum: [ + 'https://schema.metadatacenter.org/properties/b89b71da-4429-4b05-9800-609c1b66e5fd', + ], + }, + 'Metadata Location': { + enum: [ + 'https://schema.metadatacenter.org/properties/6d22bcde-0cfc-448b-9730-5983f700a734', + ], + }, + 'Human Treatment Applicability': { + enum: [ + 'https://schema.metadatacenter.org/properties/7a1ab684-856f-4542-94b9-df8822e61703', + ], + }, + 'Study Translational Focus': { + enum: [ + 'https://schema.metadatacenter.org/properties/ef34c3bb-f165-4e4f-8ee1-e6961f88c2e3', + ], + }, + 'Minimal Info': { + enum: [ + 'https://schema.metadatacenter.org/properties/d6a42006-032c-4a10-aef9-036056581fae', + ], + }, + 'Study Type': { + enum: [ + 'https://schema.metadatacenter.org/properties/e69d3d11-31ca-4e4d-ac89-d8fbc0fa7869', + ], + }, + 'Human Subject Applicability': { + enum: [ + 'https://schema.metadatacenter.org/properties/eb2b7689-fb3d-4468-b461-7544dab0b2df', + ], + }, + }, + required: [ + 'xsd', + 'pav', + 'schema', + 'oslc', + 'schema:isBasedOn', + 'schema:name', + 'schema:description', + 'pav:createdOn', + 'pav:createdBy', + 'pav:lastUpdatedOn', + 'oslc:modifiedBy', + 'Data Availability', + 'Human Condition Applicability', + 'Data', + 'Metadata Location', + 'Human Treatment Applicability', + 'Study Translational Focus', + 'Minimal Info', + 'Study Type', + 'Human Subject Applicability', + ], + additionalProperties: false, + }, + '@id': { + type: [ + 'string', + 'null', + ], + format: 'uri', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'schema:isBasedOn': { + type: 'string', + format: 'uri', + }, + 'schema:name': { + type: 'string', + minLength: 1, + }, + 'schema:description': { + type: 'string', + }, + 'pav:derivedFrom': { + type: 'string', + format: 'uri', + }, + 'pav:createdOn': { + type: [ + 'string', + 'null', + ], + format: 'date-time', + }, + 'pav:createdBy': { + type: [ + 'string', + 'null', + ], + format: 'uri', + }, + 'pav:lastUpdatedOn': { + type: [ + 'string', + 'null', + ], + format: 'date-time', + }, + 'oslc:modifiedBy': { + type: [ + 'string', + 'null', + ], + format: 'uri', + }, + 'Data Availability': { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'Data availability element schema', + description: 'Data availability element schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + order: [ + 'produce_data', + 'data_available', + 'data_restricted', + 'data_collection_status', + 'data_release_status', + 'data_collection_start_date', + 'data_collection_finish_date', + 'data_release_start_date', + 'data_release_finish_date', + 'produce_other', + ], + propertyLabels: { + data_available: 'data_available', + data_collection_status: 'data_collection_status', + data_release_status: 'data_release_status', + data_collection_start_date: 'data_collection_start_date', + data_collection_finish_date: 'data_collection_finish_date', + data_release_start_date: 'data_release_start_date', + data_release_finish_date: 'data_release_finish_date', + data_restricted: 'data_restricted', + produce_data: 'produce_data', + produce_other: 'produce_other', + }, + propertyDescriptions: { + data_available: 'If study will collect/produce data, indicate whether all, some, or none of the data will be made available', + data_collection_status: 'If study will collect/produce data, indicate whether the study has not started, has started, or has finished data collection/production activities', + data_release_status: 'If the study will collect/produce data and make at least some of the data available, indicate whether the study has not started, has started, or has finished data release activities.', + data_collection_start_date: 'If the study will collect/produce data, indicate the anticipated date when data collection/production will begin', + data_collection_finish_date: 'If the study will collect/produce data, indicate the anticipated date when data collection/production will end (data collection/production is complete).', + data_release_start_date: 'If study will collect/produce data and make at least some of the data available, indicate the anticipated date when first data will be released.', + data_release_finish_date: 'If study will produce data and make at least some of the data available, indicate the anticipated date when last data will be released (data release is complete).', + data_restricted: 'If study will collect/produce data, and make at least some of that data available, indicate whether all, some, or none of the data will have restriction(s) on access beyond acknowledgement and signing of a minimal DSA', + produce_data: 'Indicate whether or not the study will collect/produce (primary or secondary) data.', + produce_other: 'Indicate whether or not the study will produce shareable products other than data.', + }, + }, + properties: { + '@context': { + type: 'object', + properties: { + data_available: { + enum: [ + 'https://schema.metadatacenter.org/properties/540cf2c4-012e-40be-a191-4498474918f8', + ], + }, + data_collection_status: { + enum: [ + 'https://schema.metadatacenter.org/properties/74cd5963-7261-439c-83e2-a6329b16d285', + ], + }, + data_release_status: { + enum: [ + 'https://schema.metadatacenter.org/properties/4018cbfd-e055-4e69-8c23-9b2b47dd0191', + ], + }, + data_collection_start_date: { + enum: [ + 'https://schema.metadatacenter.org/properties/1da1c9af-ae90-4efe-8ab2-85797d9e0e82', + ], + }, + data_collection_finish_date: { + enum: [ + 'https://schema.metadatacenter.org/properties/1a39e732-9682-4963-9f80-de08ed504173', + ], + }, + data_release_start_date: { + enum: [ + 'https://schema.metadatacenter.org/properties/82bba606-0597-4080-983d-a4fc3341b211', + ], + }, + data_release_finish_date: { + enum: [ + 'https://schema.metadatacenter.org/properties/236c55ff-14c7-4123-adf2-5019eb5c8344', + ], + }, + data_restricted: { + enum: [ + 'https://schema.metadatacenter.org/properties/6d5d1e5e-1f88-430f-b815-e8414a384f35', + ], + }, + produce_data: { + enum: [ + 'https://schema.metadatacenter.org/properties/a05f2427-6240-4c0c-a29e-4a7a6b43276c', + ], + }, + produce_other: { + enum: [ + 'https://schema.metadatacenter.org/properties/e46f791a-85ec-4aed-a7cc-24a34664b79b', + ], + }, + }, + additionalProperties: false, + required: [ + 'data_available', + 'data_collection_status', + 'data_release_status', + 'data_collection_start_date', + 'data_collection_finish_date', + 'data_release_start_date', + 'data_release_finish_date', + 'data_restricted', + 'produce_data', + 'produce_other', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + data_available: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'data_available field schema', + description: 'data_available field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + literals: [ + { + label: 'none', + }, + { + label: 'some', + }, + { + label: 'all', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + 'schema:name': 'data_available', + 'schema:description': 'If study will collect/produce data, indicate whether all, some, or none of the data will be made available', + 'pav:createdOn': '2022-06-02T15:04:33-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:04:33-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + '@id': 'https://repo.metadatacenter.org/template-fields/61419009-5ff4-4a50-b7f1-01aaea8da133', + 'skos:prefLabel': 'Will the study make data available?', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + data_collection_status: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'data_collection_status field schema', + description: 'data_collection_status field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + literals: [ + { + label: 'not started', + }, + { + label: 'started', + }, + { + label: 'finished', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + 'schema:name': 'data_collection_status', + 'schema:description': 'If study will collect/produce data, indicate whether the study has not started, has started, or has finished data collection/production activities', + 'pav:createdOn': '2022-06-02T15:04:33-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:04:33-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'Has data collection/production started?', + '@id': 'https://repo.metadatacenter.org/template-fields/68cd9194-f6b1-4aa9-89d4-b59add064a5d', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + data_release_status: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'data_release_status field schema', + description: 'data_release_status field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + literals: [ + { + label: 'not started', + }, + { + label: 'started', + }, + { + label: 'finished', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + 'schema:name': 'data_release_status', + 'schema:description': 'If the study will collect/produce data and make at least some of the data available, indicate whether the study has not started, has started, or has finished data release activities.', + 'pav:createdOn': '2022-06-02T15:04:33-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:04:33-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'Has data release started?', + '@id': 'https://repo.metadatacenter.org/template-fields/d8213256-2292-4aa9-8218-2eeace923877', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + data_collection_start_date: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'data_collection_start_date field schema', + description: 'data_collection_start_date field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'temporal', + temporalGranularity: 'day', + }, + _valueConstraints: { + requiredValue: false, + temporalType: 'xsd:date', + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + 'schema:name': 'data_collection_start_date', + 'schema:description': 'If the study will collect/produce data, indicate the anticipated date when data collection/production will begin', + 'pav:createdOn': '2022-06-02T15:04:33-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:04:33-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'Date when first data will be collected/produced (Anticipated)', + '@id': 'https://repo.metadatacenter.org/template-fields/ce0fcddb-1798-4d03-9b35-7c8b544e7206', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + data_collection_finish_date: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'data_collection_finish_date field schema', + description: 'data_collection_finish_date field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'temporal', + temporalGranularity: 'day', + }, + _valueConstraints: { + requiredValue: false, + temporalType: 'xsd:date', + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + 'schema:name': 'data_collection_finish_date', + 'schema:description': 'If the study will collect/produce data, indicate the anticipated date when data collection/production will end (data collection/production is complete).', + 'pav:createdOn': '2022-06-02T15:04:33-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:04:33-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'Date when last data will be collected/produced (Anticipated)', + '@id': 'https://repo.metadatacenter.org/template-fields/4e0180d6-7958-4136-82f3-a6d7bcfe41e7', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + data_release_start_date: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'data_release_start_date field schema', + description: 'data_release_start_date field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'temporal', + temporalGranularity: 'day', + }, + _valueConstraints: { + requiredValue: false, + temporalType: 'xsd:date', + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + 'schema:name': 'data_release_start_date', + 'schema:description': 'If study will collect/produce data and make at least some of the data available, indicate the anticipated date when first data will be released.', + 'pav:createdOn': '2022-06-02T15:04:33-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:04:33-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'Date when first data will be released (Anticipated)', + '@id': 'https://repo.metadatacenter.org/template-fields/5852f9ed-fd3d-4031-bcdb-f3be8d611fed', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + data_release_finish_date: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'data_release_finish_date field schema', + description: 'data_release_finish_date field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'temporal', + temporalGranularity: 'day', + }, + _valueConstraints: { + requiredValue: false, + temporalType: 'xsd:date', + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + 'schema:name': 'data_release_finish_date', + 'schema:description': 'If study will produce data and make at least some of the data available, indicate the anticipated date when last data will be released (data release is complete).', + 'pav:createdOn': '2022-06-02T15:04:33-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:04:33-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'Date when last data will be released (Anticipated)', + '@id': 'https://repo.metadatacenter.org/template-fields/9baf82c8-43a7-4b27-a62c-8d96da345b59', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + data_restricted: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'data_restricted field schema', + description: 'data_restricted field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + literals: [ + { + label: 'none', + }, + { + label: 'some', + }, + { + label: 'all', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + 'schema:name': 'data_restricted', + 'schema:description': 'If study will collect/produce data, and make at least some of that data available, indicate whether all, some, or none of the data will have restriction(s) on access beyond acknowledgement and signing of a minimal DSA', + 'pav:createdOn': '2022-06-02T15:04:33-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:04:33-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'Will available data have restrictions on access?', + '@id': 'https://repo.metadatacenter.org/template-fields/e1740d90-f8d6-44a7-8381-139165883894', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + produce_data: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'produce_data field schema', + description: 'produce_data field schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + inputType: 'radio', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + literals: [ + { + label: 'Yes', + }, + { + label: 'No', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + 'schema:name': 'produce_data', + 'schema:description': 'Indicate whether or not the study will collect/produce (primary or secondary) data.', + 'pav:createdOn': '2022-06-02T15:04:33-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:04:33-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'Will the study collect or produce data?', + '@id': 'https://repo.metadatacenter.org/template-fields/ebc647a8-d501-4889-98ef-b903c904b976', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + produce_other: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'produce_other field schema', + description: 'produce_other field schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + inputType: 'radio', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + literals: [ + { + label: 'Yes', + }, + { + label: 'No', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + 'schema:name': 'produce_other', + 'schema:description': 'Indicate whether or not the study will produce shareable products other than data.', + 'pav:createdOn': '2022-06-02T15:04:33-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:04:33-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'Will study produce shareable products other than data?', + '@id': 'https://repo.metadatacenter.org/template-fields/089c4eb6-887f-4496-8a8c-07228a6f12f0', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'schema:name': 'Data Availability', + 'schema:description': '', + required: [ + '@context', + '@id', + 'data_available', + 'data_collection_status', + 'data_release_status', + 'data_collection_start_date', + 'data_collection_finish_date', + 'data_release_start_date', + 'data_release_finish_date', + 'data_restricted', + 'produce_data', + 'produce_other', + ], + 'pav:createdOn': '2023-03-22T08:32:17-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-03-22T08:32:17-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:published', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/98806ebf-6a4c-4bd5-8624-cd9d190cdfe4', + '@id': 'https://repo.metadatacenter.org/template-elements/d133b6e9-2842-489f-b803-9ef121d1bbd0', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Human Condition Applicability': { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'Human condition applicability element schema', + description: 'Human condition applicability element schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + order: [ + 'condition_category', + 'condition_investigation_stage_or_type', + 'pain_causal_condition', + 'pain_treatment_or_study_target_condition', + 'all_treatment_or_study_target_condition', + 'all_outcome_condition', + 'all_other_condition', + ], + propertyLabels: { + condition_category: 'condition_category', + condition_investigation_stage_or_type: 'condition_investigation_stage_or_type', + pain_causal_condition: 'pain_causal_condition', + pain_treatment_or_study_target_condition: 'pain_treatment_or_study_target_condition', + all_treatment_or_study_target_condition: 'all_treatment_or_study_target_condition', + all_outcome_condition: 'all_outcome_condition', + all_other_condition: 'all_other_condition', + }, + propertyDescriptions: { + condition_category: 'Considering the study in a translational context, to humans with which broad category(ies) of opioid use or pain conditions are the study results intended to apply. Choose as many as apply.', + condition_investigation_stage_or_type: "Each HEAL study will be doing work that is relevant to a human opioid and/or pain condition. What does this study intend to learn about the condition? If the study is investigating a treatment, intervention, or solution, please choose 'Treatment of Condition'. Choose as many as apply.", + pain_causal_condition: "If the study will be doing work that is relevant to a human PAIN condition category, is the study focusing on pain caused by a specific condition? e.g. Cancer, fibromyalgia, arthritis, occupational injury, sports injury, car accident, surgical procedure. If yes, please indicate the causal condition(s) here - Values will be restricted to NLM MeSH Diseases - see Branch 'C' here: https://meshb-prev.nlm.nih.gov/treeView", + pain_treatment_or_study_target_condition: 'If the study will be doing work that is relevant to a human PAIN condition category, and the pain condition has a causal condition (specified above), is the study focusing its investigation on the causal condition, or on the pain resulting from the causal condition? e.g. In a study of effective treatments for fibromyalgia/fibromyalgia pain, is the study focused on fibromyalgia disease-modifying treatments, or on treatments that address the symptomology of pain? Choose as many as apply.', + all_treatment_or_study_target_condition: "Considering the study in a translational context, to humans with which detailed type of opioid use or pain conditions are the study results intended to apply? Each HEAL study will be doing work that is relevant to a human opioid and/or pain condition; You indicated the broad category of condition(s) the study is focusing on or relevant to above. Here, please indicate the study focus condition(s) in detail. Choose as many as apply - Values will be restricted to NLM MeSH Diseases - see Branch 'C' here: https://meshb-prev.nlm.nih.gov/treeView", + all_outcome_condition: "If the outcome condition(s) the study hopes to impact or measure is different than the treatment or study target condition (e.g. testing a disease-modifying fibromyaligia treatment but measuring depression, physical and social function, and neurologic pain such as headaches as the main outcomes). Please indicate the study outcome condition(s) here. Choose as many as apply - Values will be restricted to NLM MeSH Diseases - see Branch 'C' here: https://meshb-prev.nlm.nih.gov/treeView", + all_other_condition: "If the study is measuring or tracking other human health conditions besides the treatment or study target condition and outcome condition, please indicate the other tracked/measured condition(s) here. Choose as many as apply - Values will be restricted to NLM MeSH Diseases - see Branch 'C' here: https://meshb-prev.nlm.nih.gov/treeView", + }, + }, + properties: { + '@context': { + type: 'object', + properties: { + condition_category: { + enum: [ + 'https://schema.metadatacenter.org/properties/cd67d808-e00f-40e1-9ed8-b68567fc21b1', + ], + }, + condition_investigation_stage_or_type: { + enum: [ + 'https://schema.metadatacenter.org/properties/b5ca5722-7979-4287-b8f8-140777d15450', + ], + }, + pain_causal_condition: { + enum: [ + 'https://schema.metadatacenter.org/properties/f8f92f34-cc40-44e1-b7b3-900968ceade2', + ], + }, + pain_treatment_or_study_target_condition: { + enum: [ + 'https://schema.metadatacenter.org/properties/91cb041e-88d6-4fa5-b9bb-00fb6c881a2d', + ], + }, + all_treatment_or_study_target_condition: { + enum: [ + 'https://schema.metadatacenter.org/properties/96b2b7c0-8abc-4802-a52d-13d9bd35e243', + ], + }, + all_outcome_condition: { + enum: [ + 'https://schema.metadatacenter.org/properties/c763ecf1-915b-4f1f-bca8-9288a30f08fc', + ], + }, + all_other_condition: { + enum: [ + 'https://schema.metadatacenter.org/properties/55645641-6232-4b34-904a-ae05f918379a', + ], + }, + }, + additionalProperties: false, + required: [ + 'condition_category', + 'condition_investigation_stage_or_type', + 'pain_causal_condition', + 'pain_treatment_or_study_target_condition', + 'all_treatment_or_study_target_condition', + 'all_outcome_condition', + 'all_other_condition', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + condition_category: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'condition_category field schema', + description: 'condition_category field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Opioid use and opioid use disorder', + }, + { + label: 'Opioid use and opioid use disorder, primary occurrence', + }, + { + label: 'Opioid use and opioid use disorder, relapse', + }, + { + label: 'Opioid use and opioid use disorder, chronic', + }, + { + label: 'Opioid overdose', + }, + { + label: 'Opioid exposure', + }, + { + label: '(Non-opioid) Substance use', + }, + { + label: 'Co-occurring (Opioid or Non-opioid) Substance use and Mental Health disorder', + }, + { + label: 'Pain', + }, + { + label: 'Pain, acute', + }, + { + label: 'Pain, chronic', + }, + { + label: 'Pain, acute to chronic transition', + }, + { + label: 'Pain, resulting from injury', + }, + { + label: 'Pain, resulting from surgery', + }, + { + label: 'Pain, resulting from chronic illness', + }, + { + label: 'Pain, idiopathic (unknown origin)', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2022-06-22T15:14:51-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-22T15:14:51-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'condition_category', + 'schema:description': 'Considering the study in a translational context, to humans with which broad category(ies) of opioid use or pain conditions are the study results intended to apply. Choose as many as apply.', + 'skos:prefLabel': 'Relevant Opioid use and/or Pain condition - Category(ies)', + '@id': 'https://repo.metadatacenter.org/template-fields/084714c3-ce48-4a9b-bb59-16abfe9f0f96', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + condition_investigation_stage_or_type: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'condition_investigation_stage_or_type field schema', + description: 'condition_investigation_stage_or_type field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Incidence of condition', + }, + { + label: 'Risk for condition', + }, + { + label: 'Differential risk for condition', + }, + { + label: 'Mechanism of condition', + }, + { + label: 'Impact of condition', + }, + { + label: 'Public attitudes towards or perception of condition', + }, + { + label: 'Treatment of condition', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2022-06-22T15:14:51-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-22T15:14:51-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'condition_investigation_stage_or_type', + 'schema:description': "Each HEAL study will be doing work that is relevant to a human opioid and/or pain condition. What does this study intend to learn about the condition? If the study is investigating a treatment, intervention, or solution, please choose 'Treatment of Condition'. Choose as many as apply.", + 'skos:prefLabel': 'Opioid use and/or Pain condition - Investigation Stage or Type', + '@id': 'https://repo.metadatacenter.org/template-fields/3f196959-a7d5-4a8e-81e2-29309487469b', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + pain_causal_condition: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'pain_causal_condition field schema', + description: 'pain_causal_condition field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'textfield', + }, + _valueConstraints: { + requiredValue: false, + ontologies: [ + { + numTerms: 348658, + acronym: 'MESH', + name: 'Medical Subject Headings', + uri: 'https://data.bioontology.org/ontologies/MESH', + }, + ], + valueSets: [], + classes: [], + branches: [], + multipleChoice: false, + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'pav:createdOn': '2022-06-22T15:14:51-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-22T15:14:51-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'pain_causal_condition', + 'schema:description': "If the study will be doing work that is relevant to a human PAIN condition category, is the study focusing on pain caused by a specific condition? e.g. Cancer, fibromyalgia, arthritis, occupational injury, sports injury, car accident, surgical procedure. If yes, please indicate the causal condition(s) here - Values will be restricted to NLM MeSH Diseases - see Branch 'C' here: https://meshb-prev.nlm.nih.gov/treeView", + 'skos:prefLabel': 'Pain - Causal condition', + '@id': 'https://repo.metadatacenter.org/template-fields/fa823b52-84e9-41cc-9c8f-71d5b53a011f', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + pain_treatment_or_study_target_condition: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'pain_treatment_or_study_target_condition field schema', + description: 'pain_treatment_or_study_target_condition field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Causal Condition', + }, + { + label: 'Pain', + }, + { + label: 'Pain, acute', + }, + { + label: 'Pain, chronic', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2022-06-22T15:14:51-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-22T15:14:51-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'pain_treatment_or_study_target_condition', + 'schema:description': 'If the study will be doing work that is relevant to a human PAIN condition category, and the pain condition has a causal condition (specified above), is the study focusing its investigation on the causal condition, or on the pain resulting from the causal condition? e.g. In a study of effective treatments for fibromyalgia/fibromyalgia pain, is the study focused on fibromyalgia disease-modifying treatments, or on treatments that address the symptomology of pain? Choose as many as apply.', + 'skos:prefLabel': 'Pain - Study treatment or target condition is causal condition or pain?', + '@id': 'https://repo.metadatacenter.org/template-fields/7ad7efc7-90ba-4ba8-b2b2-b0f7b35cd528', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + all_treatment_or_study_target_condition: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'all_treatment_or_study_target_condition field schema', + description: 'all_treatment_or_study_target_condition field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'textfield', + }, + _valueConstraints: { + requiredValue: false, + ontologies: [ + { + numTerms: 348658, + acronym: 'MESH', + name: 'Medical Subject Headings', + uri: 'https://data.bioontology.org/ontologies/MESH', + }, + ], + valueSets: [], + classes: [], + branches: [], + multipleChoice: false, + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'pav:createdOn': '2022-06-22T15:14:51-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-22T15:14:51-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'all_treatment_or_study_target_condition', + 'schema:description': "Considering the study in a translational context, to humans with which detailed type of opioid use or pain conditions are the study results intended to apply? Each HEAL study will be doing work that is relevant to a human opioid and/or pain condition; You indicated the broad category of condition(s) the study is focusing on or relevant to above. Here, please indicate the study focus condition(s) in detail. Choose as many as apply - Values will be restricted to NLM MeSH Diseases - see Branch 'C' here: https://meshb-prev.nlm.nih.gov/treeView", + 'skos:prefLabel': 'Study treatment or target condition - Detail', + '@id': 'https://repo.metadatacenter.org/template-fields/8300f6cd-738b-43e9-aa8d-2f7601f303da', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + all_outcome_condition: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'all_outcome_condition field schema', + description: 'all_outcome_condition field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'textfield', + }, + _valueConstraints: { + requiredValue: false, + ontologies: [ + { + numTerms: 348658, + acronym: 'MESH', + name: 'Medical Subject Headings', + uri: 'https://data.bioontology.org/ontologies/MESH', + }, + ], + valueSets: [], + classes: [], + branches: [], + multipleChoice: false, + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'pav:createdOn': '2022-06-22T15:14:51-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-22T15:14:51-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'all_outcome_condition', + 'schema:description': "If the outcome condition(s) the study hopes to impact or measure is different than the treatment or study target condition (e.g. testing a disease-modifying fibromyaligia treatment but measuring depression, physical and social function, and neurologic pain such as headaches as the main outcomes). Please indicate the study outcome condition(s) here. Choose as many as apply - Values will be restricted to NLM MeSH Diseases - see Branch 'C' here: https://meshb-prev.nlm.nih.gov/treeView", + 'skos:prefLabel': 'Study outcome condition - Detail', + '@id': 'https://repo.metadatacenter.org/template-fields/578e31da-42f1-4e3e-aca3-3bc035de776e', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + all_other_condition: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'all_other_condition field schema', + description: 'all_other_condition field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'textfield', + }, + _valueConstraints: { + requiredValue: false, + ontologies: [ + { + numTerms: 348658, + acronym: 'MESH', + name: 'Medical Subject Headings', + uri: 'https://data.bioontology.org/ontologies/MESH', + }, + ], + valueSets: [], + classes: [], + branches: [], + multipleChoice: false, + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'pav:createdOn': '2022-06-22T15:14:51-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-22T15:14:51-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'all_other_condition', + 'schema:description': "If the study is measuring or tracking other human health conditions besides the treatment or study target condition and outcome condition, please indicate the other tracked/measured condition(s) here. Choose as many as apply - Values will be restricted to NLM MeSH Diseases - see Branch 'C' here: https://meshb-prev.nlm.nih.gov/treeView", + 'skos:prefLabel': 'Other measured or tracked conditions - Detail', + '@id': 'https://repo.metadatacenter.org/template-fields/708363ac-88aa-4584-88d1-811a55f24c8d', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + }, + 'schema:name': 'Human Condition Applicability', + 'schema:description': '', + required: [ + '@context', + '@id', + 'condition_category', + 'condition_investigation_stage_or_type', + 'pain_causal_condition', + 'pain_treatment_or_study_target_condition', + 'all_treatment_or_study_target_condition', + 'all_outcome_condition', + 'all_other_condition', + ], + 'pav:createdOn': '2023-03-22T08:32:17-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-03-22T08:32:17-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'pav:version': '0.0.2', + 'bibo:status': 'bibo:draft', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/a7dc9f41-e588-4a82-8cca-8987fbc6123a', + 'pav:previousVersion': 'https://repo.metadatacenter.org/template-elements/a3770036-0d57-4d17-a710-b2f3e13bb4b4', + '@id': 'https://repo.metadatacenter.org/template-elements/0f49c355-9ae3-422f-9860-1fda620f3606', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + Data: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'Data element schema', + description: 'Data element schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + order: [ + 'data_orientation', + 'data_source', + 'data_type', + 'subject_data_unit_of_collection', + 'subject_data_unit_of_collection_expected_number', + 'subject_data_unit_of_analysis', + 'subject_data_unit_of_analysis_expected_number', + 'subject_data_level_available', + 'subject_geographic_data_level_collected', + 'subject_geographic_data_level_available', + ], + propertyLabels: { + subject_data_unit_of_collection: 'subject_data_unit_of_collection', + subject_data_unit_of_analysis: 'subject_data_unit_of_analysis', + subject_data_level_available: 'subject_data_level_available', + subject_data_unit_of_collection_expected_number: 'subject_data_unit_of_collection_expected_number', + subject_data_unit_of_analysis_expected_number: 'subject_data_unit_of_analysis_expected_number', + subject_geographic_data_level_collected: 'subject_geographic_data_level_collected', + subject_geographic_data_level_available: 'subject_geographic_data_level_available', + data_orientation: 'data_orientation', + data_type: 'data_type', + data_source: 'data_source', + }, + propertyDescriptions: { + subject_data_unit_of_collection: 'For studies with human subjects, is the data collected at the individual or population level?', + subject_data_unit_of_analysis: 'For studies with human subjects, is the data analyzed at the individual or population level?', + subject_data_level_available: 'For studies with human subjects that will make at least some data available, will data be made available at the individual subject level or some level of aggregation?', + subject_data_unit_of_collection_expected_number: 'For studies with human subjects, what is the expected number of subjects for which data will be collected? If unit of data collection is individuals this is the expected number of individuals, and if the unit of data collection is populations/clusters this is the expected number of populations/clusters.', + subject_data_unit_of_analysis_expected_number: 'For studies with human subjects, what is the expected number of subjects at the level at which data will be analyzed? If unit of data analysis is individuals this is the expected number of individuals, and if the unit of data analysis is populations/clusters this is the expected number of populations/clusters.', + subject_geographic_data_level_collected: 'For studies with human subjects, will geographic data be collected? if so, what level of geographic detail will be collected?', + subject_geographic_data_level_available: 'For studies with human subjects that collect geographic data and will make at least some data available, will geographic data be made available? if so, what level of geographic detail will be made available?', + data_orientation: 'Does the study produce/collect quantitative data?, qualitative data? Choose as many as apply.', + data_type: 'What is the type of the data the study will produce/collect. Choose as many as apply.', + data_source: 'What is the source of the data the study will produce/collect. Choose as many as apply.', + }, + }, + properties: { + '@context': { + type: 'object', + properties: { + subject_data_unit_of_collection: { + enum: [ + 'https://schema.metadatacenter.org/properties/c45b0841-4c50-4d5b-be49-eed993313621', + ], + }, + subject_data_unit_of_analysis: { + enum: [ + 'https://schema.metadatacenter.org/properties/deb7a1ed-f021-4049-a652-8d93eac22919', + ], + }, + subject_data_level_available: { + enum: [ + 'https://schema.metadatacenter.org/properties/a2a4dfeb-2ff5-4b2d-b0b1-c7a5b4115c90', + ], + }, + subject_data_unit_of_collection_expected_number: { + enum: [ + 'https://schema.metadatacenter.org/properties/ebdf8513-cf96-4c41-ae89-a69e5dcb1dbf', + ], + }, + subject_data_unit_of_analysis_expected_number: { + enum: [ + 'https://schema.metadatacenter.org/properties/cd41aebd-4134-4feb-9544-9ce1ba2f1f23', + ], + }, + subject_geographic_data_level_collected: { + enum: [ + 'https://schema.metadatacenter.org/properties/d9ed6775-3a89-4798-8022-866ac6c7508d', + ], + }, + subject_geographic_data_level_available: { + enum: [ + 'https://schema.metadatacenter.org/properties/77092eaa-e48c-4418-a367-d6716b5a1f0b', + ], + }, + data_orientation: { + enum: [ + 'https://schema.metadatacenter.org/properties/0de3ec6b-f3e9-4aa9-a367-b2205eefb92d', + ], + }, + data_type: { + enum: [ + 'https://schema.metadatacenter.org/properties/7a3d7b6c-fb4f-44a3-ac86-852b692b6458', + ], + }, + data_source: { + enum: [ + 'https://schema.metadatacenter.org/properties/4182e91d-60fc-49c8-b9bd-3721affbeced', + ], + }, + }, + additionalProperties: false, + required: [ + 'subject_data_unit_of_collection', + 'subject_data_unit_of_analysis', + 'subject_data_level_available', + 'subject_data_unit_of_collection_expected_number', + 'subject_data_unit_of_analysis_expected_number', + 'subject_geographic_data_level_collected', + 'subject_geographic_data_level_available', + 'data_orientation', + 'data_type', + 'data_source', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + subject_data_unit_of_collection: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'subject_data_unit_of_collection field schema', + description: 'subject_data_unit_of_collection field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Individual', + }, + { + label: 'Community, Group, Cluster, Population', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2022-06-02T15:11:25-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:11:25-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'subject_data_unit_of_collection', + 'schema:description': 'For studies with human subjects, is the data collected at the individual or population level?', + 'skos:prefLabel': 'Human Subject Data - Unit of Collection', + '@id': 'https://repo.metadatacenter.org/template-fields/575ca7f9-f105-4ee2-8371-924a47e4627b', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + subject_data_unit_of_analysis: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'subject_data_unit_of_analysis field schema', + description: 'subject_data_unit_of_analysis field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Individual', + }, + { + label: 'Community, Group, Cluster, Population', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2022-06-02T15:11:25-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:11:25-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'subject_data_unit_of_analysis', + 'schema:description': 'For studies with human subjects, is the data analyzed at the individual or population level?', + 'skos:prefLabel': 'Human Subject Data - Unit of Analysis', + '@id': 'https://repo.metadatacenter.org/template-fields/1a2a5819-edb2-4b4a-aaa8-ef62babde26e', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + subject_data_level_available: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'subject_data_level_available field schema', + description: 'subject_data_level_available field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Individual - Unaggregated', + }, + { + label: 'Individual - Aggregated', + }, + { + label: 'Community, Group, Cluster, Population - Unaggregated', + }, + { + label: 'Community, Group, Cluster, Population - Aggregated', + }, + { + label: 'Unaggregated', + }, + { + label: 'Aggregated', + }, + { + label: 'Aggregated, across all (population summary statistics)', + }, + { + label: 'Aggregated, by treatment/exposure group', + }, + { + label: 'Aggregated, by demographic variable(s)', + }, + { + label: 'Aggregated, by geographic variable(s)', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2022-06-02T15:11:25-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:11:25-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'subject_data_level_available', + 'schema:description': 'For studies with human subjects that will make at least some data available, will data be made available at the individual subject level or some level of aggregation?', + 'skos:prefLabel': 'Human Subject Data - Individual or Aggregated Data made available?', + '@id': 'https://repo.metadatacenter.org/template-fields/22cd3f38-fc2f-4f5a-aa8b-d6ba6b24291f', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + subject_data_unit_of_collection_expected_number: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'subject_data_unit_of_collection_expected_number field schema', + description: 'subject_data_unit_of_collection_expected_number field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'numeric', + }, + _valueConstraints: { + requiredValue: false, + numberType: 'xsd:int', + }, + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + type: 'string', + format: 'uri', + }, + }, + required: [ + '@value', + '@type', + ], + 'schema:name': 'subject_data_unit_of_collection_expected_number', + 'schema:description': 'For studies with human subjects, what is the expected number of subjects for which data will be collected? If unit of data collection is individuals this is the expected number of individuals, and if the unit of data collection is populations/clusters this is the expected number of populations/clusters.', + 'pav:createdOn': '2022-06-02T15:11:25-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:11:25-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'Human Subject Data - Expected Number of the Unit of Collection', + '@id': 'https://repo.metadatacenter.org/template-fields/e6bc8396-d2fe-4140-b23c-a294e48ef100', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + subject_data_unit_of_analysis_expected_number: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'subject_data_unit_of_analysis_expected_number field schema', + description: 'subject_data_unit_of_analysis_expected_number field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'numeric', + }, + _valueConstraints: { + requiredValue: false, + numberType: 'xsd:int', + }, + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + type: 'string', + format: 'uri', + }, + }, + required: [ + '@value', + '@type', + ], + 'schema:name': 'subject_data_unit_of_analysis_expected_number', + 'schema:description': 'For studies with human subjects, what is the expected number of subjects at the level at which data will be analyzed? If unit of data analysis is individuals this is the expected number of individuals, and if the unit of data analysis is populations/clusters this is the expected number of populations/clusters.', + 'pav:createdOn': '2022-06-02T15:11:25-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:11:25-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'Human Subject Data - Expected Number of the Unit of Analysis', + '@id': 'https://repo.metadatacenter.org/template-fields/e8e7080a-97c4-4d16-b28b-049e090d9a96', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + subject_geographic_data_level_collected: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'subject_geographic_data_level_collected field schema', + description: 'subject_geographic_data_level_collected field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Exact location', + }, + { + label: 'Census block', + }, + { + label: 'Census tract', + }, + { + label: 'Zip code', + }, + { + label: 'County', + }, + { + label: 'Sub-state region', + }, + { + label: 'State', + }, + { + label: 'Multi-state region', + }, + { + label: 'Nation', + }, + { + label: 'No geographic data will be collected', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2022-06-02T15:11:25-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:11:25-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'subject_geographic_data_level_collected', + 'schema:description': 'For studies with human subjects, will geographic data be collected? if so, what level of geographic detail will be collected?', + 'skos:prefLabel': 'Human Subject Geographic Data - Collected at what level of detail?', + '@id': 'https://repo.metadatacenter.org/template-fields/8c58a9a6-26f2-4985-89e0-cdcf2f960343', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + subject_geographic_data_level_available: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'subject_geographic_data_level_available field schema', + description: 'subject_geographic_data_level_available field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Exact location', + }, + { + label: 'Census block', + }, + { + label: 'Census tract', + }, + { + label: 'Zip code', + }, + { + label: 'County', + }, + { + label: 'Sub-state region', + }, + { + label: 'State', + }, + { + label: 'Multi-state region', + }, + { + label: 'Nation', + }, + { + label: 'No geographic data will be made available', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2022-06-02T15:11:25-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:11:25-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'subject_geographic_data_level_available', + 'schema:description': 'For studies with human subjects that collect geographic data and will make at least some data available, will geographic data be made available? if so, what level of geographic detail will be made available?', + 'skos:prefLabel': 'Human Subject Geographic Data - Available at what level of detail?', + '@id': 'https://repo.metadatacenter.org/template-fields/6a3e348f-6e83-4293-a17b-bc5194e62cca', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + data_orientation: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'data_orientation field schema', + description: 'data_orientation field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Quantitative', + }, + { + label: 'Qualitative', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2022-06-02T15:11:25-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:11:25-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'data_orientation', + 'schema:description': 'Does the study produce/collect quantitative data?, qualitative data? Choose as many as apply.', + 'skos:prefLabel': 'Is data quantitative or qualitative?', + '@id': 'https://repo.metadatacenter.org/template-fields/711b566e-5b61-4611-9c88-c8b2ea7a1c6b', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + data_type: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'data_type field schema', + description: 'data_type field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Genomic', + }, + { + label: 'Proteomic', + }, + { + label: 'Biochemical', + }, + { + label: 'Biophysical', + }, + { + label: 'Imaging', + }, + { + label: 'Interview/Focus Group', + }, + { + label: 'Interview/Focus Group - structured', + }, + { + label: 'Interview/Focus Group - semi-structured', + }, + { + label: 'Interview/Focus Group - unstructured', + }, + { + label: 'Questionnaire/Survey/Assessment', + }, + { + label: 'Questionnaire/Survey/Assessment - validated instrument', + }, + { + label: 'Questionnaire/Survey/Assessment - unvalidated instrument', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2022-06-02T15:11:25-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:11:25-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'data_type', + 'schema:description': 'What is the type of the data the study will produce/collect. Choose as many as apply.', + 'skos:prefLabel': 'Data Type', + '@id': 'https://repo.metadatacenter.org/template-fields/3b1d1bb3-ded2-4985-9917-464344e34299', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + data_source: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'data_source field schema', + description: 'data_source field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Administrative', + }, + { + label: 'Government Collected/Measured', + }, + { + label: 'Clinical/EHR', + }, + { + label: 'Laboratory', + }, + { + label: 'Researcher Collected/Measured', + }, + { + label: 'Patient-Reported', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2022-06-02T15:11:25-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-02T15:11:25-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'data_source', + 'schema:description': 'What is the source of the data the study will produce/collect. Choose as many as apply.', + 'skos:prefLabel': 'Source of Data', + '@id': 'https://repo.metadatacenter.org/template-fields/472a3b9e-4763-4a24-b0ec-af465345d820', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + }, + 'schema:name': 'Data', + 'schema:description': '', + required: [ + '@context', + '@id', + 'subject_data_unit_of_collection', + 'subject_data_unit_of_analysis', + 'subject_data_level_available', + 'subject_data_unit_of_collection_expected_number', + 'subject_data_unit_of_analysis_expected_number', + 'subject_geographic_data_level_collected', + 'subject_geographic_data_level_available', + 'data_orientation', + 'data_type', + 'data_source', + ], + 'pav:createdOn': '2023-03-22T08:32:17-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-03-22T08:32:17-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:published', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/86aeaad2-a59a-44a6-ad52-49ed509da1fb', + '@id': 'https://repo.metadatacenter.org/template-elements/62b35d48-26ad-4401-9e96-92e421ce9686', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Metadata Location': { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'Metadata location element schema', + description: 'Metadata location element schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + order: [ + 'nih_application_id', + 'other_study_websites', + ], + propertyLabels: { + other_study_websites: 'other_study_websites', + nih_application_id: 'nih_application_id', + }, + propertyDescriptions: { + other_study_websites: 'Other websites officially associated with this study that provide additional information about the study.', + 'Data Repositories': '', + 'Metadata Location - Details': '', + nih_application_id: 'DO NOT EDIT - NIH application ID; This text will be auto-populated if applicable (i.e. study is funded by NIH)', + }, + }, + properties: { + '@context': { + type: 'object', + properties: { + other_study_websites: { + enum: [ + 'https://schema.metadatacenter.org/properties/b823702e-2e9e-4b3a-ad0d-c375bc65846e', + ], + }, + nih_application_id: { + enum: [ + 'https://schema.metadatacenter.org/properties/09eb1753-f557-4d30-8ba5-d1aa5b0389f9', + ], + }, + }, + additionalProperties: false, + required: [ + 'other_study_websites', + 'nih_application_id', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + other_study_websites: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'other_study_websites field schema', + description: 'other_study_websites field schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + inputType: 'link', + }, + _valueConstraints: { + requiredValue: false, + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'pav:createdOn': '2022-06-27T11:27:32-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-27T11:27:32-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'other_study_websites', + 'schema:description': 'Other websites officially associated with this study that provide additional information about the study.', + 'skos:prefLabel': 'Other Study-Associated Websites', + '@id': 'https://repo.metadatacenter.org/template-fields/f65e7112-2b10-4a5a-b4a9-6932e3f16a38', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + nih_application_id: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'nih_application_id field schema', + description: 'nih_application_id field schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + inputType: 'textfield', + }, + _valueConstraints: { + requiredValue: false, + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + 'schema:name': 'nih_application_id', + 'schema:description': 'DO NOT EDIT - NIH application ID; This text will be auto-populated if applicable (i.e. study is funded by NIH)', + 'pav:createdOn': '2022-06-27T11:27:32-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-27T11:27:32-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'NIH Application ID', + '@id': 'https://repo.metadatacenter.org/template-fields/c1b68775-77d6-463c-ba7e-251ec7608bc0', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'schema:name': 'Metadata Location', + 'schema:description': '', + required: [ + '@context', + '@id', + 'other_study_websites', + 'nih_application_id', + ], + 'pav:createdOn': '2023-03-22T08:32:17-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-03-22T08:32:17-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'pav:version': '0.0.2', + 'bibo:status': 'bibo:draft', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/bd5bf7bf-a0f5-4d5a-8b96-bedd7019ba56', + 'pav:previousVersion': 'https://repo.metadatacenter.org/template-elements/e4107de6-4bfe-42c5-af17-360bc0bcdd1f', + '@id': 'https://repo.metadatacenter.org/template-elements/eefa09ad-8e75-4b2e-ba79-3a2c1d1338b9', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Human Treatment Applicability': { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'Human treatment applicability element schema', + description: 'Human treatment applicability element schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + order: [ + 'treatment_investigation_stage_or_type', + 'treatment_mode', + 'treatment_novelty', + 'treatment_application_level', + 'treatment_type', + ], + propertyLabels: { + treatment_investigation_stage_or_type: 'treatment_investigation_stage_or_type', + treatment_mode: 'treatment_mode', + treatment_application_level: 'treatment_application_level', + treatment_type: 'treatment_type', + treatment_novelty: 'treatment_novelty', + }, + propertyDescriptions: { + treatment_investigation_stage_or_type: "NOT APPLICABLE IF STUDY TRANSLATIONAL FOCUS IS NOT 'TREATMENT OF A CONDITION' - If the study is investigating a treatment, intervention, or solution to a human opioid or pain condition, what type of investigation is the study undertaking?", + treatment_mode: "NOT APPLICABLE IF STUDY TRANSLATIONAL FOCUS IS NOT 'TREATMENT OF A CONDITION' - Is the treatment, intervention, or solution that my study is relevant to meant to prevent the occurrance of a condition (e.g. development of a non-opioid drug for pain to prevent opioid exposure and addiction, case management and MAT for pregnant women to prevent in utero exposure to opioids, safe needle exchange center to prevent spread of blood borne diseases among people using heroin), treat an occurrance of a condition (e.g. naloxone to treat opioid overdose, physical therapy to treat existing pain from a back injury) , and/or is it a harm reduction mechanism (e.g. safe needle exchange reduces harm associated with heroin addiction/use, decriminalization of heroin possession or use reduces the harm associated with heroin addiction/use)", + treatment_application_level: "NOT APPLICABLE IF STUDY TRANSLATIONAL FOCUS IS NOT 'TREATMENT OF A CONDITION' - Is the treatment, intervention, or solution that my study is relevant to applied at the individual level (e.g. a doctor prescribes a drug or physical therapy regimen to a patient) or at the population/community/group level (e.g. a city changes good samaritan naloxone laws, or implements a safe needle exchange center, or adds park maintenance resources to the budget to provide more access to outside places to exercise)?", + treatment_type: "NOT APPLICABLE IF STUDY TRANSLATIONAL FOCUS IS NOT 'TREATMENT OF A CONDITION' - Classify the treatment, intervention, or solution the study is relevant to by broad type of intervention. Choose as many as apply", + treatment_novelty: "NOT APPLICABLE IF STUDY TRANSLATIONAL FOCUS IS NOT 'TREATMENT OF A CONDITION' - Is the treatment, intervention, or solution that my study is relevant to totally novel, is it totally established, does it have some element of novelty added to an established intervention (novel added to established, established used in a novel population, setting, or combination)?", + }, + }, + properties: { + '@context': { + type: 'object', + properties: { + treatment_investigation_stage_or_type: { + enum: [ + 'https://schema.metadatacenter.org/properties/b6108e07-a471-449d-9a13-2c9a24384424', + ], + }, + treatment_mode: { + enum: [ + 'https://schema.metadatacenter.org/properties/648f1627-d787-4abe-9fff-5d6628b143b7', + ], + }, + treatment_application_level: { + enum: [ + 'https://schema.metadatacenter.org/properties/ba361d44-0ce2-475a-b1ae-e52f78a6606b', + ], + }, + treatment_type: { + enum: [ + 'https://schema.metadatacenter.org/properties/6aa00a53-272b-40b1-8749-422fafc4661b', + ], + }, + treatment_novelty: { + enum: [ + 'https://schema.metadatacenter.org/properties/d1342545-4fcb-48b0-a3c1-06e7a487d3c6', + ], + }, + }, + additionalProperties: false, + required: [ + 'treatment_investigation_stage_or_type', + 'treatment_mode', + 'treatment_novelty', + 'treatment_application_level', + 'treatment_type', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + treatment_investigation_stage_or_type: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'treatment_investigation_stage_or_type field schema', + description: 'treatment_investigation_stage_or_type field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'target discovery', + }, + { + label: 'target mechanism', + }, + { + label: 'treatment discovery', + }, + { + label: 'treatment mechanism', + }, + { + label: 'treatment efficacy', + }, + { + label: 'differential treatment efficacy', + }, + { + label: 'treatment implementation', + }, + { + label: 'treatment availability or accessibility', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2022-06-27T11:50:55-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-27T11:50:55-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'treatment_investigation_stage_or_type', + 'schema:description': "NOT APPLICABLE IF STUDY TRANSLATIONAL FOCUS IS NOT 'TREATMENT OF A CONDITION' - If the study is investigating a treatment, intervention, or solution to a human opioid or pain condition, what type of investigation is the study undertaking?", + 'skos:prefLabel': 'Treatment Investigation Stage or Type', + '@id': 'https://repo.metadatacenter.org/template-fields/f56ae296-fdff-438f-aa94-e7cff7250a25', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + treatment_mode: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'treatment_mode field schema', + description: 'treatment_mode field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Preventive (prevention of an occurrence)', + }, + { + label: 'Therapeutic (treating an occurrence)', + }, + { + label: 'Harm Reduction (preventing more of an occurrence, or preventing harm from an occurrence)', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2022-06-27T11:50:55-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-27T11:50:55-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'treatment_mode', + 'schema:description': "NOT APPLICABLE IF STUDY TRANSLATIONAL FOCUS IS NOT 'TREATMENT OF A CONDITION' - Is the treatment, intervention, or solution that my study is relevant to meant to prevent the occurrance of a condition (e.g. development of a non-opioid drug for pain to prevent opioid exposure and addiction, case management and MAT for pregnant women to prevent in utero exposure to opioids, safe needle exchange center to prevent spread of blood borne diseases among people using heroin), treat an occurrance of a condition (e.g. naloxone to treat opioid overdose, physical therapy to treat existing pain from a back injury) , and/or is it a harm reduction mechanism (e.g. safe needle exchange reduces harm associated with heroin addiction/use, decriminalization of heroin possession or use reduces the harm associated with heroin addiction/use)", + 'skos:prefLabel': 'Treatment Mode', + '@id': 'https://repo.metadatacenter.org/template-fields/38c5014c-b0fc-4a4f-b5ae-32c5198f56dc', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + treatment_application_level: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'treatment_application_level field schema', + description: 'treatment_application_level field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Individual', + }, + { + label: 'Population', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2022-06-27T11:50:55-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-27T11:50:55-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'treatment_application_level', + 'schema:description': "NOT APPLICABLE IF STUDY TRANSLATIONAL FOCUS IS NOT 'TREATMENT OF A CONDITION' - Is the treatment, intervention, or solution that my study is relevant to applied at the individual level (e.g. a doctor prescribes a drug or physical therapy regimen to a patient) or at the population/community/group level (e.g. a city changes good samaritan naloxone laws, or implements a safe needle exchange center, or adds park maintenance resources to the budget to provide more access to outside places to exercise)?", + 'skos:prefLabel': 'Is the Treatment given/applied to individuals or populations?', + '@id': 'https://repo.metadatacenter.org/template-fields/db109103-07c6-4898-ade3-e5cca17ca8b9', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + treatment_type: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'treatment_type field schema', + description: 'treatment_type field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'drug', + }, + { + label: 'non-opioid drug', + }, + { + label: 'opioid drug', + }, + { + label: 'non-biologic drug', + }, + { + label: 'biologic drug', + }, + { + label: 'non-drug', + }, + { + label: 'device', + }, + { + label: 'behavioral', + }, + { + label: 'psychotherapy', + }, + { + label: 'group therapy', + }, + { + label: 'physical therapy', + }, + { + label: 'exercise', + }, + { + label: 'education', + }, + { + label: 'community resources/supports', + }, + { + label: 'economic supports', + }, + { + label: 'housing supports', + }, + { + label: 'case management', + }, + { + label: 'environmental (indoors)', + }, + { + label: 'environmental (outdoors)', + }, + { + label: 'law/policy', + }, + { + label: 'surgical procedure', + }, + { + label: 'nutritional', + }, + { + label: 'nutritional supplement', + }, + { + label: 'gene therapy', + }, + { + label: 'immunotherapy', + }, + { + label: 'electrotherapy', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2022-06-27T11:50:55-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-27T11:50:55-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'treatment_type', + 'schema:description': "NOT APPLICABLE IF STUDY TRANSLATIONAL FOCUS IS NOT 'TREATMENT OF A CONDITION' - Classify the treatment, intervention, or solution the study is relevant to by broad type of intervention. Choose as many as apply", + 'skos:prefLabel': 'Treatment Type', + '@id': 'https://repo.metadatacenter.org/template-fields/1a6249df-7d7f-4e12-92ba-b133e21a20d7', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + treatment_novelty: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'treatment_novelty field schema', + description: 'treatment_novelty field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Novel', + }, + { + label: 'Novel, added to established', + }, + { + label: 'Established', + }, + { + label: 'Established, used in novel population, setting, or combination', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2022-06-27T11:50:55-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-06-27T11:50:55-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'treatment_novelty', + 'schema:description': "NOT APPLICABLE IF STUDY TRANSLATIONAL FOCUS IS NOT 'TREATMENT OF A CONDITION' - Is the treatment, intervention, or solution that my study is relevant to totally novel, is it totally established, does it have some element of novelty added to an established intervention (novel added to established, established used in a novel population, setting, or combination)?", + 'skos:prefLabel': 'Treatment Novelty', + '@id': 'https://repo.metadatacenter.org/template-fields/55a71319-4451-41d1-8a60-67b44ddb57a3', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + }, + 'schema:name': 'Human Treatment Applicability', + 'schema:description': "NOT APPLICABLE IF STUDY TRANSLATIONAL FOCUS IS NOT 'TREATMENT OF A CONDITION'", + required: [ + '@context', + '@id', + 'treatment_investigation_stage_or_type', + 'treatment_mode', + 'treatment_novelty', + 'treatment_application_level', + 'treatment_type', + ], + 'pav:createdOn': '2023-03-22T08:32:17-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-03-22T08:32:17-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'pav:version': '0.0.2', + 'bibo:status': 'bibo:draft', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/5f7a8f5f-245f-4953-9d9b-bec107155919', + 'pav:previousVersion': 'https://repo.metadatacenter.org/template-elements/4c14aca8-ffe5-46b7-a8bb-08748b9216dd', + '@id': 'https://repo.metadatacenter.org/template-elements/c27d53f4-b2dd-4244-b775-144044827a94', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Study Translational Focus': { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'Study translational focus element schema', + description: 'Study translational focus element schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + order: [ + 'study_translational_focus', + 'study_translational_topic_grouping', + ], + propertyLabels: { + study_translational_topic_grouping: 'study_translational_topic_grouping', + study_translational_focus: 'study_translational_focus', + }, + propertyDescriptions: { + study_translational_topic_grouping: "What types of determinants and/or mechanisms related to human opioid use or pain conditions is the study investigating and/or measuring (e.g. A study investigating differential pain/nociception signaling in persons living in neighborhoods with high versus low social cohesion might choose both 'Biology and Health' and 'Social Determinants'). Choose as many as apply.", + study_translational_focus: 'Whether the study is primarily focused on learning more about a human opioid or pain CONDITION or on discovering, or learning more about a TREATMENT OF A CONDITION, intervention, or solution for a human opioid or pain condition. This may be quite simple to infer for human subject studies. For studies not involving human subjects, please consider how/where the study will most substantially contribute to the HEAL Initiative translational purpose of learning more about human opioid and pain conditions and driving development of solutions to these conditions. An example of a study focusing on the treatment of a condition is The National Drug Abuse Treatment Clinical Trials Network, where the primary focus is testing pharmacologic and behavioral strategies to improve Opioid Use Disorder pharmacotherapy treatment retention and outcomes. Whereas an example of a study focusing on a specific condition is the Neuroplasticity in Maternal Opioid Use Disorder study, where the end goal is to validate the importance of taking advantage of the neuroplasticity in the perinatal period to optimize outcomes for mothers with OUD.Choose one.', + }, + }, + properties: { + '@context': { + type: 'object', + properties: { + study_translational_topic_grouping: { + enum: [ + 'https://schema.metadatacenter.org/properties/3642f6be-ec33-414d-ace1-fe5c7c5e10e6', + ], + }, + study_translational_focus: { + enum: [ + 'https://schema.metadatacenter.org/properties/55184a53-bd1d-449f-a0f8-9df12476224a', + ], + }, + }, + additionalProperties: false, + required: [ + 'study_translational_focus', + 'study_translational_topic_grouping', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + study_translational_topic_grouping: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'study_translational_topic_grouping field schema', + description: 'study_translational_topic_grouping field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Biology and Health', + }, + { + label: 'Mental Health', + }, + { + label: 'Social Determinants', + }, + { + label: 'Public Attitudes or Stigma', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2022-09-01T12:16:45-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-09-01T12:16:45-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'study_translational_topic_grouping', + 'schema:description': "What types of determinants and/or mechanisms related to human opioid use or pain conditions is the study investigating and/or measuring (e.g. A study investigating differential pain/nociception signaling in persons living in neighborhoods with high versus low social cohesion might choose both 'Biology and Health' and 'Social Determinants'). Choose as many as apply.", + 'skos:prefLabel': 'Types of determinants/mechanisms the study is investigating', + '@id': 'https://repo.metadatacenter.org/template-fields/12acc429-e084-49d5-9ce1-3d88245a07df', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + study_translational_focus: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'study_translational_focus field schema', + description: 'study_translational_focus field schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + literals: [ + { + label: 'Condition', + }, + { + label: 'Treatment of a Condition', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + 'schema:name': 'study_translational_focus', + 'schema:description': 'Whether the study is primarily focused on learning more about a human opioid or pain CONDITION or on discovering, or learning more about a TREATMENT OF A CONDITION, intervention, or solution for a human opioid or pain condition. This may be quite simple to infer for human subject studies. For studies not involving human subjects, please consider how/where the study will most substantially contribute to the HEAL Initiative translational purpose of learning more about human opioid and pain conditions and driving development of solutions to these conditions. An example of a study focusing on the treatment of a condition is The National Drug Abuse Treatment Clinical Trials Network, where the primary focus is testing pharmacologic and behavioral strategies to improve Opioid Use Disorder pharmacotherapy treatment retention and outcomes. Whereas an example of a study focusing on a specific condition is the Neuroplasticity in Maternal Opioid Use Disorder study, where the end goal is to validate the importance of taking advantage of the neuroplasticity in the perinatal period to optimize outcomes for mothers with OUD.Choose one.', + 'pav:createdOn': '2022-09-01T12:16:45-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2022-09-01T12:16:45-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'Study Translational Focus', + '@id': 'https://repo.metadatacenter.org/template-fields/624f2e6f-4632-4ecb-b680-c1a8a23ad50a', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'schema:name': 'Study Translational Focus', + 'schema:description': '', + required: [ + '@context', + '@id', + 'study_translational_focus', + 'study_translational_topic_grouping', + ], + 'pav:createdOn': '2023-03-22T08:32:17-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-03-22T08:32:17-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'pav:version': '0.0.3', + 'bibo:status': 'bibo:draft', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/95b3318d-2abb-4424-81af-27dfc3343555', + 'pav:previousVersion': 'https://repo.metadatacenter.org/template-elements/bd987dd6-052e-456e-85d0-9a026aeed295', + '@id': 'https://repo.metadatacenter.org/template-elements/67a0d897-3c7c-4c6f-8ce0-97b80477b3a5', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + documentation_link: { + '@type': 'https://schema.metadatacenter.org/core/StaticTemplateField', + '@context': { + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + }, + type: 'object', + title: 'documentation_link field schema', + description: 'documentation_link field schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + inputType: 'section-break', + _content: null, + }, + 'pav:createdOn': '2023-03-22T08:32:17-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-03-22T08:32:17-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:description': 'For guidance on completing this form, please visit: https://bit.ly/HEAL-CEDAR', + additionalProperties: false, + 'schema:name': 'documentation_link', + '@id': 'https://repo.metadatacenter.org/template-fields/f9fc16f3-3dc8-48c0-8891-68b236e48c0f', + 'skos:prefLabel': 'For guidance on completing this form, please visit: https://bit.ly/HEAL-CEDAR', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Minimal Info': { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'Minimal info element schema', + description: 'Minimal info element schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + order: [ + 'study_name', + 'study_description', + 'alternative_study_name', + 'alternative_study_description', + ], + propertyLabels: { + study_name: 'study_name', + study_description: 'study_description', + alternative_study_name: 'alternative_study_name', + alternative_study_description: 'alternative_study_description', + }, + propertyDescriptions: { + study_name: 'The title or name of the study. For NIH-funded studies, this will generally be equivalent to the NIH application ID title.', + study_description: "The “Study Description or Abstract” auto-populates with a short summary of your HEAL-funded study that is written by NIH HEAL Initiative staff and published on the [NIH HEAL Initiative Funded Projects website](https://heal.nih.gov/funding/awarded). If a summary of your study written by NIH HEAL Initiative staff is not available, this field will be auto-populated with the text of your study's abstract as it appears on [NIH RePORTER](https://reporter.nih.gov/). Ensure your study description is correct. If your study description is incorrect, contact heal-support@datacommons.io immediately, and do NOT proceed with filling out the CEDAR form until instructed to. Do NOT edit pre-populated fields. They will NOT save. This field will be available to free text search and discovery tools on the Platform and the text will be human readable in your study's Platform study table entry and on your study's Platform study page. This will make your study more discoverable by Platform Users, and will help the Platform Users who find your study to identify your study, learn something about it, and decide whether it is of clear interest for their purposes.", + alternative_study_name: 'Study nickname, alternative title, abbreviation, or acronym (e.g. many people shorten the name of the HEAL Adolescent Brain Cognitive Development study to ABCD).', + alternative_study_description: "If your study is registered on ClinicalTrials.gov and you provided an NCT ID when you registered your study on the HEAL Data Platform, this field will be auto-populated with the text from your study's Detailed Description as it appears on [ClinicalTrials.gov](https://clinicaltrials.gov/). Otherwise, this field will be empty when you first open your form. This is a free text field - Type directly into the field or copy and paste into it to answer - Currently the form is configured to accept just one alternative study description. Studies can be described in many ways, at many levels of detail - use this field to provide an alternative description to one that was auto-populated in the 'Study Description' field above - an alternative description may for example include more or different details about the study. You are not required to provide an alternative study description, as the study description auto-populated from the NIH HEAL Funded Projects website or from NIH RePORTER will appear on the Platform, regardless of these alternative values. However, there are good reasons to provide one: 1.) The text is searchable via the Platform’s free-text search and discovery tools, so key terms and/or alternative study name structures (including study name acronyms) may make your study more findable, and 2.) The text may be visible on your study's Platform study page in the future, allowing users to read it and better determine whether your study is of interest. Note This field will be available to free text search and discovery tools on the Platform and the text may appear on your study's Platform study page. This will make your study more discoverable by Platform Users, and may also help the Platform Users who find your study to identify your study, learn something about it, and decide whether it is of clear interest for their purposes.", + }, + }, + properties: { + '@context': { + type: 'object', + properties: { + study_name: { + enum: [ + 'https://schema.metadatacenter.org/properties/e5f0a1a1-8232-43e1-b89d-d178efe5cc71', + ], + }, + study_description: { + enum: [ + 'https://schema.metadatacenter.org/properties/4511545c-3a17-4a41-ae33-67be643faf4b', + ], + }, + alternative_study_name: { + enum: [ + 'https://schema.metadatacenter.org/properties/ac7ee813-4406-4c77-b30a-b88e13d0fb15', + ], + }, + alternative_study_description: { + enum: [ + 'https://schema.metadatacenter.org/properties/2f2c4ea4-8fd4-4fb9-bdd0-690cb070e77c', + ], + }, + }, + additionalProperties: false, + required: [ + 'study_name', + 'study_description', + 'alternative_study_name', + 'alternative_study_description', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + study_name: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'study_name field schema', + description: 'study_name field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'textfield', + }, + _valueConstraints: { + requiredValue: false, + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + 'schema:name': 'study_name', + 'schema:description': 'The title or name of the study. For NIH-funded studies, this will generally be equivalent to the NIH application ID title.', + 'pav:createdOn': '2023-02-07T10:18:55-08:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-02-07T10:18:55-08:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'Study Title or Name', + '@id': 'https://repo.metadatacenter.org/template-fields/c56d077f-508f-433f-a3ae-deca560dfeb7', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + study_description: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'study_description field schema', + description: 'study_description field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'textfield', + }, + _valueConstraints: { + requiredValue: false, + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + 'schema:name': 'study_description', + 'schema:description': "The “Study Description or Abstract” auto-populates with a short summary of your HEAL-funded study that is written by NIH HEAL Initiative staff and published on the [NIH HEAL Initiative Funded Projects website](https://heal.nih.gov/funding/awarded). If a summary of your study written by NIH HEAL Initiative staff is not available, this field will be auto-populated with the text of your study's abstract as it appears on [NIH RePORTER](https://reporter.nih.gov/). Ensure your study description is correct. If your study description is incorrect, contact heal-support@datacommons.io immediately, and do NOT proceed with filling out the CEDAR form until instructed to. Do NOT edit pre-populated fields. They will NOT save. This field will be available to free text search and discovery tools on the Platform and the text will be human readable in your study's Platform study table entry and on your study's Platform study page. This will make your study more discoverable by Platform Users, and will help the Platform Users who find your study to identify your study, learn something about it, and decide whether it is of clear interest for their purposes.", + 'pav:createdOn': '2023-02-07T10:18:55-08:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-02-07T10:18:55-08:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'Study Description or Abstract', + '@id': 'https://repo.metadatacenter.org/template-fields/e19296b2-c89c-4eef-a737-f6efc56b6a3b', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + alternative_study_name: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'alternative_study_name field schema', + description: 'alternative_study_name field schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + inputType: 'textfield', + }, + _valueConstraints: { + requiredValue: false, + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + 'schema:name': 'alternative_study_name', + 'schema:description': 'Study nickname, alternative title, abbreviation, or acronym (e.g. many people shorten the name of the HEAL Adolescent Brain Cognitive Development study to ABCD).', + 'pav:createdOn': '2023-02-07T10:18:55-08:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-02-07T10:18:55-08:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'Alternative Study Title or Name', + '@id': 'https://repo.metadatacenter.org/template-fields/6b479c1e-2cb0-42e9-9eda-01df915d5dff', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + alternative_study_description: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'alternative_study_description field schema', + description: 'alternative_study_description field schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + inputType: 'textfield', + }, + _valueConstraints: { + requiredValue: false, + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + 'schema:name': 'alternative_study_description', + 'schema:description': "If your study is registered on ClinicalTrials.gov and you provided an NCT ID when you registered your study on the HEAL Data Platform, this field will be auto-populated with the text from your study's Detailed Description as it appears on [ClinicalTrials.gov](https://clinicaltrials.gov/). Otherwise, this field will be empty when you first open your form. This is a free text field - Type directly into the field or copy and paste into it to answer - Currently the form is configured to accept just one alternative study description. Studies can be described in many ways, at many levels of detail - use this field to provide an alternative description to one that was auto-populated in the 'Study Description' field above - an alternative description may for example include more or different details about the study. You are not required to provide an alternative study description, as the study description auto-populated from the NIH HEAL Funded Projects website or from NIH RePORTER will appear on the Platform, regardless of these alternative values. However, there are good reasons to provide one: 1.) The text is searchable via the Platform’s free-text search and discovery tools, so key terms and/or alternative study name structures (including study name acronyms) may make your study more findable, and 2.) The text may be visible on your study's Platform study page in the future, allowing users to read it and better determine whether your study is of interest. Note This field will be available to free text search and discovery tools on the Platform and the text may appear on your study's Platform study page. This will make your study more discoverable by Platform Users, and may also help the Platform Users who find your study to identify your study, learn something about it, and decide whether it is of clear interest for their purposes.", + 'pav:createdOn': '2023-02-07T10:18:55-08:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-02-07T10:18:55-08:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'Alternative Study Description or Abstract', + '@id': 'https://repo.metadatacenter.org/template-fields/2b63f07f-f903-4218-90c6-08aee6f7e45f', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'schema:name': 'Minimal Info', + 'schema:description': '', + required: [ + '@context', + '@id', + 'study_name', + 'study_description', + 'alternative_study_name', + 'alternative_study_description', + ], + 'pav:createdOn': '2023-03-22T08:32:17-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-03-22T08:32:17-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'pav:version': '0.0.4', + 'bibo:status': 'bibo:draft', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/232c87ee-251e-455d-80ce-37a97c8ff1f9', + 'pav:previousVersion': 'https://repo.metadatacenter.org/template-elements/dca84a17-a6a7-4759-8d13-b33e9db30061', + '@id': 'https://repo.metadatacenter.org/template-elements/ef15ed8d-709d-4f4b-9a07-0952e739b73b', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Study Type': { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'Study type element schema', + description: 'Study type element schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + order: [ + 'study_stage', + 'study_primary_or_secondary', + 'study_observational_or_experimental', + 'study_subject_type', + 'study_type_design', + ], + propertyLabels: { + study_stage: 'study_stage', + study_primary_or_secondary: 'study_primary_or_secondary', + study_observational_or_experimental: 'study_observational_or_experimental', + study_subject_type: 'study_subject_type', + study_type_design: 'study_type_design', + }, + propertyDescriptions: { + study_stage: 'The category of research being conducted', + study_primary_or_secondary: 'Is the study collecting data itself to analyze and draw conclusions or is it leveraging data collected by other entities to analyze and draw conclusions.', + study_observational_or_experimental: 'Whether the study is observational (no explicit intervention) or experimental (some explicit intervention).', + study_subject_type: 'What is the actual species or entity that is experimentally or observationally studied in the research; each HEAL study will have translational relevance to humans, but not all HEAL studies directly study humans.', + study_type_design: 'The overarching study type and more granular study design. Choose as many as apply.', + }, + }, + properties: { + '@context': { + type: 'object', + properties: { + study_stage: { + enum: [ + 'https://schema.metadatacenter.org/properties/c178c428-feab-4e16-b386-c5ca0457f136', + ], + }, + study_primary_or_secondary: { + enum: [ + 'https://schema.metadatacenter.org/properties/11ba188c-0baa-43e9-84dc-bc8c4e100a41', + ], + }, + study_observational_or_experimental: { + enum: [ + 'https://schema.metadatacenter.org/properties/c0129f9d-e5d3-41e7-8927-9523db54ffb0', + ], + }, + study_subject_type: { + enum: [ + 'https://schema.metadatacenter.org/properties/154c4687-6f3c-42ac-9f54-926a8357618d', + ], + }, + study_type_design: { + enum: [ + 'https://schema.metadatacenter.org/properties/6d5c5a5d-c7bc-4d76-9b4a-1d1438624e5e', + ], + }, + }, + additionalProperties: false, + required: [ + 'study_stage', + 'study_subject_type', + 'study_primary_or_secondary', + 'study_observational_or_experimental', + 'study_type_design', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + study_stage: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@id': 'https://repo.metadatacenter.org/template-fields/3a88c634-9f05-4e2e-8d6d-8850a3bd53dd', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'study_stage field schema', + description: 'study_stage field schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Pre-Research/Protocol Development', + }, + { + label: 'Basic Research', + }, + { + label: 'Pre-Clinical Research', + }, + { + label: 'Clinical Research', + }, + { + label: 'Implementation Research', + }, + { + label: 'Post-market Research', + }, + { + label: 'Buisness Development', + }, + { + label: 'Epidemiologic Research', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2023-02-07T07:36:09-08:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-02-07T07:36:09-08:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'study_stage', + 'schema:description': 'The category of research being conducted', + 'skos:prefLabel': 'Category or Type/Stage of Study Research', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + study_primary_or_secondary: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'study_primary_or_secondary field schema', + description: 'study_primary_or_secondary field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + literals: [ + { + label: 'Primary Research', + }, + { + label: 'Secondary Research', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + 'schema:name': 'study_primary_or_secondary', + 'schema:description': 'Is the study collecting data itself to analyze and draw conclusions or is it leveraging data collected by other entities to analyze and draw conclusions.', + 'pav:createdOn': '2023-02-07T07:36:09-08:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-02-07T07:36:09-08:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'Is the study conducting primary or secondary research?', + '@id': 'https://repo.metadatacenter.org/template-fields/54ca8a55-23d9-43fb-bb3a-d053dbd4e82a', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + study_observational_or_experimental: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'study_observational_or_experimental field schema', + description: 'study_observational_or_experimental field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + literals: [ + { + label: 'Observational Research', + }, + { + label: 'Experimental Research', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + 'schema:name': 'study_observational_or_experimental', + 'schema:description': 'Whether the study is observational (no explicit intervention) or experimental (some explicit intervention).', + 'pav:createdOn': '2023-02-07T07:36:09-08:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-02-07T07:36:09-08:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'skos:prefLabel': 'Is the study conducting observational or experimental research?', + '@id': 'https://repo.metadatacenter.org/template-fields/a89c824b-89c7-47a5-972e-b9b610a90652', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + study_subject_type: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@id': 'https://repo.metadatacenter.org/template-fields/a7374a24-0e67-4a16-9d43-2fd152a1c6f0', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'study_subject_type field schema', + description: 'study_subject_type field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Human', + }, + { + label: 'Animal', + }, + { + label: 'Human cell/tissue/tissue model', + }, + { + label: 'Animal cell/tissue/tissue model', + }, + { + label: 'Molecule (e.g. chemical/protein engineering, protein crystallization)', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2023-02-07T07:36:09-08:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-02-07T07:36:09-08:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'study_subject_type', + 'schema:description': 'What is the actual species or entity that is experimentally or observationally studied in the research; each HEAL study will have translational relevance to humans, but not all HEAL studies directly study humans.', + 'skos:prefLabel': 'Study Subject Type', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + study_type_design: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@id': 'https://repo.metadatacenter.org/template-fields/94abf96b-850d-4d2f-aa8a-c8293fab6d46', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'study_type_design field schema', + description: 'study_type_design field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Basic Research - Theory/Modeling', + }, + { + label: 'Basic Research - Applied', + }, + { + label: 'Basic Research - Method/Protocol development', + }, + { + label: 'Basic Research - Animal study', + }, + { + label: 'Basic Research - Cell study', + }, + { + label: 'Basic Research – Genetic study', + }, + { + label: 'Basic Research – Biochemistry study', + }, + { + label: 'Basic Research – Biophysical study', + }, + { + label: 'Basic Research – Gene sequencing', + }, + { + label: 'Basic Research – Genetic Engineering', + }, + { + label: 'Basic Research – Material Development', + }, + { + label: 'Basic Research – Device Development', + }, + { + label: 'Basic Research – Business Model Development (e.g. SBIR)', + }, + { + label: 'Basic Research – Small molecule screen', + }, + { + label: 'Basic Research – High throughput screen', + }, + { + label: 'Basic Research – Screen, other', + }, + { + label: 'Clinical Research – Phase I', + }, + { + label: 'Clinical Research – Phase II', + }, + { + label: 'Clinical Research – Phase III', + }, + { + label: 'Clinical Research – Phase IV', + }, + { + label: 'Clinical Research – Therapy/drug study without intervention', + }, + { + label: 'Clinical Research – Case Report or Series', + }, + { + label: 'Preclinical Research', + }, + { + label: 'Randomized Control Trial', + }, + { + label: 'Pre/Post', + }, + { + label: 'Stepped Wedge', + }, + { + label: 'Regression Discontinuity', + }, + { + label: 'Difference in Differences', + }, + { + label: 'Cross-over', + }, + { + label: 'Natural Experiment', + }, + { + label: 'Cohort, prospective', + }, + { + label: 'Cohort, retrospective', + }, + { + label: 'Cohort – panel, longitudinal', + }, + { + label: 'Cohort – cross-sectional, longitudinal', + }, + { + label: 'Cohort – cross-sectional, single time-point', + }, + { + label: 'Case control', + }, + { + label: 'Ecological', + }, + { + label: 'Monitoring/surveillance', + }, + { + label: 'Meta-analysis', + }, + { + label: 'Review', + }, + { + label: 'Review, Systematic', + }, + { + label: 'Review, Simple (narrative)', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2023-02-07T07:36:09-08:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-02-07T07:36:09-08:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'study_type_design', + 'schema:description': 'The overarching study type and more granular study design. Choose as many as apply.', + 'skos:prefLabel': 'Study Type/Design', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + }, + 'schema:name': 'Study Type', + 'schema:description': '', + required: [ + '@context', + '@id', + 'study_stage', + 'study_subject_type', + 'study_primary_or_secondary', + 'study_observational_or_experimental', + 'study_type_design', + ], + 'pav:createdOn': '2023-03-22T08:32:17-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-03-22T08:32:17-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'pav:version': '0.0.4', + 'bibo:status': 'bibo:draft', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/c2117bde-f626-4a6f-9ca5-848e206eaa49', + 'pav:previousVersion': 'https://repo.metadatacenter.org/template-elements/b13fda90-615f-42ea-9828-334176e1ffbe', + '@id': 'https://repo.metadatacenter.org/template-elements/b54fa415-5ddd-4dbc-8c6f-93cb59bdc212', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Human Subject Applicability': { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + type: 'object', + title: 'Human subject applicability element schema', + description: 'Human subject applicability element schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + order: [ + 'gender_applicability', + 'sexual_identity_applicability', + 'biological_sex_applicability', + 'age_applicability', + 'irb_vulnerability_conditions_applicability', + 'geographic_applicability', + ], + propertyLabels: { + irb_vulnerability_conditions_applicability: 'irb_vulnerability_conditions_applicability', + age_applicability: 'age_applicability', + geographic_applicability: 'geographic_applicability', + sexual_identity_applicability: 'sexual_identity_applicability', + biological_sex_applicability: 'biological_sex_applicability', + gender_applicability: 'gender_applicability', + }, + propertyDescriptions: { + irb_vulnerability_conditions_applicability: 'Considering the study in a translational context, which special IRB human vulnerability conditions are the study results intended to address or apply to?', + age_applicability: 'Considering the study in a translational context, to humans of which age or developmental stage are the study results intended to apply and/or likely to generalize to.', + geographic_applicability: 'For studies with human subjects, from which geographic location(s) are subjects recruited. If subjects are recruited in the US nationally, choose only US - national. If subject are recruited in the US only in specific state(s), choose US - Specific States, then please also select the abbreviation of each of the specific states from which subjects are recruited. If subjects are recruited in the US from specific county(ies) within specific state(s), please choose US - Specific States and US - Specific Counties, and choose the abbreviation of each specific state from which subjects are recruited.', + sexual_identity_applicability: 'Considering the study in a translational context, to humans of which sexual identity(ies) are the study results intended to apply and/or likely to generalize to.', + biological_sex_applicability: 'Considering the study in a translational context, to humans of which biological sexes are the study results intended to apply and/or likely to generalize to.', + gender_applicability: 'Considering the study in a translational context, to humans of which gender identity(ies) are the study results intended to apply and/or likely to generalize to.', + }, + }, + properties: { + '@context': { + type: 'object', + properties: { + irb_vulnerability_conditions_applicability: { + enum: [ + 'https://schema.metadatacenter.org/properties/b3f1e63b-447d-4aaf-ac03-3cff035a7f58', + ], + }, + age_applicability: { + enum: [ + 'https://schema.metadatacenter.org/properties/0a659aab-cde0-4f5e-a7e6-ae7d6b9745ec', + ], + }, + geographic_applicability: { + enum: [ + 'https://schema.metadatacenter.org/properties/fde0145f-de8b-4875-9ab5-1c6dc2f1d9f4', + ], + }, + sexual_identity_applicability: { + enum: [ + 'https://schema.metadatacenter.org/properties/310ec9a1-096b-4c45-9453-0bb617800397', + ], + }, + biological_sex_applicability: { + enum: [ + 'https://schema.metadatacenter.org/properties/f9f7c83f-f218-4e10-ab62-fd145e8ad4c1', + ], + }, + gender_applicability: { + enum: [ + 'https://schema.metadatacenter.org/properties/5529ad6f-8b89-4caf-bfda-c85caf6d513a', + ], + }, + }, + additionalProperties: false, + required: [ + 'irb_vulnerability_conditions_applicability', + 'age_applicability', + 'geographic_applicability', + 'sexual_identity_applicability', + 'gender_applicability', + 'biological_sex_applicability', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + irb_vulnerability_conditions_applicability: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'irb_vulnerability_conditions_applicability field schema', + description: 'irb_vulnerability_conditions_applicability field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Pregnant women', + }, + { + label: 'Human fetuses', + }, + { + label: 'Neonates', + }, + { + label: 'Prisoners', + }, + { + label: 'Children', + }, + { + label: 'Individuals with physical disabilities', + }, + { + label: 'Individuals with mental disabilities or cognitive impairments', + }, + { + label: 'Economically disadvantaged', + }, + { + label: 'Socially disadvantaged', + }, + { + label: 'Terminally ill or very sick', + }, + { + label: 'Racial or ethnic minorities', + }, + { + label: 'Institutionalized persons (for example, persons in correctional facilities, nursing homes or mental health facilities)', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2023-02-07T09:05:16-08:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-02-07T09:05:16-08:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'irb_vulnerability_conditions_applicability', + 'schema:description': 'Considering the study in a translational context, which special IRB human vulnerability conditions are the study results intended to address or apply to?', + 'skos:prefLabel': 'Do the results of your study have special applicability for humans of specific vulnerability condition(s)? If so, mark all special vulnerability condition(s) for which the results of your study have special applicability.', + '@id': 'https://repo.metadatacenter.org/template-fields/4bbd3386-06fe-4578-bcf6-388900b7439c', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + age_applicability: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'age_applicability field schema', + description: 'age_applicability field schema generated by the CEDAR Template Editor 2.6.18', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Fetus', + }, + { + label: 'Infant, newborn (Birth to 1 month)', + }, + { + label: 'Infant (1 to 23 months)', + }, + { + label: 'Child, preschool (2 to 5 years)', + }, + { + label: 'Child (6 to 12 years)', + }, + { + label: 'Adolescent (13 to 18 years)', + }, + { + label: 'Adult (19 to 44 years)', + }, + { + label: 'Middle aged adult (45 to 64 years)', + }, + { + label: 'Aged adult (65 to 79 years)', + }, + { + label: 'Aged, 80 and over (80 years and over)', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2023-02-07T09:05:16-08:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-02-07T09:05:16-08:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'age_applicability', + 'schema:description': 'Considering the study in a translational context, to humans of which age or developmental stage are the study results intended to apply and/or likely to generalize to.', + 'skos:prefLabel': 'Do the results of your study have special applicability for humans of specific age/developmental stage(s)? If so, mark all age/developmental stage(s) for which the results of your study have special applicability.', + '@id': 'https://repo.metadatacenter.org/template-fields/ca4cb3de-19ab-4e23-a6a7-57f6a8d240d9', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + geographic_applicability: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@id': 'https://repo.metadatacenter.org/template-fields/02f82741-9e64-4b70-bb0a-74da4dee34bb', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'geographic_applicability field schema', + description: 'geographic_applicability field schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Non-US', + }, + { + label: 'US - National', + }, + { + label: 'US - Specific states', + }, + { + label: 'US - Specific counties', + }, + { + label: 'AK', + }, + { + label: 'AL', + }, + { + label: 'AR', + }, + { + label: 'AZ', + }, + { + label: 'CA', + }, + { + label: 'CO', + }, + { + label: 'CT', + }, + { + label: 'DE', + }, + { + label: 'FL', + }, + { + label: 'GA', + }, + { + label: 'HI', + }, + { + label: 'IA', + }, + { + label: 'ID', + }, + { + label: 'IL', + }, + { + label: 'IN', + }, + { + label: 'KS', + }, + { + label: 'KY', + }, + { + label: 'LA', + }, + { + label: 'MA', + }, + { + label: 'MD', + }, + { + label: 'ME', + }, + { + label: 'MI', + }, + { + label: 'MN', + }, + { + label: 'MO', + }, + { + label: 'MS', + }, + { + label: 'MT', + }, + { + label: 'NC', + }, + { + label: 'ND', + }, + { + label: 'NE', + }, + { + label: 'NH', + }, + { + label: 'NJ', + }, + { + label: 'NM', + }, + { + label: 'NV', + }, + { + label: 'NY', + }, + { + label: 'OH', + }, + { + label: 'OK', + }, + { + label: 'OR', + }, + { + label: 'PA', + }, + { + label: 'RI', + }, + { + label: 'SC', + }, + { + label: 'SD', + }, + { + label: 'TN', + }, + { + label: 'TX', + }, + { + label: 'UT', + }, + { + label: 'VA', + }, + { + label: 'VT', + }, + { + label: 'WA', + }, + { + label: 'WI', + }, + { + label: 'WV', + }, + { + label: 'WY', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2023-02-07T09:05:16-08:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-02-07T09:05:16-08:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'geographic_applicability', + 'schema:description': 'For studies with human subjects, from which geographic location(s) are subjects recruited. If subjects are recruited in the US nationally, choose only US - national. If subject are recruited in the US only in specific state(s), choose US - Specific States, then please also select the abbreviation of each of the specific states from which subjects are recruited. If subjects are recruited in the US from specific county(ies) within specific state(s), please choose US - Specific States and US - Specific Counties, and choose the abbreviation of each specific state from which subjects are recruited.', + 'skos:prefLabel': 'Human Subject Studies: Where do human subjects of the study reside or obtain care during the course of the study - To humans in which geographical locations do the study results apply?', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + sexual_identity_applicability: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'sexual_identity_applicability field schema', + description: 'sexual_identity_applicability field schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Heterosexual', + }, + { + label: 'Homosexual (gay/lesbian)', + }, + { + label: 'Bisexual', + }, + { + label: 'Asexual', + }, + { + label: 'Other', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2023-02-07T09:05:16-08:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-02-07T09:05:16-08:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'sexual_identity_applicability', + 'schema:description': 'Considering the study in a translational context, to humans of which sexual identity(ies) are the study results intended to apply and/or likely to generalize to.', + 'skos:prefLabel': 'Do the results of your study have special applicability for humans of specific sexual identity(s)? If so, mark all sexual identity(s) for which the results of your study have special applicability.', + '@id': 'https://repo.metadatacenter.org/template-fields/a4c76b3c-058d-49ba-8967-a79842ddb4c9', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + biological_sex_applicability: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'biological_sex_applicability field schema', + description: 'biological_sex_applicability field schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Ambiguous', + }, + { + label: 'Female', + }, + { + label: 'Male', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2023-02-07T09:05:16-08:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-02-07T09:05:16-08:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'biological_sex_applicability', + 'schema:description': 'Considering the study in a translational context, to humans of which biological sexes are the study results intended to apply and/or likely to generalize to.', + 'skos:prefLabel': 'Do the results of your study have special applicability for humans of specific biological sex(s)? If so, mark all biological sex(s) for which the results of your study have special applicability.', + '@id': 'https://repo.metadatacenter.org/template-fields/e415027a-a8bc-4654-87f2-ef90cda97985', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + gender_applicability: { + type: 'array', + minItems: 1, + items: { + type: 'object', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + title: 'gender_applicability field schema', + description: 'gender_applicability field schema generated by the CEDAR Template Editor 2.6.19', + _ui: { + inputType: 'list', + }, + _valueConstraints: { + requiredValue: false, + multipleChoice: true, + literals: [ + { + label: 'Female', + }, + { + label: 'Female-to-male transsexual', + }, + { + label: 'Intersexed', + }, + { + label: 'Male', + }, + { + label: 'Male-to-female transsexual', + }, + { + label: 'Other', + }, + ], + }, + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + 'pav:createdOn': '2023-02-07T09:05:16-08:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-02-07T09:05:16-08:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + 'schema:name': 'gender_applicability', + 'schema:description': 'Considering the study in a translational context, to humans of which gender identity(ies) are the study results intended to apply and/or likely to generalize to.', + 'skos:prefLabel': 'Do the results of your study have special applicability for humans of specific gender identity(s)? If so, mark all gender identity(s) for which the results of your study have special applicability.', + '@id': 'https://repo.metadatacenter.org/template-fields/fc95cd90-f13a-4d56-8e02-360eb6e1b2ef', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + }, + 'schema:name': 'Human Subject Applicability', + 'schema:description': '', + required: [ + '@context', + '@id', + 'irb_vulnerability_conditions_applicability', + 'age_applicability', + 'geographic_applicability', + 'sexual_identity_applicability', + 'gender_applicability', + 'biological_sex_applicability', + ], + 'pav:createdOn': '2023-03-22T08:32:17-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-03-22T08:32:17-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'pav:version': '0.0.4', + 'bibo:status': 'bibo:draft', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/template-elements/22cb2c8e-dea3-4e26-9dfd-a0dc61c1e27b', + 'pav:previousVersion': 'https://repo.metadatacenter.org/template-elements/71df254f-94c2-4dbf-be1f-340aae409bf5', + '@id': 'https://repo.metadatacenter.org/template-elements/2a7b7dd2-bae0-4ec2-a71b-563f4b4d95ad', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + required: [ + '@context', + '@id', + 'schema:isBasedOn', + 'schema:name', + 'schema:description', + 'pav:createdOn', + 'pav:createdBy', + 'pav:lastUpdatedOn', + 'oslc:modifiedBy', + 'Data Availability', + 'Human Condition Applicability', + 'Data', + 'Metadata Location', + 'Human Treatment Applicability', + 'Study Translational Focus', + 'Minimal Info', + 'Study Type', + 'Human Subject Applicability', + ], + 'schema:name': 'HEAL Study Core Metadata', + 'schema:description': 'form for HEAL studies with a Treatment translational focus; includes Human Treatment Applicability element', + 'pav:createdOn': '2023-02-07T06:53:42-08:00', + 'pav:createdBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'pav:lastUpdatedOn': '2023-03-22T08:32:17-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/ec4fa0b9-fb83-4b34-8d55-190ecda4ffd4', + 'schema:schemaVersion': '1.6.0', + additionalProperties: false, + 'pav:version': '0.0.4', + 'bibo:status': 'bibo:published', + 'pav:derivedFrom': 'https://repo.metadatacenter.org/templates/fa0c3f23-dae1-46ac-b6a0-eafb63f9eb83', + 'pav:previousVersion': 'https://repo.metadatacenter.org/templates/6e32fba6-0571-48ab-8c0e-1ea8868a3b45', + '@id': 'https://repo.metadatacenter.org/templates/d01330c7-ccd1-4e99-856a-86e08937347c', + $schema: 'http://json-schema.org/draft-04/schema#', +}); diff --git a/mirage/fixtures/cedar-templates/cedar-template.license.ts b/mirage/fixtures/cedar-templates/cedar-template.license.ts new file mode 100644 index 00000000000..05259c83f0e --- /dev/null +++ b/mirage/fixtures/cedar-templates/cedar-template.license.ts @@ -0,0 +1,1621 @@ +/* eslint-disable max-len */ +export const licenseTemplate = Object({ + _ui: { + order: [ + 'BIDS Dataset Description Element', + ], + pages: [], + propertyLabels: { + 'BIDS Dataset Description Element': 'BIDS Dataset Description', + }, + propertyDescriptions: { + 'BIDS Dataset Description Element': 'Describes the core attributes of the dataset. Every dataset MUST include a description with these metadata fields.', + }, + }, + 'schema:name': 'BIDS Dataset Description', + properties: { + 'schema:isBasedOn': { + type: 'string', + format: 'uri', + }, + 'schema:name': { + type: 'string', + minLength: 1, + }, + 'pav:createdBy': { + type: [ + 'string', + 'null', + ], + format: 'uri', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'xsd', + 'pav', + 'schema', + 'oslc', + 'schema:isBasedOn', + 'schema:name', + 'schema:description', + 'pav:createdOn', + 'pav:createdBy', + 'pav:lastUpdatedOn', + 'oslc:modifiedBy', + 'BIDS Dataset Description Element', + ], + properties: { + 'schema:isBasedOn': { + type: 'object', + properties: { + '@type': { + enum: [ + '@id', + ], + type: 'string', + }, + }, + }, + 'schema:name': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:string', + ], + type: 'string', + }, + }, + }, + schema: { + enum: [ + 'http://schema.org/', + ], + type: 'string', + format: 'uri', + }, + pav: { + enum: [ + 'http://purl.org/pav/', + ], + type: 'string', + format: 'uri', + }, + xsd: { + enum: [ + 'http://www.w3.org/2001/XMLSchema#', + ], + type: 'string', + format: 'uri', + }, + rdfs: { + enum: [ + 'http://www.w3.org/2000/01/rdf-schema#', + ], + type: 'string', + format: 'uri', + }, + 'oslc:modifiedBy': { + type: 'object', + properties: { + '@type': { + enum: [ + '@id', + ], + type: 'string', + }, + }, + }, + 'rdfs:label': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:string', + ], + type: 'string', + }, + }, + }, + 'pav:derivedFrom': { + type: 'object', + properties: { + '@type': { + enum: [ + '@id', + ], + type: 'string', + }, + }, + }, + skos: { + enum: [ + 'http://www.w3.org/2004/02/skos/core#', + ], + type: 'string', + format: 'uri', + }, + 'pav:lastUpdatedOn': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:dateTime', + ], + type: 'string', + }, + }, + }, + oslc: { + enum: [ + 'http://open-services.net/ns/core#', + ], + type: 'string', + format: 'uri', + }, + 'pav:createdOn': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:dateTime', + ], + type: 'string', + }, + }, + }, + 'BIDS Dataset Description Element': { + enum: [ + 'https://schema.metadatacenter.org/properties/6e3dbb08-1c81-426a-b2fb-aab3ed61328a', + ], + }, + 'skos:notation': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:string', + ], + type: 'string', + }, + }, + }, + 'schema:description': { + type: 'object', + properties: { + '@type': { + enum: [ + 'xsd:string', + ], + type: 'string', + }, + }, + }, + 'pav:createdBy': { + type: 'object', + properties: { + '@type': { + enum: [ + '@id', + ], + type: 'string', + }, + }, + }, + }, + }, + 'oslc:modifiedBy': { + type: [ + 'string', + 'null', + ], + format: 'uri', + }, + 'pav:derivedFrom': { + type: 'string', + format: 'uri', + }, + 'pav:lastUpdatedOn': { + type: [ + 'string', + 'null', + ], + format: 'date-time', + }, + '@id': { + type: [ + 'string', + 'null', + ], + format: 'uri', + }, + 'BIDS Dataset Description Element': { + _ui: { + order: [ + 'Dataset Name', + 'BIDSVersion', + 'DatasetType', + 'License', + 'LicenseIdentifier', + 'Authors', + 'Acknowledgments', + 'HowToAcknowledge', + 'Funding', + 'EthicsApprovals', + 'ReferencesAndLinks', + 'DatasetDOI', + ], + propertyLabels: { + License: 'License', + LicenseIdentifier: 'LicenseIdentifier', + DatasetDOI: 'DatasetDOI', + Funding: 'Funding', + DatasetType: 'DatasetType', + ReferencesAndLinks: 'ReferencesAndLinks', + Authors: 'Authors', + EthicsApprovals: 'EthicsApprovals', + 'Dataset Name': 'Dataset Name', + HowToAcknowledge: 'HowToAcknowledge', + Acknowledgments: 'Acknowledgments', + BIDSVersion: 'BIDSVersion', + }, + propertyDescriptions: { + License: 'The license for the dataset. The use of license name abbreviations is RECOMMENDED for specifying a license (see Appendix II). The corresponding full license text MAY be specified in an additional LICENSE file. (RECOMMENDED)', + LicenseIdentifier: 'The license for the dataset. The use of license name identifiers is RECOMMENDED for specifying a license (see Appendix II). The corresponding full license text MAY be specified in an additional LICENSE file. (RECOMMENDED)', + DatasetDOI: 'The Document Object Identifier of the dataset (not the corresponding paper). (OPTIONAL)', + Funding: 'List of sources of funding (grant numbers). (OPTIONAL)', + DatasetType: 'The interpretation of the dataset. MUST be one of "raw" or "derivative". For backwards compatibility, the default value is "raw". (RECOMMENDED)', + ReferencesAndLinks: 'List of references to publication that contain information on the dataset, or links. (OPTIONAL)', + Authors: 'List of individuals who contributed to the creation/curation of the dataset. (OPTIONAL)', + EthicsApprovals: 'List of ethics committee approvals of the research protocols and/or protocol identifiers. (OPTIONAL)', + 'Dataset Name': 'Name of the dataset. (REQUIRED)', + HowToAcknowledge: 'Text containing instructions on how researchers using this dataset should acknowledge the original authors. This field can also be used to define a publication that should be cited in publications that use the dataset. (OPTIONAL)', + Acknowledgments: 'Text acknowledging contributions of individuals or institutions beyond those listed in Authors or Funding. (OPTIONAL)', + BIDSVersion: 'The version of the BIDS standard that was used. (REQUIRED)', + }, + }, + 'schema:name': 'BIDS Dataset Description Element', + properties: { + License: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'License', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.org/template-fields/8b51634a-42df-414b-be27-6cfdfb611591', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdBy': { + '@type': '@id', + }, + }, + additionalProperties: false, + type: 'object', + title: 'License field schema', + description: 'License field schema generated by the CEDAR Template Editor 2.4.10', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2020-07-07T11:38:20-07:00', + 'pav:createdOn': '2020-07-07T11:38:20-07:00', + 'skos:prefLabel': 'License for the dataset', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: false, + }, + 'schema:description': 'The license for the dataset. The use of license name abbreviations is RECOMMENDED for specifying a license (see Appendix II). The corresponding full license text MAY be specified in an additional LICENSE file. (RECOMMENDED)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + LicenseIdentifier: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'LicenseIdentifier', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdBy': { + '@type': '@id', + }, + }, + _valueConstraints: { + valueSets: [], + multipleChoice: false, + ontologies: [], + branches: [ + { + uri: 'http://www.ebi.ac.uk/swo/SWO_0000002', + source: 'Software Ontology (SWO)', + name: 'licence', + acronym: 'SWO', + maxDepth: 0, + }, + ], + classes: [], + requiredValue: false, + }, + type: 'object', + title: 'LicenseIdentifier field schema', + description: 'LicenseIdentifier field schema generated by the CEDAR Template Editor 2.4.10', + 'pav:lastUpdatedOn': '2020-07-07T11:38:20-07:00', + 'pav:createdOn': '2020-07-07T11:38:20-07:00', + 'skos:prefLabel': 'License Unique Identifier', + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + 'schema:description': 'The license for the dataset. The use of license name identifiers is RECOMMENDED for specifying a license (see Appendix II). The corresponding full license text MAY be specified in an additional LICENSE file. (RECOMMENDED)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/37ea1310-3ddf-4b43-919f-d44a33843da2', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + DatasetDOI: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'DatasetDOI', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.org/template-fields/c062c2c3-73ed-4f6e-9c06-eede054bc354', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdBy': { + '@type': '@id', + }, + }, + additionalProperties: false, + type: 'object', + title: 'DatasetDOI field schema', + description: 'DatasetDOI field schema generated by the CEDAR Template Editor 2.4.10', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2020-07-07T11:38:20-07:00', + 'pav:createdOn': '2020-07-07T11:38:20-07:00', + 'skos:prefLabel': 'Dataset DOI', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: false, + }, + 'schema:description': 'The Document Object Identifier of the dataset (not the corresponding paper). (OPTIONAL)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + additionalProperties: false, + type: 'object', + required: [ + 'Dataset Name', + 'BIDSVersion', + 'DatasetType', + 'License', + 'Authors', + 'Acknowledgments', + 'HowToAcknowledge', + 'Funding', + 'EthicsApprovals', + 'ReferencesAndLinks', + 'DatasetDOI', + 'LicenseIdentifier', + ], + properties: { + License: { + enum: [ + 'https://schema.metadatacenter.org/properties/a1baf578-bd75-44fe-8b7b-44507dd01932', + ], + }, + LicenseIdentifier: { + enum: [ + 'https://schema.metadatacenter.org/properties/96bbc310-6f7a-4dec-8609-9b9903264f4d', + ], + }, + DatasetDOI: { + enum: [ + 'https://schema.metadatacenter.org/properties/c9bd415d-d825-4e86-8030-610f52095943', + ], + }, + Funding: { + enum: [ + 'https://schema.metadatacenter.org/properties/21fd5425-b211-4edb-a45b-3ed278882d7c', + ], + }, + DatasetType: { + enum: [ + 'https://schema.metadatacenter.org/properties/08898a4d-dabf-4454-8d2b-fd0e8c6fd793', + ], + }, + ReferencesAndLinks: { + enum: [ + 'https://schema.metadatacenter.org/properties/797a193f-85da-47f4-a136-fce3a102f86c', + ], + }, + Authors: { + enum: [ + 'https://schema.metadatacenter.org/properties/1908edf4-4913-4d33-b322-ce93481d541f', + ], + }, + EthicsApprovals: { + enum: [ + 'https://schema.metadatacenter.org/properties/22ee66f5-bb32-40f7-9474-6f9f5d9189b7', + ], + }, + 'Dataset Name': { + enum: [ + 'http://rs.tdwg.org/dwc/terms/datasetName', + ], + }, + HowToAcknowledge: { + enum: [ + 'https://schema.metadatacenter.org/properties/3f978fe7-aee6-4ca6-971a-46baf75f1dc0', + ], + }, + Acknowledgments: { + enum: [ + 'https://schema.metadatacenter.org/properties/3fa93aae-66c5-4ab8-93a8-cb3bf802dd10', + ], + }, + BIDSVersion: { + enum: [ + 'https://schema.metadatacenter.org/properties/19f74b03-5317-4403-88fa-d102f4dcc729', + ], + }, + }, + }, + DatasetType: { + _ui: { + inputType: 'radio', + }, + 'schema:name': 'DatasetType', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.org/template-fields/6cb73ef8-02b5-430c-82dd-3c81dc25830b', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdBy': { + '@type': '@id', + }, + }, + additionalProperties: false, + type: 'object', + title: 'DatasetType field schema', + description: 'DatasetType field schema generated by the CEDAR Template Editor 2.4.10', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2020-07-07T11:38:20-07:00', + 'pav:createdOn': '2020-07-07T11:38:20-07:00', + 'skos:prefLabel': 'Dataset Interpretation Type', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + multipleChoice: false, + literals: [ + { + label: 'raw', + selectedByDefault: true, + }, + { + label: 'derivative', + }, + ], + requiredValue: false, + }, + 'schema:description': 'The interpretation of the dataset. MUST be one of "raw" or "derivative". For backwards compatibility, the default value is "raw". (RECOMMENDED)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + ReferencesAndLinks: { + minItems: 1, + type: 'array', + items: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'ReferencesAndLinks', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdBy': { + '@type': '@id', + }, + }, + additionalProperties: false, + type: 'object', + title: 'ReferencesAndLinks field schema', + description: 'ReferencesAndLinks field schema generated by the CEDAR Template Editor 2.4.10', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2020-07-07T11:38:20-07:00', + 'schema:description': 'List of references to publication that contain information on the dataset, or links. (OPTIONAL)', + 'pav:createdOn': '2020-07-07T11:38:20-07:00', + 'skos:prefLabel': 'References and Links', + '@id': 'https://repo.metadatacenter.org/template-fields/3222ce8c-2b5f-4558-9237-41b76e6a6f5d', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + Funding: { + minItems: 1, + type: 'array', + items: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Funding', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdBy': { + '@type': '@id', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Funding field schema', + description: 'Funding field schema generated by the CEDAR Template Editor 2.4.10', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2020-07-07T11:38:20-07:00', + 'schema:description': 'List of sources of funding (grant numbers). (OPTIONAL)', + 'pav:createdOn': '2020-07-07T11:38:20-07:00', + 'skos:prefLabel': 'Funding Source(s)', + '@id': 'https://repo.metadatacenter.org/template-fields/e913e50d-b390-4735-8fcb-6af35a423332', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + Authors: { + minItems: 1, + type: 'array', + items: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Authors', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdBy': { + '@type': '@id', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Authors field schema', + description: 'Authors field schema generated by the CEDAR Template Editor 2.4.10', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2020-07-07T11:38:20-07:00', + 'schema:description': 'List of individuals who contributed to the creation/curation of the dataset. (OPTIONAL)', + 'pav:createdOn': '2020-07-07T11:38:20-07:00', + 'skos:prefLabel': 'Author(s) contributing to dataset', + '@id': 'https://repo.metadatacenter.org/template-fields/f3a0e9ea-2e08-4a05-9420-bc00b8ecb854', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + EthicsApprovals: { + minItems: 1, + type: 'array', + items: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'EthicsApprovals', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdBy': { + '@type': '@id', + }, + }, + additionalProperties: false, + type: 'object', + title: 'EthicsApprovals field schema', + description: 'EthicsApprovals field schema generated by the CEDAR Template Editor 2.4.10', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2020-07-07T11:38:20-07:00', + 'schema:description': 'List of ethics committee approvals of the research protocols and/or protocol identifiers. (OPTIONAL)', + 'pav:createdOn': '2020-07-07T11:38:20-07:00', + 'skos:prefLabel': 'Ethics Approval(s)', + '@id': 'https://repo.metadatacenter.org/template-fields/ad63b154-bda0-4654-801d-5c875242c793', + _valueConstraints: { + requiredValue: false, + }, + 'schema:schemaVersion': '1.6.0', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + '@id': { + type: 'string', + format: 'uri', + }, + 'Dataset Name': { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'Dataset Name', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.org/template-fields/b67ce7d7-2de2-43c2-a4ff-4f6041c2002a', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdBy': { + '@type': '@id', + }, + }, + additionalProperties: false, + type: 'object', + title: 'Dataset Name field schema', + description: 'Dataset Name field schema generated by the CEDAR Template Editor 2.4.10', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2020-07-07T11:38:20-07:00', + 'pav:createdOn': '2020-07-07T11:38:20-07:00', + 'skos:prefLabel': 'Dataset Name', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: true, + }, + 'schema:description': 'Name of the dataset. (REQUIRED)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + HowToAcknowledge: { + _ui: { + inputType: 'textarea', + }, + 'schema:name': 'HowToAcknowledge', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.org/template-fields/3f32e69e-0be1-4154-8082-c8b0511a5dcc', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdBy': { + '@type': '@id', + }, + }, + additionalProperties: false, + type: 'object', + title: 'HowToAcknowledge field schema', + description: 'HowToAcknowledge field schema generated by the CEDAR Template Editor 2.4.10', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2020-07-07T11:38:20-07:00', + 'pav:createdOn': '2020-07-07T11:38:20-07:00', + 'skos:prefLabel': 'Acknowledgment Instructions', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: false, + }, + 'schema:description': 'Text containing instructions on how researchers using this dataset should acknowledge the original authors. This field can also be used to define a publication that should be cited in publications that use the dataset. (OPTIONAL)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + Acknowledgments: { + _ui: { + inputType: 'textarea', + }, + 'schema:name': 'Acknowledgments', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdBy': { + '@type': '@id', + }, + }, + _valueConstraints: { + requiredValue: false, + }, + type: 'object', + title: 'Acknowledgments field schema', + description: 'Acknowledgments field schema generated by the CEDAR Template Editor 2.4.10', + 'pav:lastUpdatedOn': '2020-07-07T11:38:20-07:00', + 'pav:createdOn': '2020-07-07T11:38:20-07:00', + '@id': 'https://repo.metadatacenter.org/template-fields/347e6373-0915-40cb-b584-cd2eaad81890', + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + 'schema:description': 'Text acknowledging contributions of individuals or institutions beyond those listed in Authors or Funding. (OPTIONAL)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + BIDSVersion: { + _ui: { + inputType: 'textfield', + }, + 'schema:name': 'BIDSVersion', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@value', + ], + '@id': 'https://repo.metadatacenter.org/template-fields/db17f267-5e5e-41f1-96fc-af7c64c9a20a', + '@context': { + 'schema:name': { + '@type': 'xsd:string', + }, + schema: 'http://schema.org/', + pav: 'http://purl.org/pav/', + xsd: 'http://www.w3.org/2001/XMLSchema#', + bibo: 'http://purl.org/ontology/bibo/', + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + skos: 'http://www.w3.org/2004/02/skos/core#', + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdBy': { + '@type': '@id', + }, + }, + additionalProperties: false, + type: 'object', + title: 'BIDSVersion field schema', + description: 'BIDSVersion field schema generated by the CEDAR Template Editor 2.4.10', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2020-07-07T11:38:20-07:00', + 'pav:createdOn': '2020-07-07T11:38:20-07:00', + 'skos:prefLabel': 'BIDS Version Used', + 'schema:schemaVersion': '1.6.0', + _valueConstraints: { + requiredValue: true, + }, + 'schema:description': 'The version of the BIDS standard that was used. (REQUIRED)', + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@context', + '@id', + 'Dataset Name', + 'BIDSVersion', + 'DatasetType', + 'License', + 'Authors', + 'Acknowledgments', + 'HowToAcknowledge', + 'Funding', + 'EthicsApprovals', + 'ReferencesAndLinks', + 'DatasetDOI', + 'LicenseIdentifier', + ], + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + bibo: 'http://purl.org/ontology/bibo/', + 'schema:description': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + }, + additionalProperties: false, + type: 'object', + title: 'Bids dataset description element element schema', + description: 'Bids dataset description element element schema generated by the CEDAR Template Editor 2.4.10', + 'pav:lastUpdatedOn': '2020-07-07T11:39:18-07:00', + 'schema:description': 'Describes the core attributes of the dataset. Every dataset MUST include a description with these metadata fields.', + 'pav:createdOn': '2020-07-07T11:39:18-07:00', + 'bibo:status': 'bibo:draft', + '@id': 'https://repo.metadatacenter.org/template-elements/a23c786c-6fe0-450b-a7f3-aa1e99e39611', + 'pav:version': '0.0.1', + 'schema:schemaVersion': '1.6.0', + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'schema:description': { + type: 'string', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + minItems: 1, + type: 'array', + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'pav:createdOn': { + type: [ + 'string', + 'null', + ], + format: 'date-time', + }, + }, + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + required: [ + '@context', + '@id', + 'schema:isBasedOn', + 'schema:name', + 'schema:description', + 'pav:createdOn', + 'pav:createdBy', + 'pav:lastUpdatedOn', + 'oslc:modifiedBy', + 'BIDS Dataset Description Element', + ], + '@context': { + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'pav:createdBy': { + '@type': '@id', + }, + xsd: 'http://www.w3.org/2001/XMLSchema#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + bibo: 'http://purl.org/ontology/bibo/', + 'schema:description': { + '@type': 'xsd:string', + }, + pav: 'http://purl.org/pav/', + }, + additionalProperties: false, + type: 'object', + title: 'Bids dataset description template schema', + description: 'Bids dataset description template schema generated by the CEDAR Template Editor 2.6.44', + 'pav:lastUpdatedOn': '2020-07-07T11:39:18-07:00', + 'schema:description': 'Metadata describing a BIDS dataset.', + 'pav:createdOn': '2020-07-07T11:37:30-07:00', + 'bibo:status': 'bibo:draft', + '@id': 'https://repo.metadatacenter.org/templates/5568fc7b-2e3b-4a13-b893-eda9a6aff5e6', + 'pav:version': '0.0.1', + 'schema:schemaVersion': '1.6.0', + '@type': 'https://schema.metadatacenter.org/core/Template', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', +}); diff --git a/mirage/fixtures/cedar-templates/cedar-template.radx.ts b/mirage/fixtures/cedar-templates/cedar-template.radx.ts new file mode 100644 index 00000000000..fbf797546a9 --- /dev/null +++ b/mirage/fixtures/cedar-templates/cedar-template.radx.ts @@ -0,0 +1,14526 @@ +/* eslint-disable max-len */ +export const radxTemplate = Object({ + '@id': 'https://repo.metadatacenter.org/templates/ec918d9b-fcd2-4e6e-b63b-2c67aece9f68', + _ui: { + order: [ + 'Data File Title', + 'Data File Identifier', + 'Resource Type', + 'Data File Version', + 'Data File Language', + 'Data File Subjects and Keywords', + 'Data File Description', + 'Data File Creator', + 'Data File Related Resource', + 'Data File Contributor', + 'Data File Rights', + 'Date', + 'Data File Parent Study', + 'Data File Funding Source', + 'Data File Distribution', + 'Data Characteristics Summary', + 'Data Source', + 'Data Source Stream', + 'Data File Process Version', + 'Data File Temporal Coverage', + 'Data File Spatial Coverage', + 'Data File Vertical Coverage', + 'Auxiliary Metadata', + ], + propertyLabels: { + 'Data File Title': 'Data File Title', + 'Data File Identifier': 'Data File Identifier', + 'Resource Type': 'Resource Type', + 'Data File Version': 'Data File Version', + 'Data File Language': 'Data File Language', + 'Data File Subjects and Keywords': 'Data File Subjects and Keywords', + 'Data File Description': 'Data File Description', + 'Data File Creator': 'Data File Creator', + 'Data File Related Resource': 'Data File Related Resource', + 'Data File Contributor': 'Data File Contributor', + 'Data File Rights': 'Data File Rights', + Date: 'Date', + 'Data File Parent Study': 'Data File Parent Study', + 'Data File Funding Source': 'Data File Funding Source', + 'Data File Distribution': 'Data File Distribution', + 'Data Characteristics Summary': 'Data Characteristics Summary', + 'Data Source': 'Data Source', + 'Data Source Stream': 'Data Source Stream', + 'Data File Process Version': 'Data File Process Version', + 'Data File Temporal Coverage': 'Data File Temporal Coverage', + 'Data File Spatial Coverage': 'Data File Spatial Coverage', + 'Data File Vertical Coverage': 'Data File Vertical Coverage', + 'Auxiliary Metadata': 'Auxiliary Metadata', + }, + propertyDescriptions: { + 'Data File Title': 'A name or title by which the Data File being described is known.', + 'Data File Identifier': 'Information about the globally unique and persistent identifier used to identify and optionally access (meta)data of the data file being described.', + 'Resource Type': 'Information about the type of the resource being described with metadata.', + 'Data File Version': 'Version of the resource being described.', + 'Data File Language': 'Language in which the data file being described is provided.', + 'Data File Subjects and Keywords': 'Concepts (keywords, classification, or free text terms) that define the data file or purpose (subjects which can be addressed) using the data file.', + 'Data File Description': 'Summary of the Data File and its contents.', + 'Data File Creator': 'An entity that brought into existence the data file being described. Creators can be people, organizations and/or physical or virtual infrastructure (e.g., sensors, software).', + 'Data File Related Resource': 'Information about resource related to the data file or other entity being described.', + 'Data File Contributor': 'An entity that contributed in bringing into existence the data file being described. Contributors can be people, organizations and/or physical or virtual infrastructure (e.g., sensors, software).', + 'Data File Rights': 'Way in which the data file may or may not be accessed and used.', + Date: 'Relevant date related to the resource being described.', + 'Data File Parent Study': 'The research study for which this data file was created.', + 'Data File Funding Source': 'The sources of funding that enabled and drove the creation of the data file. (Non-monetary sources are described under Contributor.)', + 'Data File Distribution': 'Details about the distribution for this individual public presentation of the data file (if part of the Distribution metadata), or for all the public presentations of the data file being described (if part of the data file metadata).', + 'Data Characteristics Summary': 'Characteristics of the data within the data file, particularly of the cohorts in the data file.', + 'Data Source': 'Physical or conceptual entity that creates the data streams that make up the described data file. The data source may or may not be associated with a fixed location; for example, a series of discrete sensors deployed over time to a single location may be considered a single data source in some systems.', + 'Data Source Stream': 'A collection of one or more variable records originating from a single data source (e.g., sensor, process, or person). A data stream can grow over time.', + 'Data File Process Version': 'Version information for the process used to make the data file or product', + 'Data File Temporal Coverage': 'The temporal coverage and resolution of the data file being described.', + 'Data File Spatial Coverage': 'The maximum geospatial positions (locations on Earth) covered by the data file being described.', + 'Data File Vertical Coverage': 'The vertical area (altitude and/or depth) covered by the data file being described.', + 'Auxiliary Metadata': 'Information about the data file or metadata submission that does not fit into the other categories', + }, + pages: [], + }, + title: 'Radx metadata specification template schema', + description: 'Radx metadata specification template schema generated by the CEDAR Template Editor 2.6.44', + type: 'object', + properties: { + 'Data Characteristics Summary': { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data Characteristics Summary)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'Data Characteristics Table in CSV': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/399e2b10-21eb-4200-81f3-9407060dcbf8', + 'schema:identifier': 'data_characteristics_table_in_csv', + 'schema:name': 'Data Characteristics Table in CSV', + 'schema:description': 'Enter comma-separated table containing summary statistics characterizing this data file', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data Characteristics Table in CSV', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textarea', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Data Characteristics Table in CSV)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Data Characteristics Table in HTML': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/f91b9755-f6dd-4e67-9f1e-5fb8adf4161e', + 'schema:identifier': 'data_characteristics_table_in_html', + 'schema:name': 'Data Characteristics Table in HTML', + 'schema:description': 'Formatted HTML code for a table of statistical values', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data Characteristics Table in HTML', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textarea', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Data Characteristics Table in HTML)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + 'Data Characteristics Table in Key-Value Pairs': { + type: 'array', + minItems: 0, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'urn:uuid:1f7eae7b-3116-4829-9997-5ddaae0277ef', + 'schema:identifier': 'data_characteristics_table_in_key-value_pairs', + 'schema:name': 'Data Characteristics Table in Key-Value Pairs', + 'schema:description': 'Enter the name of the characteristic being described in the first (key) field, and the value for that characteristic in the second (value) field.. Note this is a repeating field and so can support multiple key-value pairs.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data Characteristics Table in Key-Value Pairs', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _ui: { + inputType: 'attribute-value', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + title: 'Field(Data Characteristics Table in Key-Value Pairs)', + description: 'Generated by CSV2CEDAR.', + type: 'string', + multiValued: true, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + '@context': { + type: 'object', + properties: { + 'Data Characteristics Table in HTML': { + enum: [ + 'https://schema.metadatacenter.org/properties/f48a2164-fb1a-4232-b7ef-5f8c985685ae', + ], + }, + 'Data Characteristics Table in CSV': { + enum: [ + 'https://schema.metadatacenter.org/properties/2ecd7522-f5ec-4a35-903f-f2b087a6065c', + ], + }, + 'Data Characteristics Table in Key-Value Pairs': { + enum: [ + 'https://schema.metadatacenter.org/properties/0ea00320-9557-43c1-81af-ab23bc7b9142', + ], + }, + }, + additionalProperties: false, + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Data Characteristics Table in HTML', + 'Data Characteristics Table in CSV', + 'Data Characteristics Table in Key-Value Pairs', + ], + additionalProperties: { + type: 'object', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + type: 'string', + format: 'uri', + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + }, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/17eab50d-061c-4972-9896-8f0a853686e7', + _ui: { + order: [ + 'Data Characteristics Table in HTML', + 'Data Characteristics Table in CSV', + 'Data Characteristics Table in Key-Value Pairs', + ], + propertyLabels: { + 'Data Characteristics Table in HTML': 'Data Characteristics Table in HTML', + 'Data Characteristics Table in CSV': 'Data Characteristics Table in CSV', + 'Data Characteristics Table in Key-Value Pairs': 'Data Characteristics Table in Key-Value Pairs', + }, + propertyDescriptions: { + 'Data Characteristics Table in HTML': 'Formatted HTML code for a table of statistical values', + 'Data Characteristics Table in CSV': 'Enter comma-separated table containing summary statistics characterizing this data file', + 'Data Characteristics Table in Key-Value Pairs': 'Enter the name of the characteristic being described in the first (key) field, and the value for that characteristic in the second (value) field.. Note this is a repeating field and so can support multiple key-value pairs.', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_characteristics_summary', + 'schema:name': 'Data Characteristics Summary', + 'schema:description': 'Characteristics of the data within the data file, particularly of the cohorts in the data file.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data Characteristics Summary', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Auxiliary Metadata': { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Auxiliary Metadata)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@id': { + type: 'string', + format: 'uri', + }, + 'Data File Descriptive Attribute': { + type: 'array', + minItems: 0, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'urn:uuid:a2dfde9f-116b-4ba3-8587-127c4553ecce', + 'schema:identifier': 'data_file_descriptive_attribute', + 'schema:name': 'Data File Descriptive Attribute', + 'schema:description': 'This field supports entry of both the metadata attribute name (in the first field), and the value for that attribute (in the second field). Note this is a repeating field and so can support multiple key-value pairs.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Descriptive Attribute', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _ui: { + inputType: 'attribute-value', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + title: 'Field(Data File Descriptive Attribute)', + description: 'Generated by CSV2CEDAR.', + type: 'string', + multiValued: true, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + '@context': { + type: 'object', + properties: { + 'Data File Descriptive Attribute': { + enum: [ + 'https://schema.metadatacenter.org/properties/c3a9553f-6062-40f3-a854-fe045938ba6f', + ], + }, + 'Additional Commentary': { + enum: [ + 'https://schema.metadatacenter.org/properties/248a9fce-664b-4dff-bf56-da55b239e65f', + ], + }, + }, + additionalProperties: false, + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Additional Commentary': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/222da83c-dea2-412f-895c-a3000272010e', + 'schema:identifier': 'additional_commentary', + 'schema:name': 'Additional Commentary', + 'schema:description': 'Any additional information about the data file or provided metadata.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Additional Commentary', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textarea', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Additional Commentary)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Data File Descriptive Attribute', + 'Additional Commentary', + ], + additionalProperties: { + type: 'object', + properties: { + '@value': { + type: [ + 'string', + 'null', + ], + }, + '@type': { + type: 'string', + format: 'uri', + }, + }, + required: [ + '@value', + ], + additionalProperties: false, + }, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/8661ff23-03ec-4a8d-8a72-ca53d435081e', + _ui: { + order: [ + 'Data File Descriptive Attribute', + 'Additional Commentary', + ], + propertyLabels: { + 'Data File Descriptive Attribute': 'Data File Descriptive Attribute', + 'Additional Commentary': 'Additional Commentary', + }, + propertyDescriptions: { + 'Data File Descriptive Attribute': 'This field supports entry of both the metadata attribute name (in the first field), and the value for that attribute (in the second field). Note this is a repeating field and so can support multiple key-value pairs.', + 'Additional Commentary': 'Any additional information about the data file or provided metadata.', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'auxiliary_metadata', + 'schema:name': 'Auxiliary Metadata', + 'schema:description': 'Information about the data file or metadata submission that does not fit into the other categories', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Auxiliary Metadata', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Data File Process Version': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Process Version)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'Version Identifier of Process': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/3c1c12f1-2ac0-48d1-846b-22028fa1c448', + 'schema:identifier': 'version_identifier_of_process', + 'schema:name': 'Version Identifier of Process', + 'schema:description': 'Version of the process used to make this data file, typically a string (e.g., 3.0.3)', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Version Identifier of Process', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Version Identifier of Process)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Process Unique Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/621aaacc-d678-4a15-ba6d-9a32bacf650f', + 'schema:identifier': 'process_unique_identifier', + 'schema:name': 'Process Unique Identifier', + 'schema:description': 'Unique identifier for the process used to make the data file or product (preferably a resolvable and persistent identifier)', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Process Unique Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Process Unique Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Execution Identifier of Process': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/b6d86cc7-fd03-4784-aff2-ecf3f2ede6ea', + 'schema:identifier': 'execution_identifier_of_process', + 'schema:name': 'Execution Identifier of Process', + 'schema:description': 'Identification of the particular run of the process used to make this data file (a deterministic string)', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Execution Identifier of Process', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Execution Identifier of Process)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + type: 'object', + properties: { + 'Process Name': { + enum: [ + 'https://schema.metadatacenter.org/properties/feb434c4-424d-4fe7-aa66-ab68c5e54217', + ], + }, + 'Process Unique Identifier': { + enum: [ + 'https://schema.metadatacenter.org/properties/5399bf9a-7b19-42fc-b5e3-a0f70e73689a', + ], + }, + 'Version Identifier of Process': { + enum: [ + 'https://schema.metadatacenter.org/properties/fa192c4d-c96c-48c8-85c3-68adf8ee45e5', + ], + }, + 'Execution Identifier of Process': { + enum: [ + 'https://schema.metadatacenter.org/properties/7411041d-9560-49b8-8159-5442a09de7e7', + ], + }, + }, + additionalProperties: false, + }, + 'Process Name': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/de1a0182-a37c-42d1-8b54-a54991f7d249', + 'schema:identifier': 'process_name', + 'schema:name': 'Process Name', + 'schema:description': 'Full name of the process for which the version is specified', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Process Name', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Process Name)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Process Name', + 'Process Unique Identifier', + 'Version Identifier of Process', + 'Execution Identifier of Process', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/2430bda9-a175-4479-a260-b79537b05daa', + _ui: { + order: [ + 'Process Name', + 'Process Unique Identifier', + 'Version Identifier of Process', + 'Execution Identifier of Process', + ], + propertyLabels: { + 'Process Name': 'Process Name', + 'Process Unique Identifier': 'Process Unique Identifier', + 'Version Identifier of Process': 'Version Identifier of Process', + 'Execution Identifier of Process': 'Execution Identifier of Process', + }, + propertyDescriptions: { + 'Process Name': 'Full name of the process for which the version is specified', + 'Process Unique Identifier': 'Unique identifier for the process used to make the data file or product (preferably a resolvable and persistent identifier)', + 'Version Identifier of Process': 'Version of the process used to make this data file, typically a string (e.g., 3.0.3)', + 'Execution Identifier of Process': 'Identification of the particular run of the process used to make this data file (a deterministic string)', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_process_version', + 'schema:name': 'Data File Process Version', + 'schema:description': 'Version information for the process used to make the data file or product', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Process Version', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'pav:createdOn': { + type: [ + 'string', + 'null', + ], + format: 'date-time', + }, + 'Data File Vertical Coverage': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Vertical Coverage)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'Vertical Extent Minimum Value': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/2d6d087f-a0b1-43ac-adc7-5df0f8d901c0', + 'schema:identifier': 'vertical_extent_minimum_value', + 'schema:name': 'Vertical Extent Minimum Value', + 'schema:description': 'A minimum vertical extent of data file collection. In case of depth, this contains the maximum depth of data file collection (it is a negative number of greater absolute magnitude than the Vertical Extent Maximum Value).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Vertical Extent Minimum Value', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + numberType: 'xsd:float', + unitOfMeasure: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'numeric', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Vertical Extent Minimum Value)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Vertical Extent Datum': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/eacfc903-ecbf-4aac-b10a-293f8020f7ee', + 'schema:identifier': 'vertical_extent_datum', + 'schema:name': 'Vertical Extent Datum', + 'schema:description': 'The name of the Datum (reference frame) used for the Vertical Extent values.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Vertical Extent Datum', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Vertical Extent Datum)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Vertical Extent Maximum Value': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/ef0b0599-305d-4b56-afd0-1b21a6264bb6', + 'schema:identifier': 'vertical_extent_maximum_value', + 'schema:name': 'Vertical Extent Maximum Value', + 'schema:description': 'A maximum vertical extent of data file collection. In case of depth, this contains the minimum depth of data file collection (it is a negative number of lesser absolute magnitude than the Vertical Extent Minimum Value).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Vertical Extent Maximum Value', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + numberType: 'xsd:float', + unitOfMeasure: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'numeric', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Vertical Extent Maximum Value)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Vertical Extent Datum Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/b3e34ef1-aee9-4138-b31a-18c5e629727d', + 'schema:identifier': 'vertical_extent_datum_identifier', + 'schema:name': 'Vertical Extent Datum Identifier', + 'schema:description': 'The unique identifier (IRI) of the Datum (reference frame) used for the Vertical Extent values.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Vertical Extent Datum Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'link', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Vertical Extent Datum Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + type: 'object', + properties: { + 'Vertical Extent Minimum Value': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasVerticalExtentMinimumValue', + ], + }, + 'Vertical Extent Maximum Value': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasVerticalExtentMaximumValue', + ], + }, + 'Vertical Extent Unit': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasVerticalExtentUnit', + ], + }, + 'Vertical Extent Datum': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasVerticalExtentDatum', + ], + }, + 'Vertical Extent Datum Identifier': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasVerticalExtentDatumIRI', + ], + }, + }, + additionalProperties: false, + }, + 'Vertical Extent Unit': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/09bdcae4-18c0-433d-9f44-a0e87e090552', + 'schema:identifier': 'vertical_extent_unit', + 'schema:name': 'Vertical Extent Unit', + 'schema:description': 'Unit used to specify Vertical Extent. May be specified as string or identifier, preferably as science units.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Vertical Extent Unit', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Vertical Extent Unit)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Vertical Extent Minimum Value', + 'Vertical Extent Maximum Value', + 'Vertical Extent Unit', + 'Vertical Extent Datum', + 'Vertical Extent Datum Identifier', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/276c9011-88fa-4154-9898-2ca862fed496', + _ui: { + order: [ + 'Vertical Extent Minimum Value', + 'Vertical Extent Maximum Value', + 'Vertical Extent Unit', + 'Vertical Extent Datum', + 'Vertical Extent Datum Identifier', + ], + propertyLabels: { + 'Vertical Extent Minimum Value': 'Vertical Extent Minimum Value', + 'Vertical Extent Maximum Value': 'Vertical Extent Maximum Value', + 'Vertical Extent Unit': 'Vertical Extent Unit', + 'Vertical Extent Datum': 'Vertical Extent Datum', + 'Vertical Extent Datum Identifier': 'Vertical Extent Datum Identifier', + }, + propertyDescriptions: { + 'Vertical Extent Minimum Value': 'A minimum vertical extent of data file collection. In case of depth, this contains the maximum depth of data file collection (it is a negative number of greater absolute magnitude than the Vertical Extent Maximum Value).', + 'Vertical Extent Maximum Value': 'A maximum vertical extent of data file collection. In case of depth, this contains the minimum depth of data file collection (it is a negative number of lesser absolute magnitude than the Vertical Extent Minimum Value).', + 'Vertical Extent Unit': 'Unit used to specify Vertical Extent. May be specified as string or identifier, preferably as science units.', + 'Vertical Extent Datum': 'The name of the Datum (reference frame) used for the Vertical Extent values.', + 'Vertical Extent Datum Identifier': 'The unique identifier (IRI) of the Datum (reference frame) used for the Vertical Extent values.', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_vertical_coverage', + 'schema:name': 'Data File Vertical Coverage', + 'schema:description': 'The vertical area (altitude and/or depth) covered by the data file being described.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Vertical Coverage', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'Data File Related Resource': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Related Resource)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'Related Resource Identifier Type': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/f7ea6818-d720-43eb-bbef-b4897258aa2e', + 'schema:identifier': 'related_resource_identifier_type', + 'schema:name': 'Related Resource Identifier Type', + 'schema:description': 'The identifier type used to identify the related resource.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Related Resource Identifier Type', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/IdentifierType', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Related Resource Identifier Type)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Related Resource Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/84261ae4-3d99-4147-8559-4b27758e08b8', + 'schema:identifier': 'related_resource_identifier', + 'schema:name': 'Related Resource Identifier', + 'schema:description': 'A globally unique string that identifies a resource that is related to the data file being described.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Related Resource Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Related Resource Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + 'Resource Type Category': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/c37bdf90-bdfa-4403-bc10-fb52b374f16d', + 'schema:identifier': 'resource_type_category', + 'schema:name': 'Resource Type Category', + 'schema:description': "Categorical type of the resource being described. (Corresponds to DataCite's resourceTypeGeneral.)", + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Resource Type Category', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/ResourceTypeCategory', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Resource Type Category)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + type: 'object', + properties: { + 'Related Resource Identifier': { + enum: [ + 'http://purl.org/dc/terms/identifier', + ], + }, + 'Related Resource Identifier Type': { + enum: [ + 'http://schema.org/propertyID', + ], + }, + 'Resource Type Category': { + enum: [ + 'http://purl.org/dc/elements/1.1/type', + ], + }, + 'Relation of Data File to Resource': { + enum: [ + 'http://rs.tdwg.org/dwc/terms/relationshipOfResource', + ], + }, + }, + additionalProperties: false, + }, + 'Relation of Data File to Resource': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/6fea13dd-6ff4-4371-b04b-4d75d4c4a7fe', + 'schema:identifier': 'relation_of_data_file_to_resource', + 'schema:name': 'Relation of Data File to Resource', + 'schema:description': 'Description of the relationship of the object being described (A) to the related resource (B).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Relation of Data File to Resource', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Relation of Data File to Resource)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Related Resource Identifier', + 'Related Resource Identifier Type', + 'Resource Type Category', + 'Relation of Data File to Resource', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/7ba80b7a-895f-4f1b-8a6a-513c219b1dc4', + _ui: { + order: [ + 'Related Resource Identifier', + 'Related Resource Identifier Type', + 'Resource Type Category', + 'Relation of Data File to Resource', + ], + propertyLabels: { + 'Related Resource Identifier': 'Related Resource Identifier', + 'Related Resource Identifier Type': 'Related Resource Identifier Type', + 'Resource Type Category': 'Resource Type Category', + 'Relation of Data File to Resource': 'Relation of Data File to Resource', + }, + propertyDescriptions: { + 'Related Resource Identifier': 'A globally unique string that identifies a resource that is related to the data file being described.', + 'Related Resource Identifier Type': 'The identifier type used to identify the related resource.', + 'Resource Type Category': "Categorical type of the resource being described. (Corresponds to DataCite's resourceTypeGeneral.)", + 'Relation of Data File to Resource': 'Description of the relationship of the object being described (A) to the related resource (B).', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_related_resource', + 'schema:name': 'Data File Related Resource', + 'schema:description': 'Information about resource related to the data file or other entity being described.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Related Resource', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'Data File Description': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Description)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + type: 'object', + properties: { + 'Data File Description': { + enum: [ + 'http://purl.org/dc/terms/description', + ], + }, + 'Description Language': { + enum: [ + 'http://purl.org/dc/terms/language', + ], + }, + }, + additionalProperties: false, + }, + 'Description Language': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/2839944a-b5f6-41c7-ad68-9532f8fabeed', + 'schema:identifier': 'description_language', + 'schema:name': 'Description Language', + 'schema:description': 'Language in which the Data File description is provided.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Description Language', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [], + ontologies: [ + { + uri: 'https://bioportal.bioontology.org/ontologies/ISO639-1', + acronym: 'ISO639-1', + name: 'ISO639-1', + }, + ], + literals: [], + defaultValue: { + termUri: 'https://www.omg.org/spec/LCC/Languages/LaISO639-1-LanguageCodes/en', + 'rdfs:label': '[en]', + }, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Description Language)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Data File Description': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/7e02b791-d62c-4677-99f9-b5eca4bb64a7', + 'schema:identifier': 'data_file_description', + 'schema:name': 'Data File Description', + 'schema:description': 'An account of the resource; may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Description', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Data File Description)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Data File Description', + 'Description Language', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/f5083cf2-503d-411b-a2c3-5d7332f5e98a', + _ui: { + order: [ + 'Data File Description', + 'Description Language', + ], + propertyLabels: { + 'Data File Description': 'Data File Description', + 'Description Language': 'Description Language', + }, + propertyDescriptions: { + 'Data File Description': 'An account of the resource; may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.', + 'Description Language': 'Language in which the Data File description is provided.', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_description', + 'schema:name': 'Data File Description', + 'schema:description': 'Summary of the Data File and its contents.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Description', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'pav:createdBy': { + type: [ + 'string', + 'null', + ], + format: 'uri', + }, + 'Data File Funding Source': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Funding Source)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'Award Title': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/262a879b-7b27-4cc1-b4d5-78785c387cf6', + 'schema:identifier': 'award_title', + 'schema:name': 'Award Title', + 'schema:description': 'The human readable title of the award, grant, or other specific funding mechanism for the described data file.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Award Title', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Award Title)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Award Page Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/a393fe14-510d-49b9-b9c9-84975700ebd5', + 'schema:identifier': 'award_page_identifier', + 'schema:name': 'Award Page Identifier', + 'schema:description': 'The unique identifier (IRI) leading to a page provided by the funder for more information about the award (grant).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Award Page Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'link', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Award Page Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Funder Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/bd077bd4-63a2-4828-a9f6-e4f3e84d18f4', + 'schema:identifier': 'funder_identifier', + 'schema:name': 'Funder Identifier', + 'schema:description': 'Globally unique string that identifies the funding provider.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Funder Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Funder Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Funder Identifier Scheme Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/50b76c9b-24e0-4245-add1-2dac907b84a9', + 'schema:identifier': 'funder_identifier_scheme_identifier', + 'schema:name': 'Funder Identifier Scheme Identifier', + 'schema:description': 'The unique identifier (IRI) of the scheme or authority used for the Funder Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Funder Identifier Scheme Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'link', + hidden: true, + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Funder Identifier Scheme Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Funder Name': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/16f1c3aa-d065-4e53-a2ff-45cdc7547350', + 'schema:identifier': 'funder_name', + 'schema:name': 'Funder Name', + 'schema:description': "Name of the organization providing the funding for the described data file ('funding provider').", + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Funder Name', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Funder Name)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Award Local Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/2b4dc507-b99d-4638-b7f8-ea07c655f6ff', + 'schema:identifier': 'award_local_identifier', + 'schema:name': 'Award Local Identifier', + 'schema:description': 'The code assigned by the funding provider to a sponsored award (grant). (Can be an IRI, but typically is not.)', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Award Local Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Award Local Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Funder Identifier Scheme': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/0c4cf4b4-9241-4bbc-ad39-8962138c86e2', + 'schema:identifier': 'funder_identifier_scheme', + 'schema:name': 'Funder Identifier Scheme', + 'schema:description': 'Name of the scheme or authority for the Funder Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Funder Identifier Scheme', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/IdentifierScheme', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Funder Identifier Scheme)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + type: 'object', + properties: { + 'Award Title': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasAwardTitle', + ], + }, + 'Award Page Identifier': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasAwardPageIRI', + ], + }, + 'Award Local Identifier': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasAwardLocalIdentifier', + ], + }, + 'Funder Name': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasFunderName', + ], + }, + 'Funder Identifier': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasFunderIdentifier', + ], + }, + 'Funder Identifier Scheme': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasFunderIdentifierScheme', + ], + }, + 'Funder Identifier Scheme Identifier': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasFunderIdentifierSchemeIRI', + ], + }, + }, + additionalProperties: false, + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Award Title', + 'Award Page Identifier', + 'Award Local Identifier', + 'Funder Name', + 'Funder Identifier', + 'Funder Identifier Scheme', + 'Funder Identifier Scheme Identifier', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/68288b82-e26d-4d84-ae2d-419fbab912f9', + _ui: { + order: [ + 'Award Title', + 'Award Page Identifier', + 'Award Local Identifier', + 'Funder Name', + 'Funder Identifier', + 'Funder Identifier Scheme', + 'Funder Identifier Scheme Identifier', + ], + propertyLabels: { + 'Award Title': 'Award Title', + 'Award Page Identifier': 'Award Page Identifier', + 'Award Local Identifier': 'Award Local Identifier', + 'Funder Name': 'Funder Name', + 'Funder Identifier': 'Funder Identifier', + 'Funder Identifier Scheme': 'Funder Identifier Scheme', + 'Funder Identifier Scheme Identifier': 'Funder Identifier Scheme Identifier', + }, + propertyDescriptions: { + 'Award Title': 'The human readable title of the award, grant, or other specific funding mechanism for the described data file.', + 'Award Page Identifier': 'The unique identifier (IRI) leading to a page provided by the funder for more information about the award (grant).', + 'Award Local Identifier': 'The code assigned by the funding provider to a sponsored award (grant). (Can be an IRI, but typically is not.)', + 'Funder Name': "Name of the organization providing the funding for the described data file ('funding provider').", + 'Funder Identifier': 'Globally unique string that identifies the funding provider.', + 'Funder Identifier Scheme': 'Name of the scheme or authority for the Funder Identifier.', + 'Funder Identifier Scheme Identifier': 'The unique identifier (IRI) of the scheme or authority used for the Funder Identifier.', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_funding_source', + 'schema:name': 'Data File Funding Source', + 'schema:description': 'The sources of funding that enabled and drove the creation of the data file. (Non-monetary sources are described under Contributor.)', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Funding Source', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'Data Source Stream': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data Source Stream)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'Data Stream Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/7f4e2213-fec8-4b6e-ac80-525516f4b7a8', + 'schema:identifier': 'data_stream_identifier', + 'schema:name': 'Data Stream Identifier', + 'schema:description': 'Globally unique string that identifies the collection of records coming from a data source.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data Stream Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Data Stream Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Data Stream Scheme': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/1a5a9cc5-57cb-412b-8ad6-6db78956b939', + 'schema:identifier': 'data_stream_scheme', + 'schema:name': 'Data Stream Scheme', + 'schema:description': 'The name of the scheme or authority used for the Data Stream Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data Stream Scheme', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/IdentifierType', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Data Stream Scheme)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Data Stream Name': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/8895b413-af11-472c-82f7-b05f0565762e', + 'schema:identifier': 'data_stream_name', + 'schema:name': 'Data Stream Name', + 'schema:description': 'Human readable name of collection of records coming from a data source. A data stream is a collection of one or more variable records originating from a single data source (e.g., sensor, process, or person). A data stream can grow over time.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data Stream Name', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Data Stream Name)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + type: 'object', + properties: { + 'Data Stream Name': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasDataStream', + ], + }, + 'Data Stream Identifier': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasDataStreamIRI', + ], + }, + 'Data Stream Scheme': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasDataStreamScheme', + ], + }, + 'Data Stream Scheme Identifier': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasDataStreamSchemeIRI', + ], + }, + }, + additionalProperties: false, + }, + 'Data Stream Scheme Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/205775e9-01a9-4674-8ff1-42b4ab4a5b27', + 'schema:identifier': 'data_stream_scheme_identifier', + 'schema:name': 'Data Stream Scheme Identifier', + 'schema:description': 'The unique identifier (IRI) of the scheme or authority used for the Data Stream Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data Stream Scheme Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'link', + hidden: true, + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Data Stream Scheme Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Data Stream Name', + 'Data Stream Identifier', + 'Data Stream Scheme', + 'Data Stream Scheme Identifier', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/d7b8e30e-9995-40b5-a409-759cc3ddadaf', + _ui: { + order: [ + 'Data Stream Name', + 'Data Stream Identifier', + 'Data Stream Scheme', + 'Data Stream Scheme Identifier', + ], + propertyLabels: { + 'Data Stream Name': 'Data Stream Name', + 'Data Stream Identifier': 'Data Stream Identifier', + 'Data Stream Scheme': 'Data Stream Scheme', + 'Data Stream Scheme Identifier': 'Data Stream Scheme Identifier', + }, + propertyDescriptions: { + 'Data Stream Name': 'Human readable name of collection of records coming from a data source. A data stream is a collection of one or more variable records originating from a single data source (e.g., sensor, process, or person). A data stream can grow over time.', + 'Data Stream Identifier': 'Globally unique string that identifies the collection of records coming from a data source.', + 'Data Stream Scheme': 'The name of the scheme or authority used for the Data Stream Identifier.', + 'Data Stream Scheme Identifier': 'The unique identifier (IRI) of the scheme or authority used for the Data Stream Identifier.', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_source_stream', + 'schema:name': 'Data Source Stream', + 'schema:description': 'A collection of one or more variable records originating from a single data source (e.g., sensor, process, or person). A data stream can grow over time.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data Source Stream', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'Data File Language': { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Language)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'Primary Language': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/b246b473-bd28-4c79-a41d-d68bda9b1ddb', + 'schema:identifier': 'primary_language', + 'schema:name': 'Primary Language', + 'schema:description': 'Primary language used to present the data file (if multiple languages are present).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Primary Language', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [], + ontologies: [ + { + uri: 'https://bioportal.bioontology.org/ontologies/ISO639-1', + acronym: 'ISO639-1', + name: 'ISO639-1', + }, + ], + literals: [], + defaultValue: { + termUri: 'https://www.omg.org/spec/LCC/Languages/LaISO639-1-LanguageCodes/en', + 'rdfs:label': '[en]', + }, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Primary Language)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + type: 'object', + properties: { + 'Primary Language': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasPrimaryLanguage', + ], + }, + 'Other Language': { + enum: [ + 'http://purl.org/dc/terms/language', + ], + }, + }, + additionalProperties: false, + }, + 'Other Language': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/6062a3cd-ac6b-4ae3-a7a5-49fbb175ea94', + 'schema:identifier': 'other_language', + 'schema:name': 'Other Language', + 'schema:description': 'A language in which the data file being described is provided.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Other Language', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [], + ontologies: [ + { + uri: 'https://bioportal.bioontology.org/ontologies/ISO639-1', + acronym: 'ISO639-1', + name: 'ISO639-1', + }, + ], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Other Language)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Primary Language', + 'Other Language', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/250eeb13-1f1d-4b20-98b6-21a072d7f595', + _ui: { + order: [ + 'Primary Language', + 'Other Language', + ], + propertyLabels: { + 'Primary Language': 'Primary Language', + 'Other Language': 'Other Language', + }, + propertyDescriptions: { + 'Primary Language': 'Primary language used to present the data file (if multiple languages are present).', + 'Other Language': 'A language in which the data file being described is provided.', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_language', + 'schema:name': 'Data File Language', + 'schema:description': 'Language in which the data file being described is provided.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Language', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'oslc:modifiedBy': { + type: [ + 'string', + 'null', + ], + format: 'uri', + }, + '@id': { + type: [ + 'string', + 'null', + ], + format: 'uri', + }, + 'Data File Creator': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Creator)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'Creator Identifier Scheme Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/598b03c7-b97f-4308-8d08-135c6cf5e964', + 'schema:identifier': 'creator_identifier_scheme_identifier', + 'schema:name': 'Creator Identifier Scheme Identifier', + 'schema:description': 'The unique identifier (IRI) of the scheme or authority used for the Creator Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Creator Identifier Scheme Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'link', + hidden: true, + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Creator Identifier Scheme Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Creator Role': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/8e3b217c-95c7-4d9e-a942-e3238e8f5d3a', + 'schema:identifier': 'creator_role', + 'schema:name': 'Creator Role', + 'schema:description': 'The role of the creator in bringing the described data file into existence.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Creator Role', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/ContributorRole', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Creator Role)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Creator Type': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/eddef290-6784-42bc-a1aa-402951944215', + 'schema:identifier': 'creator_type', + 'schema:name': 'Creator Type', + 'schema:description': 'The type of the creator of the described data file (person or organization).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Creator Type', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/ResourceCreatorType', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Creator Type)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Creator Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/c2338c38-81e7-4f3f-9003-82e9012e1734', + 'schema:identifier': 'creator_identifier', + 'schema:name': 'Creator Identifier', + 'schema:description': 'Globally unique string that identifies the creator (an individual or legal entity).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Creator Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Creator Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Creator Affiliation Identifier Scheme Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/e0f83530-7fb1-4814-9bc4-4562c105206e', + 'schema:identifier': 'creator_affiliation_identifier_scheme_identifier', + 'schema:name': 'Creator Affiliation Identifier Scheme Identifier', + 'schema:description': 'The unique identifier (IRI) of the scheme or authority used for the Subject Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Creator Affiliation Identifier Scheme Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'link', + hidden: true, + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Creator Affiliation Identifier Scheme Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Creator Identifier Scheme': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/3aefa9ca-8ebd-472d-8e21-862437782bc2', + 'schema:identifier': 'creator_identifier_scheme', + 'schema:name': 'Creator Identifier Scheme', + 'schema:description': 'The name of the scheme or authority used for the Creator Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Creator Identifier Scheme', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/IdentifierScheme', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Creator Identifier Scheme)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Creator Family Name': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/bf8ef2a5-cc9a-4337-981d-cb9247bffdf1', + 'schema:identifier': 'creator_family_name', + 'schema:name': 'Creator Family Name', + 'schema:description': 'If the creator is a person, the surname(s) of the creator (e.g., last name in Western languagues, first name in Asian languages).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Creator Family Name', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Creator Family Name)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + type: 'object', + properties: { + 'Creator Type': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasCreatorType', + ], + }, + 'Creator Name': { + enum: [ + 'http://purl.org/dc/terms/creator', + ], + }, + 'Creator Given Name': { + enum: [ + 'http://xmlns.com/foaf/0.1/givenName', + ], + }, + 'Creator Family Name': { + enum: [ + 'http://xmlns.com/foaf/0.1/familyName', + ], + }, + 'Creator Identifier': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasCreatorIdentifier', + ], + }, + 'Creator Identifier Scheme': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasCreatorIdentifierScheme', + ], + }, + 'Creator Identifier Scheme Identifier': { + enum: [ + 'https://schema.metadatacenter.org/properties/cffc1d3a-abb7-4d1b-b523-76948f3452a9', + ], + }, + 'Creator Affiliation': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasCreatorAffiliation', + ], + }, + 'Creator Affiliation Identifier': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasCreatorAffiliationIdentifier', + ], + }, + 'Creator Affiliation Identifier Scheme': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasCreatorAffiliationIdentifierScheme', + ], + }, + 'Creator Affiliation Identifier Scheme Identifier': { + enum: [ + 'https://schema.metadatacenter.org/properties/e8678031-13bc-44d2-a80e-b7af75bfa4d5', + ], + }, + 'Creator Email': { + enum: [ + 'http://xmlns.com/foaf/0.1/mbox', + ], + }, + 'Creator Role': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasCreatorRole', + ], + }, + }, + additionalProperties: false, + }, + 'Creator Affiliation Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/34293eda-7e7c-4f5b-ab5d-fd45a8073c94', + 'schema:identifier': 'creator_affiliation_identifier', + 'schema:name': 'Creator Affiliation Identifier', + 'schema:description': 'Globally unique string that identifies the organizational affiliation of the creator.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Creator Affiliation Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Creator Affiliation Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Creator Given Name': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/2f2c141f-5694-4035-80f2-5f2e422a446f', + 'schema:identifier': 'creator_given_name', + 'schema:name': 'Creator Given Name', + 'schema:description': 'If the creator is a person, the personal name(s) of the creator (e.g., first and optionally middle name in Western languagues, optionally middle and last name in Asian languages).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Creator Given Name', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Creator Given Name)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Creator Email': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/8aad13d2-1137-46ae-ab20-ff88c3313c28', + 'schema:identifier': 'creator_email', + 'schema:name': 'Creator Email', + 'schema:description': 'An email address of the creator.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Creator Email', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'email', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Creator Email)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Creator Name': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/c281adb4-27dd-46f7-983f-6df5801a4134', + 'schema:identifier': 'creator_name', + 'schema:name': 'Creator Name', + 'schema:description': 'The full name of the creator.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Creator Name', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Creator Name)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Creator Affiliation': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/2c4b1ad1-235b-49bb-8085-0b5f46116ce3', + 'schema:identifier': 'creator_affiliation', + 'schema:name': 'Creator Affiliation', + 'schema:description': 'The organizational or institutional affiliation of the creator.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Creator Affiliation', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Creator Affiliation)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + 'Creator Affiliation Identifier Scheme': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/b2bf4248-a08c-48d2-98f9-4206f765a469', + 'schema:identifier': 'creator_affiliation_identifier_scheme', + 'schema:name': 'Creator Affiliation Identifier Scheme', + 'schema:description': 'The name of the scheme or authority used for the Creator Affiliation Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Creator Affiliation Identifier Scheme', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/IdentifierScheme', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Creator Affiliation Identifier Scheme)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Creator Type', + 'Creator Name', + 'Creator Given Name', + 'Creator Family Name', + 'Creator Identifier', + 'Creator Identifier Scheme', + 'Creator Identifier Scheme Identifier', + 'Creator Affiliation', + 'Creator Affiliation Identifier', + 'Creator Affiliation Identifier Scheme', + 'Creator Affiliation Identifier Scheme Identifier', + 'Creator Email', + 'Creator Role', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/167697dc-265c-4e9a-95e6-55f69b2f8f4a', + _ui: { + order: [ + 'Creator Type', + 'Creator Name', + 'Creator Given Name', + 'Creator Family Name', + 'Creator Identifier', + 'Creator Identifier Scheme', + 'Creator Identifier Scheme Identifier', + 'Creator Affiliation', + 'Creator Affiliation Identifier', + 'Creator Affiliation Identifier Scheme', + 'Creator Affiliation Identifier Scheme Identifier', + 'Creator Email', + 'Creator Role', + ], + propertyLabels: { + 'Creator Type': 'Creator Type', + 'Creator Name': 'Creator Name', + 'Creator Given Name': 'Creator Given Name', + 'Creator Family Name': 'Creator Family Name', + 'Creator Identifier': 'Creator Identifier', + 'Creator Identifier Scheme': 'Creator Identifier Scheme', + 'Creator Identifier Scheme Identifier': 'Creator Identifier Scheme Identifier', + 'Creator Affiliation': 'Creator Affiliation', + 'Creator Affiliation Identifier': 'Creator Affiliation Identifier', + 'Creator Affiliation Identifier Scheme': 'Creator Affiliation Identifier Scheme', + 'Creator Affiliation Identifier Scheme Identifier': 'Creator Affiliation Identifier Scheme Identifier', + 'Creator Email': 'Creator Email', + 'Creator Role': 'Creator Role', + }, + propertyDescriptions: { + 'Creator Type': 'The type of the creator of the described data file (person or organization).', + 'Creator Name': 'The full name of the creator.', + 'Creator Given Name': 'If the creator is a person, the personal name(s) of the creator (e.g., first and optionally middle name in Western languagues, optionally middle and last name in Asian languages).', + 'Creator Family Name': 'If the creator is a person, the surname(s) of the creator (e.g., last name in Western languagues, first name in Asian languages).', + 'Creator Identifier': 'Globally unique string that identifies the creator (an individual or legal entity).', + 'Creator Identifier Scheme': 'The name of the scheme or authority used for the Creator Identifier.', + 'Creator Identifier Scheme Identifier': 'The unique identifier (IRI) of the scheme or authority used for the Creator Identifier.', + 'Creator Affiliation': 'The organizational or institutional affiliation of the creator.', + 'Creator Affiliation Identifier': 'Globally unique string that identifies the organizational affiliation of the creator.', + 'Creator Affiliation Identifier Scheme': 'The name of the scheme or authority used for the Creator Affiliation Identifier.', + 'Creator Affiliation Identifier Scheme Identifier': 'The unique identifier (IRI) of the scheme or authority used for the Subject Identifier.', + 'Creator Email': 'An email address of the creator.', + 'Creator Role': 'The role of the creator in bringing the described data file into existence.', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_creator', + 'schema:name': 'Data File Creator', + 'schema:description': 'An entity that brought into existence the data file being described. Creators can be people, organizations and/or physical or virtual infrastructure (e.g., sensors, software).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Creator', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'Data File Version': { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Version)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + type: 'object', + properties: { + Version: { + enum: [ + 'http://schema.org/version', + ], + }, + }, + additionalProperties: false, + }, + Version: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/b4e196b9-9aaf-49cf-9235-4e3866a40379', + 'schema:identifier': 'version', + 'schema:name': 'Version', + 'schema:description': 'The string identifying the version of the data file or other resource being described.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Version', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Version)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Version', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/e6c6d89b-9af7-4f9b-9d9a-daafbe8684ef', + _ui: { + order: [ + 'Version', + ], + propertyLabels: { + Version: 'Version', + }, + propertyDescriptions: { + Version: 'The string identifying the version of the data file or other resource being described.', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_version', + 'schema:name': 'Data File Version', + 'schema:description': 'Version of the resource being described.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Version', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Data File Rights': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Rights)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'License Name': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/c26853f5-2e33-4a00-a8c6-04237dd31fb6', + 'schema:identifier': 'license_name', + 'schema:name': 'License Name', + 'schema:description': 'A standardized version of the license name.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'License Name', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/LicenseIdentifier', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(License Name)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + 'License Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/0e24ca6d-3f79-43f2-8e18-37c1083e2207', + 'schema:identifier': 'license_identifier', + 'schema:name': 'License Identifier', + 'schema:description': 'The unique identifier (IRI) of the license for the data file being described.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'License Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'link', + hidden: true, + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(License Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + type: 'object', + properties: { + 'License Name': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasLicenseName', + ], + }, + 'License Identifier': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasLicenseIdentifier', + ], + }, + 'License Text': { + enum: [ + 'http://purl.org/dc/terms/rights', + ], + }, + }, + additionalProperties: false, + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'License Text': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/6553d689-dbf4-4354-af91-7e5107e12ab1', + 'schema:identifier': 'license_text', + 'schema:name': 'License Text', + 'schema:description': 'Text string describing any rights information for the data file being described.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'License Text', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(License Text)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'License Name', + 'License Identifier', + 'License Text', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/56706780-ceba-4ae6-a183-ee41b8ecbab7', + _ui: { + order: [ + 'License Name', + 'License Identifier', + 'License Text', + ], + propertyLabels: { + 'License Name': 'License Name', + 'License Identifier': 'License Identifier', + 'License Text': 'License Text', + }, + propertyDescriptions: { + 'License Name': 'A standardized version of the license name.', + 'License Identifier': 'The unique identifier (IRI) of the license for the data file being described.', + 'License Text': 'Text string describing any rights information for the data file being described.', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_rights', + 'schema:name': 'Data File Rights', + 'schema:description': 'Way in which the data file may or may not be accessed and used.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Rights', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'Data File Parent Study': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Parent Study)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'Study Identifier Scheme': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/b05f4c23-5610-4e23-944b-9e35fd671226', + 'schema:identifier': 'study_identifier_scheme', + 'schema:name': 'Study Identifier Scheme', + 'schema:description': 'The name of the scheme or authority used for the Study Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Study Identifier Scheme', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/IdentifierType', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Study Identifier Scheme)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Study End Date': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/684d5931-0e9b-4ad8-bda7-bcc24603a4aa', + 'schema:identifier': 'study_end_date', + 'schema:name': 'Study End Date', + 'schema:description': 'The official end date for the study for which this data file was created.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Study End Date', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + temporalType: 'xsd:date', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + temporalGranularity: 'day', + valueRecommendationEnabled: true, + inputType: 'temporal', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Study End Date)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Study Start Date': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/6ec4c383-e9d9-44d8-a6cc-e0b45f4bfa5d', + 'schema:identifier': 'study_start_date', + 'schema:name': 'Study Start Date', + 'schema:description': 'The official start date for the study for which this data file was created.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Study Start Date', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + temporalType: 'xsd:date', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + temporalGranularity: 'day', + valueRecommendationEnabled: true, + inputType: 'temporal', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Study Start Date)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Study Local Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/734e7238-d070-43cf-acb3-2c17d1c5a259', + 'schema:identifier': 'study_local_identifier', + 'schema:name': 'Study Local Identifier', + 'schema:description': 'A local identifier, such as a phs number, that identifies the study for which this data file was created.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Study Local Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: true, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Study Local Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Study Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/18edb9f7-9caf-40fe-9b72-a4370d52fa03', + 'schema:identifier': 'study_identifier', + 'schema:name': 'Study Identifier', + 'schema:description': 'Globally unique string that identifies the study for which this data file was created.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Study Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Study Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Study Identifier Scheme Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/b1fedc9e-df7d-4e2c-9b90-fc02bd3c9efc', + 'schema:identifier': 'study_identifier_scheme_identifier', + 'schema:name': 'Study Identifier Scheme Identifier', + 'schema:description': 'The unique identifier (IRI) of the scheme or authority used for the Study Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Study Identifier Scheme Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'link', + hidden: true, + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Study Identifier Scheme Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + type: 'object', + properties: { + 'Study Local Identifier': { + enum: [ + 'https://schema.metadatacenter.org/properties/437aa34a-63dd-4b17-8529-bef37c10e7d7', + ], + }, + 'Study Identifier': { + enum: [ + 'https://schema.metadatacenter.org/properties/bfeef781-7d46-425b-8c6c-5727361104bb', + ], + }, + 'Study Identifier Scheme': { + enum: [ + 'https://schema.metadatacenter.org/properties/0128c4b0-7962-4dd1-b445-3df29c6eec26', + ], + }, + 'Study Identifier Scheme Identifier': { + enum: [ + 'https://schema.metadatacenter.org/properties/f3526909-340f-41c2-adf4-e06a6bccb9c9', + ], + }, + 'Study Name': { + enum: [ + 'https://schema.metadatacenter.org/properties/d6177674-f67b-464a-af13-e9f590d98cc7', + ], + }, + 'Study Start Date': { + enum: [ + 'https://schema.metadatacenter.org/properties/3cc5cb74-d84a-4f84-9667-a565a2c2a999', + ], + }, + 'Study End Date': { + enum: [ + 'https://schema.metadatacenter.org/properties/3c161e48-00a2-4fbd-b668-015c16541673', + ], + }, + }, + additionalProperties: false, + }, + 'Study Name': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/8e11ad78-60df-4df0-9b24-8f9932a605ac', + 'schema:identifier': 'study_name', + 'schema:name': 'Study Name', + 'schema:description': 'The name of the research study for which this data file was created.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Study Name', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Study Name)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Study Local Identifier', + 'Study Identifier', + 'Study Identifier Scheme', + 'Study Identifier Scheme Identifier', + 'Study Name', + 'Study Start Date', + 'Study End Date', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/c17f7942-e99a-4146-b364-63a06e889e1d', + _ui: { + order: [ + 'Study Local Identifier', + 'Study Identifier', + 'Study Identifier Scheme', + 'Study Identifier Scheme Identifier', + 'Study Name', + 'Study Start Date', + 'Study End Date', + ], + propertyLabels: { + 'Study Local Identifier': 'Study Local Identifier', + 'Study Identifier': 'Study Identifier', + 'Study Identifier Scheme': 'Study Identifier Scheme', + 'Study Identifier Scheme Identifier': 'Study Identifier Scheme Identifier', + 'Study Name': 'Study Name', + 'Study Start Date': 'Study Start Date', + 'Study End Date': 'Study End Date', + }, + propertyDescriptions: { + 'Study Local Identifier': 'A local identifier, such as a phs number, that identifies the study for which this data file was created.', + 'Study Identifier': 'Globally unique string that identifies the study for which this data file was created.', + 'Study Identifier Scheme': 'The name of the scheme or authority used for the Study Identifier.', + 'Study Identifier Scheme Identifier': 'The unique identifier (IRI) of the scheme or authority used for the Study Identifier.', + 'Study Name': 'The name of the research study for which this data file was created.', + 'Study Start Date': 'The official start date for the study for which this data file was created.', + 'Study End Date': 'The official end date for the study for which this data file was created.', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_parent_study', + 'schema:name': 'Data File Parent Study', + 'schema:description': 'The research study for which this data file was created.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Parent Study', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'Data File Temporal Coverage': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Temporal Coverage)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Temporal Extent Minimum Value': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/8072a4c8-e20b-408d-948c-c9877947069a', + 'schema:identifier': 'temporal_extent_minimum_value', + 'schema:name': 'Temporal Extent Minimum Value', + 'schema:description': 'The start date (and optionally time) of the data.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Temporal Extent Minimum Value', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + temporalType: 'xsd:date', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + temporalGranularity: 'day', + valueRecommendationEnabled: true, + inputType: 'temporal', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Temporal Extent Minimum Value)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Temporal Extent Maximum Value': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/f89820cb-d044-4b90-9676-5dfa8eff4153', + 'schema:identifier': 'temporal_extent_maximum_value', + 'schema:name': 'Temporal Extent Maximum Value', + 'schema:description': 'The end date (and optionally time) of the data.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Temporal Extent Maximum Value', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + temporalType: 'xsd:date', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + temporalGranularity: 'day', + valueRecommendationEnabled: true, + inputType: 'temporal', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Temporal Extent Maximum Value)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Temporal Resolution': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/2ae8e38c-0cd5-4d94-a463-e963363ebd9b', + 'schema:identifier': 'temporal_resolution', + 'schema:name': 'Temporal Resolution', + 'schema:description': 'Interval between two consecutive data records.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Temporal Resolution', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Temporal Resolution)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + Duration: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/6a162b6c-4d69-4554-9cd7-411aba2ffbdb', + 'schema:identifier': 'duration', + 'schema:name': 'Duration', + 'schema:description': 'The total duration of data temporal coverage.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Duration', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Duration)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + type: 'object', + properties: { + 'Temporal Extent Minimum Value': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasTemporalExtentMinimumValue', + ], + }, + 'Temporal Extent Maximum Value': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasTemporalExtentMaximumValue', + ], + }, + 'Temporal Resolution': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasTemporalResolution', + ], + }, + Duration: { + enum: [ + 'http://schema.org/duration', + ], + }, + }, + additionalProperties: false, + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Temporal Extent Minimum Value', + 'Temporal Extent Maximum Value', + 'Temporal Resolution', + 'Duration', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/98c2245a-c029-44da-9273-3465fa1716c6', + _ui: { + order: [ + 'Temporal Extent Minimum Value', + 'Temporal Extent Maximum Value', + 'Temporal Resolution', + 'Duration', + ], + propertyLabels: { + 'Temporal Extent Minimum Value': 'Temporal Extent Minimum Value', + 'Temporal Extent Maximum Value': 'Temporal Extent Maximum Value', + 'Temporal Resolution': 'Temporal Resolution', + Duration: 'Duration', + }, + propertyDescriptions: { + 'Temporal Extent Minimum Value': 'The start date (and optionally time) of the data.', + 'Temporal Extent Maximum Value': 'The end date (and optionally time) of the data.', + 'Temporal Resolution': 'Interval between two consecutive data records.', + Duration: 'The total duration of data temporal coverage.', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_temporal_coverage', + 'schema:name': 'Data File Temporal Coverage', + 'schema:description': 'The temporal coverage and resolution of the data file being described.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Temporal Coverage', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + '@context': { + properties: { + schema: { + type: 'string', + format: 'uri', + enum: [ + 'http://schema.org/', + ], + }, + 'Data Characteristics Summary': { + enum: [ + 'https://schema.metadatacenter.org/properties/857e5338-c698-48a4-af29-a2d049bc8152', + ], + }, + 'Auxiliary Metadata': { + enum: [ + 'https://schema.metadatacenter.org/properties/b604db75-3cad-422d-8b85-5bb363635134', + ], + }, + 'Data File Process Version': { + enum: [ + 'https://schema.metadatacenter.org/properties/c14dea39-018f-49c4-ba44-6254a88fd173', + ], + }, + xsd: { + type: 'string', + format: 'uri', + enum: [ + 'http://www.w3.org/2001/XMLSchema#', + ], + }, + 'pav:createdOn': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + 'xsd:dateTime', + ], + }, + }, + }, + skos: { + type: 'string', + format: 'uri', + enum: [ + 'http://www.w3.org/2004/02/skos/core#', + ], + }, + 'Data File Vertical Coverage': { + enum: [ + 'https://schema.metadatacenter.org/properties/13f51100-1cf8-451a-b7a0-52932377171e', + ], + }, + rdfs: { + type: 'string', + format: 'uri', + enum: [ + 'http://www.w3.org/2000/01/rdf-schema#', + ], + }, + 'Data File Related Resource': { + enum: [ + 'https://schema.metadatacenter.org/properties/848dc135-9068-4a5b-ba8c-98a5994f9d59', + ], + }, + 'Data File Description': { + enum: [ + 'https://schema.metadatacenter.org/properties/595ca75a-a61e-45f8-964c-a2d00c1874b4', + ], + }, + 'pav:createdBy': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + '@id', + ], + }, + }, + }, + 'Data File Funding Source': { + enum: [ + 'https://schema.metadatacenter.org/properties/fe98b0dc-7056-44d1-b0a7-4b02ef8ccc6f', + ], + }, + 'Data Source Stream': { + enum: [ + 'https://schema.metadatacenter.org/properties/b012de2c-549b-4c51-b0be-2e0bb12bf9cb', + ], + }, + 'Data File Language': { + enum: [ + 'https://schema.metadatacenter.org/properties/a690b6b3-230b-4ef9-91a7-ce56209368ab', + ], + }, + 'rdfs:label': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + 'xsd:string', + ], + }, + }, + }, + 'oslc:modifiedBy': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + '@id', + ], + }, + }, + }, + 'skos:notation': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + 'xsd:string', + ], + }, + }, + }, + 'Data File Creator': { + enum: [ + 'https://schema.metadatacenter.org/properties/1926be54-a337-491a-9613-929176770ad3', + ], + }, + 'Data File Version': { + enum: [ + 'https://schema.metadatacenter.org/properties/6e0d575a-f73d-4fe8-997d-26c35ac5630b', + ], + }, + 'Data File Rights': { + enum: [ + 'https://schema.metadatacenter.org/properties/a61a2f7e-b26c-4773-b0fe-4b426e7b1f6e', + ], + }, + pav: { + type: 'string', + format: 'uri', + enum: [ + 'http://purl.org/pav/', + ], + }, + 'Data File Parent Study': { + enum: [ + 'https://schema.metadatacenter.org/properties/6927832f-a6c4-4ff3-8e36-88d43401ae40', + ], + }, + 'Data File Temporal Coverage': { + enum: [ + 'https://schema.metadatacenter.org/properties/150a6aa5-9d67-41f6-b02e-212cf2fdbd3d', + ], + }, + Date: { + enum: [ + 'https://schema.metadatacenter.org/properties/cf0b53d3-495f-408d-9109-411785903323', + ], + }, + oslc: { + type: 'string', + format: 'uri', + enum: [ + 'http://open-services.net/ns/core#', + ], + }, + 'Resource Type': { + enum: [ + 'https://schema.metadatacenter.org/properties/f01ed633-83ff-42ff-8449-a85267d46077', + ], + }, + 'Data File Spatial Coverage': { + enum: [ + 'https://schema.metadatacenter.org/properties/9767716e-1651-4a48-9a45-6d69bab4a39d', + ], + }, + 'Data File Identifier': { + enum: [ + 'https://schema.metadatacenter.org/properties/d2d5081f-566e-4125-8cd7-b5ce78c7a4a6', + ], + }, + 'Data File Distribution': { + enum: [ + 'https://schema.metadatacenter.org/properties/1282a865-396b-467a-bc08-7d7942925a91', + ], + }, + 'Data Source': { + enum: [ + 'https://schema.metadatacenter.org/properties/08608e7f-1d8d-49a7-94ad-33e8e7da45b0', + ], + }, + 'schema:isBasedOn': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + '@id', + ], + }, + }, + }, + 'schema:description': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + 'xsd:string', + ], + }, + }, + }, + 'Data File Title': { + enum: [ + 'https://schema.metadatacenter.org/properties/7a9a025e-076c-4ae1-a05a-8729d791b460', + ], + }, + 'pav:lastUpdatedOn': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + 'xsd:dateTime', + ], + }, + }, + }, + 'Data File Contributor': { + enum: [ + 'https://schema.metadatacenter.org/properties/fa095d1a-9352-4036-a310-e2eec826eeb2', + ], + }, + 'schema:name': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + 'xsd:string', + ], + }, + }, + }, + 'pav:derivedFrom': { + type: 'object', + properties: { + '@type': { + type: 'string', + enum: [ + '@id', + ], + }, + }, + }, + 'Data File Subjects and Keywords': { + enum: [ + 'https://schema.metadatacenter.org/properties/d5a2dc1d-5403-4bf2-b42d-ae52a09a43c6', + ], + }, + }, + type: 'object', + required: [ + 'Data File Title', + 'Data File Identifier', + 'Resource Type', + 'Data File Version', + 'Data File Language', + 'Data File Subjects and Keywords', + 'Data File Description', + 'Data File Creator', + 'Data File Related Resource', + 'Data File Contributor', + 'Data File Rights', + 'Date', + 'Data File Parent Study', + 'Data File Funding Source', + 'Data File Distribution', + 'Data Characteristics Summary', + 'Data Source', + 'Data Source Stream', + 'Data File Process Version', + 'Data File Temporal Coverage', + 'Data File Spatial Coverage', + 'Data File Vertical Coverage', + 'Auxiliary Metadata', + 'oslc:modifiedBy', + 'pav:createdBy', + 'pav:createdOn', + 'pav:derivedFrom', + 'pav:lastUpdatedOn', + 'schema:description', + 'schema:isBasedOn', + 'schema:name', + ], + additionalProperties: false, + }, + Date: { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Date)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'Data File Date Type': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/a7a52fe5-1475-433d-8b11-85c72c8fff55', + 'schema:identifier': 'data_file_date_type', + 'schema:name': 'Data File Date Type', + 'schema:description': 'Type of the date with respect to the data file.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Date Type', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/DateType', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Data File Date Type)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + type: 'object', + properties: { + 'Data File Date Type': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasDatasetDateType', + ], + }, + 'Data File Date': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasDatasetDate', + ], + }, + }, + additionalProperties: false, + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Data File Date': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/1af8bfcb-6fb9-4d98-8ed9-7b872b1a1aa9', + 'schema:identifier': 'data_file_date', + 'schema:name': 'Data File Date', + 'schema:description': 'Date relevant to data file.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Date', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + temporalType: 'xsd:date', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + temporalGranularity: 'day', + valueRecommendationEnabled: true, + inputType: 'temporal', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Data File Date)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Data File Date Type', + 'Data File Date', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/3db0d338-8c0d-42d7-b4fd-376340c8a531', + _ui: { + order: [ + 'Data File Date Type', + 'Data File Date', + ], + propertyLabels: { + 'Data File Date Type': 'Data File Date Type', + 'Data File Date': 'Data File Date', + }, + propertyDescriptions: { + 'Data File Date Type': 'Type of the date with respect to the data file.', + 'Data File Date': 'Date relevant to data file.', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'date', + 'schema:name': 'Date', + 'schema:description': 'Relevant date related to the resource being described.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Date', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'Resource Type': { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Resource Type)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@id': { + type: 'string', + format: 'uri', + }, + 'Resource Type Category': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/e7f005a4-98c5-47fd-a654-2b2ed7963eec', + 'schema:identifier': 'resource_type_category', + 'schema:name': 'Resource Type Category', + 'schema:description': "Categorical type of the resource being described. (Corresponds to DataCite's resourceTypeGeneral.)", + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Resource Type Category', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'https://vocab.fairdatacollective.org/gdmt/ResourceTypeCategory', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Resource Type Category)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + type: 'object', + properties: { + 'Resource Type Category': { + enum: [ + 'http://purl.org/dc/terms/type', + ], + }, + 'Resource Type Detail': { + enum: [ + 'http://purl.org/dc/elements/1.1/type', + ], + }, + }, + additionalProperties: false, + }, + 'Resource Type Detail': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/e7a71d2c-456b-4234-af93-43046d8ded17', + 'schema:identifier': 'resource_type_detail', + 'schema:name': 'Resource Type Detail', + 'schema:description': "Brief free-text characterization of the type details for the resource being described. (Known as 'ResourceType' in DataCite Scheme: \"Text formats can be free-text OR terms from the CASRAI Publications resource type list.\")", + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Resource Type Detail', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Resource Type Detail)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Resource Type Category', + 'Resource Type Detail', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/654bf0af-9a64-4802-a084-82bc6a4fb7b5', + _ui: { + order: [ + 'Resource Type Category', + 'Resource Type Detail', + ], + propertyLabels: { + 'Resource Type Category': 'Resource Type Category', + 'Resource Type Detail': 'Resource Type Detail', + }, + propertyDescriptions: { + 'Resource Type Category': "Categorical type of the resource being described. (Corresponds to DataCite's resourceTypeGeneral.)", + 'Resource Type Detail': "Brief free-text characterization of the type details for the resource being described. (Known as 'ResourceType' in DataCite Scheme: \"Text formats can be free-text OR terms from the CASRAI Publications resource type list.\")", + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'resource_type', + 'schema:name': 'Resource Type', + 'schema:description': 'Information about the type of the resource being described with metadata.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Resource Type', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Data File Spatial Coverage': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Spatial Coverage)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'Southernmost Latitude': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/71f3147b-f7a5-4048-bedf-168329c718af', + 'schema:identifier': 'southernmost_latitude', + 'schema:name': 'Southernmost Latitude', + 'schema:description': 'Location of the southernmost data point in this data file, expressed in north latitude decimal degrees (southern latitudes are negative)', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Southernmost Latitude', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Southernmost Latitude)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Westernmost Longitude': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/8b37b831-9d05-418d-a161-2c19ab41340c', + 'schema:identifier': 'westernmost_longitude', + 'schema:name': 'Westernmost Longitude', + 'schema:description': 'Location of the westernmost data point in this data file, expressed in east longitude decimal degrees (western longitudes are negative)', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Westernmost Longitude', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Westernmost Longitude)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Northernmost Latitude': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/c6fe1d38-42c0-445c-9dc6-ba7156090ee6', + 'schema:identifier': 'northernmost_latitude', + 'schema:name': 'Northernmost Latitude', + 'schema:description': 'Location of the northernmost data point in this data file, expressed in north latitude decimal degrees (southern latitudes are negative)', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Northernmost Latitude', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Northernmost Latitude)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Easternmost Longitude': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/2d91ce3e-c323-4455-9aef-627476ac0635', + 'schema:identifier': 'easternmost_longitude', + 'schema:name': 'Easternmost Longitude', + 'schema:description': 'Location of the easternmost data point in this data file, expressed in east longitude decimal degrees (western longitudes are negative)', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Easternmost Longitude', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Easternmost Longitude)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + type: 'object', + properties: { + 'Northernmost Latitude': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasNorthBoundLatitude', + ], + }, + 'Southernmost Latitude': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasSouthBoundLatitude', + ], + }, + 'Westernmost Longitude': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasWestBoundLongitude', + ], + }, + 'Easternmost Longitude': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasEastBoundLongitude', + ], + }, + 'Data File Shape Coverage': { + enum: [ + 'https://schema.metadatacenter.org/properties/5f364583-bd6b-4c71-bcc2-8ec297117bb5', + ], + }, + }, + additionalProperties: false, + }, + 'Data File Shape Coverage': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Shape Coverage)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'Point Number': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/d054672a-99d8-4deb-98b8-5ec2b282f876', + 'schema:identifier': 'point_number', + 'schema:name': 'Point Number', + 'schema:description': 'Monotonically increasing identifier of the point in the shape being defined (defined in clockwise order and containing the right side of the closed shape).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Point Number', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + numberType: 'xsd:int', + unitOfMeasure: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'numeric', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Point Number)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + Latitude: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/690adcb1-8770-4c71-9463-20da78d8f940', + 'schema:identifier': 'latitude', + 'schema:name': 'Latitude', + 'schema:description': 'Location of this point in north latitude decimal degrees (southern latitudes are negative)', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Latitude', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Latitude)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + type: 'object', + properties: { + 'Point Number': { + enum: [ + 'https://schema.metadatacenter.org/properties/b4b39b09-26e6-4c2a-b3cb-17c37169ae77', + ], + }, + Latitude: { + enum: [ + 'https://schema.metadatacenter.org/properties/f088e6f4-4d3b-48c8-9a9a-449c5c9c88d5', + ], + }, + Longitude: { + enum: [ + 'https://schema.metadatacenter.org/properties/6f0931c5-3fdd-4a93-9e88-e5fbd76ed071', + ], + }, + }, + additionalProperties: false, + }, + Longitude: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/07425f05-25cd-428a-8218-15b4b888115e', + 'schema:identifier': 'longitude', + 'schema:name': 'Longitude', + 'schema:description': 'Location of this point in east longitude decimal degrees (western longitudes are negative)', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Longitude', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Longitude)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Point Number', + 'Latitude', + 'Longitude', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/7ad99be2-8a5c-4205-bccf-60aa2d3b8e8b', + _ui: { + order: [ + 'Point Number', + 'Latitude', + 'Longitude', + ], + propertyLabels: { + 'Point Number': 'Point Number', + Latitude: 'Latitude', + Longitude: 'Longitude', + }, + propertyDescriptions: { + 'Point Number': 'Monotonically increasing identifier of the point in the shape being defined (defined in clockwise order and containing the right side of the closed shape).', + Latitude: 'Location of this point in north latitude decimal degrees (southern latitudes are negative)', + Longitude: 'Location of this point in east longitude decimal degrees (western longitudes are negative)', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_shape_coverage', + 'schema:name': 'Data File Shape Coverage', + 'schema:description': 'A complex geospatial area (region on Earth) covered by the data file being described', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Shape Coverage', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Northernmost Latitude', + 'Southernmost Latitude', + 'Westernmost Longitude', + 'Easternmost Longitude', + 'Data File Shape Coverage', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/35be733e-67d7-4bf6-9ffc-0162dfef3a1a', + _ui: { + order: [ + 'Northernmost Latitude', + 'Southernmost Latitude', + 'Westernmost Longitude', + 'Easternmost Longitude', + 'Data File Shape Coverage', + ], + propertyLabels: { + 'Northernmost Latitude': 'Northernmost Latitude', + 'Southernmost Latitude': 'Southernmost Latitude', + 'Westernmost Longitude': 'Westernmost Longitude', + 'Easternmost Longitude': 'Easternmost Longitude', + 'Data File Shape Coverage': 'Data File Shape Coverage', + }, + propertyDescriptions: { + 'Northernmost Latitude': 'Location of the northernmost data point in this data file, expressed in north latitude decimal degrees (southern latitudes are negative)', + 'Southernmost Latitude': 'Location of the southernmost data point in this data file, expressed in north latitude decimal degrees (southern latitudes are negative)', + 'Westernmost Longitude': 'Location of the westernmost data point in this data file, expressed in east longitude decimal degrees (western longitudes are negative)', + 'Easternmost Longitude': 'Location of the easternmost data point in this data file, expressed in east longitude decimal degrees (western longitudes are negative)', + 'Data File Shape Coverage': 'A complex geospatial area (region on Earth) covered by the data file being described', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_spatial_coverage', + 'schema:name': 'Data File Spatial Coverage', + 'schema:description': 'The maximum geospatial positions (locations on Earth) covered by the data file being described.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Spatial Coverage', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'Data File Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'Data File Identifier Type': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/0af3bcea-ae63-4c20-b550-4e8bbe5acc4d', + 'schema:identifier': 'data_file_identifier_type', + 'schema:name': 'Data File Identifier Type', + 'schema:description': 'The identifier type used to identify the resource being described.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Identifier Type', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Data File Identifier Type)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Data File Name ': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/f293b347-8727-4959-a051-c9c1cd9bedf3', + 'schema:identifier': 'data_file_name_', + 'schema:name': 'Data File Name ', + 'schema:description': 'The local name of the resource (e.g., in a file-based operating system or web service)', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Name ', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Data File Name )', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + 'Data File Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/2cecd62b-b0e1-48cc-83a2-4632091807d0', + 'schema:identifier': 'data_file_identifier', + 'schema:name': 'Data File Identifier', + 'schema:description': 'A globally unique string that identifies the resource being described.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Data File Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + type: 'object', + properties: { + 'Data File Identifier': { + enum: [ + 'http://purl.org/dc/terms/identifier', + ], + }, + 'Data File Identifier Type': { + enum: [ + 'http://schema.org/propertyID', + ], + }, + 'Data File Name ': { + enum: [ + 'https://schema.metadatacenter.org/properties/f0a901ca-59ca-4104-815f-923eaee313d9', + ], + }, + }, + additionalProperties: false, + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Data File Identifier', + 'Data File Identifier Type', + 'Data File Name ', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/91d3b374-2d76-4f2d-bff1-5d346e5f0a40', + _ui: { + order: [ + 'Data File Identifier', + 'Data File Identifier Type', + 'Data File Name ', + ], + propertyLabels: { + 'Data File Identifier': 'Data File Identifier', + 'Data File Identifier Type': 'Data File Identifier Type', + 'Data File Name ': 'Data File Name ', + }, + propertyDescriptions: { + 'Data File Identifier': 'A globally unique string that identifies the resource being described.', + 'Data File Identifier Type': 'The identifier type used to identify the resource being described.', + 'Data File Name ': 'The local name of the resource (e.g., in a file-based operating system or web service)', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_identifier', + 'schema:name': 'Data File Identifier', + 'schema:description': 'Information about the globally unique and persistent identifier used to identify and optionally access (meta)data of the data file being described.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Identifier', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Data File Distribution': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Distribution)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'Distribution Publisher Identifier Scheme Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/825d1b95-2a81-46dd-a4b8-013d4a459205', + 'schema:identifier': 'distribution_publisher_identifier_scheme_identifier', + 'schema:name': 'Distribution Publisher Identifier Scheme Identifier', + 'schema:description': 'The unique identifier (IRI) of the scheme or authority used for the Distribution Publisher Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Distribution Publisher Identifier Scheme Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'link', + hidden: true, + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Distribution Publisher Identifier Scheme Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Data File Publication Date': { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Publication Date)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@id': { + type: 'string', + format: 'uri', + }, + 'Data File Publication Date': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/44e52e07-f52a-4a4d-8cb1-4888fbedf553', + 'schema:identifier': 'data_file_publication_date', + 'schema:name': 'Data File Publication Date', + 'schema:description': 'Date on which this distribution of the data file was published', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Publication Date', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + temporalType: 'xsd:date', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + temporalGranularity: 'day', + valueRecommendationEnabled: true, + inputType: 'temporal', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Data File Publication Date)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + type: 'object', + properties: { + 'Data File Publication Date': { + enum: [ + 'https://schema.metadatacenter.org/properties/93f8d4b7-08b0-4cad-bbf2-081ff71e9ebd', + ], + }, + 'Publication Date Type': { + enum: [ + 'https://schema.metadatacenter.org/properties/d267c041-a23d-48b2-aeac-2ad909086940', + ], + }, + }, + additionalProperties: false, + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Publication Date Type': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/5f03ff30-0d97-47d4-a8c7-7502e5e9f7ac', + 'schema:identifier': 'publication_date_type', + 'schema:name': 'Publication Date Type', + 'schema:description': "Type of the date ('Published') with respect to the data file.", + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Publication Date Type', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/DataType', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + defaultValue: { + termUri: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT/?p=classes&conceptid=http://vocab.fairdatacollective.org/gdmt/Published', + 'rdfs:label': '[Published]', + }, + }, + _ui: { + inputType: 'textfield', + hidden: true, + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Publication Date Type)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Data File Publication Date', + 'Publication Date Type', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/db5b8ece-3f0d-4d05-84b2-a783c9f6120c', + _ui: { + order: [ + 'Data File Publication Date', + 'Publication Date Type', + ], + propertyLabels: { + 'Data File Publication Date': 'Data File Publication Date', + 'Publication Date Type': 'Publication Date Type', + }, + propertyDescriptions: { + 'Data File Publication Date': 'Date on which this distribution of the data file was published', + 'Publication Date Type': "Type of the date ('Published') with respect to the data file.", + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_publication_date', + 'schema:name': 'Data File Publication Date', + 'schema:description': 'Publication date of this distribution the data file.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Publication Date', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Distribution Publisher Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/9a32ab0a-a331-4239-822f-0219a3fc61f5', + 'schema:identifier': 'distribution_publisher_identifier', + 'schema:name': 'Distribution Publisher Identifier', + 'schema:description': 'Globally unique string that identifies the Distribution Publisher.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Distribution Publisher Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Distribution Publisher Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Distribution Access Configuration': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/e54ac95d-a099-47e4-b716-0ad2f6877f6e', + 'schema:identifier': 'distribution_access_configuration', + 'schema:name': 'Distribution Access Configuration', + 'schema:description': 'The access protocol configuration for querying the data file distribution.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Distribution Access Configuration', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Distribution Access Configuration)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Distribution Format': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/a0d90d27-c99b-4370-8acc-a02816f13fb5', + 'schema:identifier': 'distribution_format', + 'schema:name': 'Distribution Format', + 'schema:description': 'An established standard to which the data file distribution conforms.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Distribution Format', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Distribution Format)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + type: 'object', + properties: { + 'Data File Publication Date': { + enum: [ + 'https://schema.metadatacenter.org/properties/93f8d4b7-08b0-4cad-bbf2-081ff71e9ebd', + ], + }, + 'Publication Date Type': { + enum: [ + 'https://schema.metadatacenter.org/properties/d267c041-a23d-48b2-aeac-2ad909086940', + ], + }, + }, + additionalProperties: false, + }, + 'Distribution Media Type': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/a9272afe-cd07-4cc9-a106-cd27e6a75600', + 'schema:identifier': 'distribution_media_type', + 'schema:name': 'Distribution Media Type', + 'schema:description': 'A media type, formerly known as a MIME type, of data file distribution.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Distribution Media Type', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/MIMEType', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Distribution Media Type)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Distribution Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/c379cd66-4739-40b6-a81f-db5c61555088', + 'schema:identifier': 'distribution_identifier', + 'schema:name': 'Distribution Identifier', + 'schema:description': 'A globally unique string that identifies the data file distribution.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Distribution Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Distribution Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Distribution Identifier Type': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/5aebe008-8b02-43ad-ab89-145567337818', + 'schema:identifier': 'distribution_identifier_type', + 'schema:name': 'Distribution Identifier Type', + 'schema:description': 'The identifier type used to identify the data file distribution.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Distribution Identifier Type', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/IdentifierType', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Distribution Identifier Type)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Distribution Publisher': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/2f424720-9c97-4638-93da-5eab461a041b', + 'schema:identifier': 'distribution_publisher', + 'schema:name': 'Distribution Publisher', + 'schema:description': 'The organization or resource that services to make publicly available this distribution of the data file.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Distribution Publisher', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Distribution Publisher)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + 'Distribution Size': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/dcd682d5-34a4-4125-ac45-67f73c5b9337', + 'schema:identifier': 'distribution_size', + 'schema:name': 'Distribution Size', + 'schema:description': 'Total size of data file distribution (in bytes).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Distribution Size', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Distribution Size)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Distribution Publisher Identifier Scheme': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/57b5ac5f-41b0-4ac6-bd04-5e1a456a06e9', + 'schema:identifier': 'distribution_publisher_identifier_scheme', + 'schema:name': 'Distribution Publisher Identifier Scheme', + 'schema:description': 'Name of the scheme or authority for the Distribution Publisher Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Distribution Publisher Identifier Scheme', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/IdentifierScheme', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Distribution Publisher Identifier Scheme)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Distribution Access Protocol': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/abddcdd2-069c-4829-9a5c-71713bfbe284', + 'schema:identifier': 'distribution_access_protocol', + 'schema:name': 'Distribution Access Protocol', + 'schema:description': 'The protocol used to access the data file distribution.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Distribution Access Protocol', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Distribution Access Protocol)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Distribution Query Statement': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/6f347382-fe49-40ef-86e0-b1fc2c5ad8d7', + 'schema:identifier': 'distribution_query_statement', + 'schema:name': 'Distribution Query Statement', + 'schema:description': 'Technical statement(s) for querying the data file distribution.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Distribution Query Statement', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Distribution Query Statement)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Distribution Publisher', + 'Distribution Publisher Identifier', + 'Distribution Publisher Identifier Scheme', + 'Distribution Publisher Identifier Scheme Identifier', + 'Distribution Identifier', + 'Distribution Identifier Type', + 'Distribution Format', + 'Distribution Media Type', + 'Distribution Size', + 'Distribution Access Protocol', + 'Distribution Access Configuration', + 'Distribution Query Statement', + 'Data File Publication Date', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/d6b204d2-b777-4c8e-b6dc-5495a70f67db', + _ui: { + order: [ + 'Distribution Publisher', + 'Distribution Publisher Identifier', + 'Distribution Publisher Identifier Scheme', + 'Distribution Publisher Identifier Scheme Identifier', + 'Distribution Identifier', + 'Distribution Identifier Type', + 'Distribution Format', + 'Distribution Media Type', + 'Distribution Size', + 'Distribution Access Protocol', + 'Distribution Access Configuration', + 'Distribution Query Statement', + 'Data File Publication Date', + ], + propertyLabels: { + 'Distribution Publisher': 'Distribution Publisher', + 'Distribution Publisher Identifier': 'Distribution Publisher Identifier', + 'Distribution Publisher Identifier Scheme': 'Distribution Publisher Identifier Scheme', + 'Distribution Publisher Identifier Scheme Identifier': 'Distribution Publisher Identifier Scheme Identifier', + 'Distribution Identifier': 'Distribution Identifier', + 'Distribution Identifier Type': 'Distribution Identifier Type', + 'Distribution Format': 'Distribution Format', + 'Distribution Media Type': 'Distribution Media Type', + 'Distribution Size': 'Distribution Size', + 'Distribution Access Protocol': 'Distribution Access Protocol', + 'Distribution Access Configuration': 'Distribution Access Configuration', + 'Distribution Query Statement': 'Distribution Query Statement', + 'Data File Publication Date': 'Data File Publication Date', + }, + propertyDescriptions: { + 'Distribution Publisher': 'The organization or resource that services to make publicly available this distribution of the data file.', + 'Distribution Publisher Identifier': 'Globally unique string that identifies the Distribution Publisher.', + 'Distribution Publisher Identifier Scheme': 'Name of the scheme or authority for the Distribution Publisher Identifier.', + 'Distribution Publisher Identifier Scheme Identifier': 'The unique identifier (IRI) of the scheme or authority used for the Distribution Publisher Identifier.', + 'Distribution Identifier': 'A globally unique string that identifies the data file distribution.', + 'Distribution Identifier Type': 'The identifier type used to identify the data file distribution.', + 'Distribution Format': 'An established standard to which the data file distribution conforms.', + 'Distribution Media Type': 'A media type, formerly known as a MIME type, of data file distribution.', + 'Distribution Size': 'Total size of data file distribution (in bytes).', + 'Distribution Access Protocol': 'The protocol used to access the data file distribution.', + 'Distribution Access Configuration': 'The access protocol configuration for querying the data file distribution.', + 'Distribution Query Statement': 'Technical statement(s) for querying the data file distribution.', + 'Data File Publication Date': 'Publication date of this distribution the data file.', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_distribution', + 'schema:name': 'Data File Distribution', + 'schema:description': 'Details about the distribution for this individual public presentation of the data file (if part of the Distribution metadata), or for all the public presentations of the data file being described (if part of the data file metadata).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Distribution', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'Data Source': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data Source)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'Data Source Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/53da83ae-2c14-4053-b7ca-6a7bbdc85d05', + 'schema:identifier': 'data_source_identifier', + 'schema:name': 'Data Source Identifier', + 'schema:description': 'Globally unique string that identifies the data source (e.g., PID of an instrument).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data Source Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Data Source Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Data Source Scheme Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/d4b2772a-82a0-4c07-8f8c-3180e4d202b5', + 'schema:identifier': 'data_source_scheme_identifier', + 'schema:name': 'Data Source Scheme Identifier', + 'schema:description': 'The unique identifier (IRI) of the scheme or authority used for the Data Source Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data Source Scheme Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'link', + hidden: true, + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Data Source Scheme Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Data Source Name': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/00b41332-e5f9-42ce-81a3-52dcd948ae9b', + 'schema:identifier': 'data_source_name', + 'schema:name': 'Data Source Name', + 'schema:description': 'Human readable name of data source from which the variable(s) come(s). Physical or conceptual entity that creates the data streams that make up the described data file. The data source may or may not be associated with a fixed location; for example, a series of discrete sensors deployed over time to a single location may be considered a single data source in some systems.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data Source Name', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Data Source Name)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + type: 'object', + properties: { + 'Data Source Name': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasDataSource', + ], + }, + 'Data Source Identifier': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasDataSourceIRI', + ], + }, + 'Data Source Scheme': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasDataSourceScheme', + ], + }, + 'Data Source Scheme Identifier': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasDataSourceSchemeIRI', + ], + }, + }, + additionalProperties: false, + }, + 'Data Source Scheme': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/3639378a-ae56-4da5-9983-2941c3883064', + 'schema:identifier': 'data_source_scheme', + 'schema:name': 'Data Source Scheme', + 'schema:description': 'The name of the scheme or authority used for the Data Source Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data Source Scheme', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/IdentifierType', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Data Source Scheme)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Data Source Name', + 'Data Source Identifier', + 'Data Source Scheme', + 'Data Source Scheme Identifier', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/ff5806c8-d09c-4ea9-af9b-a73af234cfdf', + _ui: { + order: [ + 'Data Source Name', + 'Data Source Identifier', + 'Data Source Scheme', + 'Data Source Scheme Identifier', + ], + propertyLabels: { + 'Data Source Name': 'Data Source Name', + 'Data Source Identifier': 'Data Source Identifier', + 'Data Source Scheme': 'Data Source Scheme', + 'Data Source Scheme Identifier': 'Data Source Scheme Identifier', + }, + propertyDescriptions: { + 'Data Source Name': 'Human readable name of data source from which the variable(s) come(s). Physical or conceptual entity that creates the data streams that make up the described data file. The data source may or may not be associated with a fixed location; for example, a series of discrete sensors deployed over time to a single location may be considered a single data source in some systems.', + 'Data Source Identifier': 'Globally unique string that identifies the data source (e.g., PID of an instrument).', + 'Data Source Scheme': 'The name of the scheme or authority used for the Data Source Identifier.', + 'Data Source Scheme Identifier': 'The unique identifier (IRI) of the scheme or authority used for the Data Source Identifier.', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_source', + 'schema:name': 'Data Source', + 'schema:description': 'Physical or conceptual entity that creates the data streams that make up the described data file. The data source may or may not be associated with a fixed location; for example, a series of discrete sensors deployed over time to a single location may be considered a single data source in some systems.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data Source', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'schema:isBasedOn': { + type: 'string', + format: 'uri', + }, + 'schema:description': { + type: 'string', + }, + 'Data File Title': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Title)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'Title Language': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/78a7f0bb-eea6-48a3-82bd-ac5fd97cea42', + 'schema:identifier': 'title_language', + 'schema:name': 'Title Language', + 'schema:description': 'Language in which the Data File title is provided.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Title Language', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [], + ontologies: [ + { + uri: 'https://bioportal.bioontology.org/ontologies/ISO639-1', + acronym: 'ISO639-1', + name: 'ISO639-1', + }, + ], + literals: [], + defaultValue: { + termUri: 'https://www.omg.org/spec/LCC/Languages/LaISO639-1-LanguageCodes/en', + 'rdfs:label': '[en]', + }, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Title Language)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + type: 'object', + properties: { + 'Data File Title': { + enum: [ + 'http://purl.org/dc/elements/1.1/title', + ], + }, + 'Title Language': { + enum: [ + 'http://purl.org/dc/terms/language', + ], + }, + }, + additionalProperties: false, + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Data File Title': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/6eb84ebb-c72c-455d-92ac-165a514fb757', + 'schema:identifier': 'data_file_title', + 'schema:name': 'Data File Title', + 'schema:description': 'A name or title by which the Data File being described is known.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Title', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: true, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Data File Title)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Data File Title', + 'Title Language', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/161d0864-1624-4ebf-989d-67005dd09385', + _ui: { + order: [ + 'Data File Title', + 'Title Language', + ], + propertyLabels: { + 'Data File Title': 'Data File Title', + 'Title Language': 'Title Language', + }, + propertyDescriptions: { + 'Data File Title': 'A name or title by which the Data File being described is known.', + 'Title Language': 'Language in which the Data File title is provided.', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_title', + 'schema:name': 'Data File Title', + 'schema:description': 'A name or title by which the Data File being described is known.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Title', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'pav:lastUpdatedOn': { + type: [ + 'string', + 'null', + ], + format: 'date-time', + }, + 'Data File Contributor': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Contributor)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'Contributor Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/cc5ba1a9-3a03-4e62-b043-a73bf5b80a54', + 'schema:identifier': 'contributor_identifier', + 'schema:name': 'Contributor Identifier', + 'schema:description': 'Globally unique string that identifies the contributor (an individual or legal entity).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Contributor Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Contributor Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Contributor Email': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/f2ffa6d9-8f67-4d69-b460-361b4d3e6b65', + 'schema:identifier': 'contributor_email', + 'schema:name': 'Contributor Email', + 'schema:description': 'An email address of the contributor.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Contributor Email', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'email', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Contributor Email)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Contributor Name': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/c06f5f61-330e-49b8-a55b-65e14f6f7cc7', + 'schema:identifier': 'contributor_name', + 'schema:name': 'Contributor Name', + 'schema:description': 'The full name of the contributor.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Contributor Name', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Contributor Name)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Contributor Affiliation Identifier Scheme Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/281d4746-1366-47c3-b424-f2ca99484b24', + 'schema:identifier': 'contributor_affiliation_identifier_scheme_identifier', + 'schema:name': 'Contributor Affiliation Identifier Scheme Identifier', + 'schema:description': 'The unique identifier (IRI) of the scheme or authority used for the Contributor Affiliation Identifier Scheme.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Contributor Affiliation Identifier Scheme Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'link', + hidden: true, + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Contributor Affiliation Identifier Scheme Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Contributor Type': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/7534371c-843c-4666-8861-ecbfb64d1a5e', + 'schema:identifier': 'contributor_type', + 'schema:name': 'Contributor Type', + 'schema:description': 'The type of the contributor of the described data file (person or organization).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Contributor Type', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/ResourceCreatorType', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Contributor Type)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Contributor Affiliation Identifier Scheme': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/ad6a972e-29d4-45af-9774-d0d335bcab22', + 'schema:identifier': 'contributor_affiliation_identifier_scheme', + 'schema:name': 'Contributor Affiliation Identifier Scheme', + 'schema:description': 'The name of the scheme or authority used for the Contributor Affiliation Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Contributor Affiliation Identifier Scheme', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/IdentifierScheme', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Contributor Affiliation Identifier Scheme)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Contributor Affiliation Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/eba64c01-8656-43d3-9ae2-149ef3bb21c9', + 'schema:identifier': 'contributor_affiliation_identifier', + 'schema:name': 'Contributor Affiliation Identifier', + 'schema:description': 'Globally unique string that identifies the organizational affiliation of the contributor.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Contributor Affiliation Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Contributor Affiliation Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Contributor Role': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/f74d6b2d-ee90-460a-b099-877fa62720a7', + 'schema:identifier': 'contributor_role', + 'schema:name': 'Contributor Role', + 'schema:description': 'The role of the contributor in bringing the described data file into existence.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Contributor Role', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/ContributorRole', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Contributor Role)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@context': { + type: 'object', + properties: { + 'Contributor Type': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasContributorType', + ], + }, + 'Contributor Name': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasContributorNameInfo', + ], + }, + 'Contributor Given Name': { + enum: [ + 'http://xmlns.com/foaf/0.1/givenName', + ], + }, + 'Contributor Family Name': { + enum: [ + 'http://xmlns.com/foaf/0.1/familyName', + ], + }, + 'Contributor Identifier': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasContributorIdentifier', + ], + }, + 'Contributor Identifier Scheme': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasContributorIdentifierScheme', + ], + }, + 'Contributor Identifier Scheme Identifier': { + enum: [ + 'https://schema.metadatacenter.org/properties/ca5a8523-a6b4-4dbd-a35c-91e0278bf8d2', + ], + }, + 'Contributor Affiliation': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasContributorAffiliation', + ], + }, + 'Contributor Affiliation Identifier': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasContributorAffiliationIdentifier', + ], + }, + 'Contributor Affiliation Identifier Scheme': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasContributorAffiliationIdentifierScheme', + ], + }, + 'Contributor Affiliation Identifier Scheme Identifier': { + enum: [ + 'https://schema.metadatacenter.org/properties/9719c516-7873-4794-a532-5bbbf0f70f22', + ], + }, + 'Contributor Email': { + enum: [ + 'http://xmlns.com/foaf/0.1/mbox', + ], + }, + 'Contributor Role': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasContributorRole', + ], + }, + }, + additionalProperties: false, + }, + 'Contributor Family Name': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/f4f4140b-332e-4106-b59b-3e534d0e430c', + 'schema:identifier': 'contributor_family_name', + 'schema:name': 'Contributor Family Name', + 'schema:description': 'If the contributor is a person, the surname(s) of the conributor (e.g., last name in Western languagues, first name in Asian languages).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Contributor Family Name', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Contributor Family Name)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Contributor Identifier Scheme': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/51480627-2561-453a-aac3-be9bfc42b36b', + 'schema:identifier': 'contributor_identifier_scheme', + 'schema:name': 'Contributor Identifier Scheme', + 'schema:description': 'The name of the scheme or authority used for the Contributor Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Contributor Identifier Scheme', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + classes: [], + branches: [ + { + source: 'https://bioportal.bioontology.org/ontologies/FDC-GDMT', + acronym: 'FDC-GDMT', + name: 'FDC-GDMT', + uri: 'http://vocab.fairdatacollective.org/gdmt/IdentifierScheme', + maxDepth: 2147483647, + }, + ], + ontologies: [], + literals: [], + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Contributor Identifier Scheme)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Contributor Given Name': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/525ebf61-e32e-4a6e-a1be-a528222d89a9', + 'schema:identifier': 'contributor_given_name', + 'schema:name': 'Contributor Given Name', + 'schema:description': 'If the contributor is a person, the personal name(s) of the contributor (e.g., first and optionally middle name in Western languagues, optionally middle and last name in Asian languages).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Contributor Given Name', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Contributor Given Name)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Contributor Affiliation': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/1a3d7d12-347b-42a0-8d67-b3fc9a2f3bca', + 'schema:identifier': 'contributor_affiliation', + 'schema:name': 'Contributor Affiliation', + 'schema:description': 'If the contributor is a person, the organizational or institutional affiliation of the contributor.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Contributor Affiliation', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Contributor Affiliation)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Contributor Identifier Scheme Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/9c096368-fa0e-434f-825c-6360991166db', + 'schema:identifier': 'contributor_identifier_scheme_identifier', + 'schema:name': 'Contributor Identifier Scheme Identifier', + 'schema:description': 'The unique identifier (IRI) of the scheme or authority used for the Contributor Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Contributor Identifier Scheme Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'link', + hidden: true, + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Contributor Identifier Scheme Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Contributor Type', + 'Contributor Name', + 'Contributor Given Name', + 'Contributor Family Name', + 'Contributor Identifier', + 'Contributor Identifier Scheme', + 'Contributor Identifier Scheme Identifier', + 'Contributor Affiliation', + 'Contributor Affiliation Identifier', + 'Contributor Affiliation Identifier Scheme', + 'Contributor Affiliation Identifier Scheme Identifier', + 'Contributor Email', + 'Contributor Role', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/0ee400b5-219c-4c43-956a-e35f17397348', + _ui: { + order: [ + 'Contributor Type', + 'Contributor Name', + 'Contributor Given Name', + 'Contributor Family Name', + 'Contributor Identifier', + 'Contributor Identifier Scheme', + 'Contributor Identifier Scheme Identifier', + 'Contributor Affiliation', + 'Contributor Affiliation Identifier', + 'Contributor Affiliation Identifier Scheme', + 'Contributor Affiliation Identifier Scheme Identifier', + 'Contributor Email', + 'Contributor Role', + ], + propertyLabels: { + 'Contributor Type': 'Contributor Type', + 'Contributor Name': 'Contributor Name', + 'Contributor Given Name': 'Contributor Given Name', + 'Contributor Family Name': 'Contributor Family Name', + 'Contributor Identifier': 'Contributor Identifier', + 'Contributor Identifier Scheme': 'Contributor Identifier Scheme', + 'Contributor Identifier Scheme Identifier': 'Contributor Identifier Scheme Identifier', + 'Contributor Affiliation': 'Contributor Affiliation', + 'Contributor Affiliation Identifier': 'Contributor Affiliation Identifier', + 'Contributor Affiliation Identifier Scheme': 'Contributor Affiliation Identifier Scheme', + 'Contributor Affiliation Identifier Scheme Identifier': 'Contributor Affiliation Identifier Scheme Identifier', + 'Contributor Email': 'Contributor Email', + 'Contributor Role': 'Contributor Role', + }, + propertyDescriptions: { + 'Contributor Type': 'The type of the contributor of the described data file (person or organization).', + 'Contributor Name': 'The full name of the contributor.', + 'Contributor Given Name': 'If the contributor is a person, the personal name(s) of the contributor (e.g., first and optionally middle name in Western languagues, optionally middle and last name in Asian languages).', + 'Contributor Family Name': 'If the contributor is a person, the surname(s) of the conributor (e.g., last name in Western languagues, first name in Asian languages).', + 'Contributor Identifier': 'Globally unique string that identifies the contributor (an individual or legal entity).', + 'Contributor Identifier Scheme': 'The name of the scheme or authority used for the Contributor Identifier.', + 'Contributor Identifier Scheme Identifier': 'The unique identifier (IRI) of the scheme or authority used for the Contributor Identifier.', + 'Contributor Affiliation': 'If the contributor is a person, the organizational or institutional affiliation of the contributor.', + 'Contributor Affiliation Identifier': 'Globally unique string that identifies the organizational affiliation of the contributor.', + 'Contributor Affiliation Identifier Scheme': 'The name of the scheme or authority used for the Contributor Affiliation Identifier.', + 'Contributor Affiliation Identifier Scheme Identifier': 'The unique identifier (IRI) of the scheme or authority used for the Contributor Affiliation Identifier Scheme.', + 'Contributor Email': 'An email address of the contributor.', + 'Contributor Role': 'The role of the contributor in bringing the described data file into existence.', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_contributor', + 'schema:name': 'Data File Contributor', + 'schema:description': 'An entity that contributed in bringing into existence the data file being described. Contributors can be people, organizations and/or physical or virtual infrastructure (e.g., sensors, software).', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Contributor', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + 'schema:name': { + type: 'string', + minLength: 1, + }, + 'pav:derivedFrom': { + type: 'string', + format: 'uri', + }, + 'Data File Subjects and Keywords': { + type: 'array', + minItems: 1, + items: { + '@type': 'https://schema.metadatacenter.org/core/TemplateElement', + type: 'object', + title: 'Element(Data File Subjects and Keywords)', + description: 'Generated by CSV2CEDAR.', + properties: { + 'Subject Identifier Scheme Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/a281f9b6-2f71-4095-9f6e-fa9901b54f47', + 'schema:identifier': 'subject_identifier_scheme_identifier', + 'schema:name': 'Subject Identifier Scheme Identifier', + 'schema:description': 'The unique identifier (IRI) of the scheme or authority used for the Subject Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Subject Identifier Scheme Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + hidden: true, + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Subject Identifier Scheme Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + Keyword: { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/89085965-8269-4572-acd9-61d767a41d6e', + 'schema:identifier': 'keyword', + 'schema:name': 'Keyword', + 'schema:description': 'Free text subject, keyword, classification code, or key phrase describing the data file or purpose for which the data file can be used.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Keyword', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Keyword)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + 'Subject Identifier': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/f02a5d40-7293-46f9-afae-091c3ccde46c', + 'schema:identifier': 'subject_identifier', + 'schema:name': 'Subject Identifier', + 'schema:description': 'The unique identifier (IRI) of a concept (keyword, classification code, or controlled key phrase) that defines the data file or indicates for which concepts the data file can be used.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Subject Identifier', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Subject Identifier)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + 'Subject Identifier Scheme': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/b4ca33bc-7766-48b0-9127-668e54019c4c', + 'schema:identifier': 'subject_identifier_scheme', + 'schema:name': 'Subject Identifier Scheme', + 'schema:description': 'The name of the scheme or authority used for the Subject Identifier.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Subject Identifier Scheme', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Subject Identifier Scheme)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + '@id': { + type: 'string', + format: 'uri', + }, + '@context': { + type: 'object', + properties: { + 'Subject Label': { + enum: [ + 'http://purl.org/dc/terms/subject', + ], + }, + 'Subject Identifier': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasSubjectIRI', + ], + }, + 'Subject Identifier Scheme': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasSubjectScheme', + ], + }, + 'Subject Identifier Scheme Identifier': { + enum: [ + 'http://vocab.fairdatacollective.org/gdmt/hasSubjectSchemeIRI', + ], + }, + Keyword: { + enum: [ + 'http://www.w3.org/ns/dcat#keyword', + ], + }, + }, + additionalProperties: false, + }, + 'Subject Label': { + '@type': 'https://schema.metadatacenter.org/core/TemplateField', + '@id': 'https://repo.metadatacenter.org/template-fields/a7f47f9c-d030-4a02-ab80-6b3a2e5765dc', + 'schema:identifier': 'subject_label', + 'schema:name': 'Subject Label', + 'schema:description': 'Text string corresponding to the subject IRI attribute.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Subject Label', + 'skos:altLabel': [], + 'pav:version': '0.9.0', + 'bibo:status': 'bibo:draft', + _valueConstraints: { + defaultValue: '', + requiredValue: false, + multipleChoice: false, + }, + _ui: { + inputType: 'textfield', + }, + 'pav:createdOn': null, + 'pav:createdBy': null, + 'pav:lastUpdatedOn': null, + 'oslc:modifiedBy': null, + type: 'object', + title: 'Field(Subject Label)', + description: 'Generated by CSV2CEDAR.', + properties: { + '@type': { + oneOf: [ + { + type: 'string', + format: 'uri', + }, + { + type: 'array', + minItems: 1, + items: { + type: 'string', + format: 'uri', + }, + uniqueItems: true, + }, + ], + }, + '@value': { + type: [ + 'string', + 'null', + ], + }, + 'rdfs:label': { + type: [ + 'string', + 'null', + ], + }, + }, + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + skos: 'http://www.w3.org/2004/02/skos/core#', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'skos:prefLabel': { + '@type': 'xsd:string', + }, + 'skos:altLabel': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + multiValued: false, + required: [ + '@context', + '@id', + 'Subject Label', + 'Subject Identifier', + 'Subject Identifier Scheme', + 'Subject Identifier Scheme Identifier', + 'Keyword', + ], + additionalProperties: false, + 'schema:schemaVersion': '1.6.0', + '@id': 'https://repo.metadatacenter.org/template-elements/0b2302ad-a045-49c3-b807-b4c034ccf3c5', + _ui: { + order: [ + 'Subject Label', + 'Subject Identifier', + 'Subject Identifier Scheme', + 'Subject Identifier Scheme Identifier', + 'Keyword', + ], + propertyLabels: { + 'Subject Label': 'Subject Label', + 'Subject Identifier': 'Subject Identifier', + 'Subject Identifier Scheme': 'Subject Identifier Scheme', + 'Subject Identifier Scheme Identifier': 'Subject Identifier Scheme Identifier', + Keyword: 'Keyword', + }, + propertyDescriptions: { + 'Subject Label': 'Text string corresponding to the subject IRI attribute.', + 'Subject Identifier': 'The unique identifier (IRI) of a concept (keyword, classification code, or controlled key phrase) that defines the data file or indicates for which concepts the data file can be used.', + 'Subject Identifier Scheme': 'The name of the scheme or authority used for the Subject Identifier.', + 'Subject Identifier Scheme Identifier': 'The unique identifier (IRI) of the scheme or authority used for the Subject Identifier.', + Keyword: 'Free text subject, keyword, classification code, or key phrase describing the data file or purpose for which the data file can be used.', + }, + }, + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + 'schema:identifier': 'data_file_subjects_and_keywords', + 'schema:name': 'Data File Subjects and Keywords', + 'schema:description': 'Concepts (keywords, classification, or free text terms) that define the data file or purpose (subjects which can be addressed) using the data file.', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Data File Subjects and Keywords', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T21:26:18-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + $schema: 'http://json-schema.org/draft-04/schema#', + }, + }, + }, + required: [ + '@context', + '@id', + 'schema:isBasedOn', + 'schema:name', + 'schema:description', + 'pav:createdOn', + 'pav:createdBy', + 'pav:lastUpdatedOn', + 'oslc:modifiedBy', + 'Data File Title', + 'Data File Identifier', + 'Resource Type', + 'Data File Version', + 'Data File Language', + 'Data File Subjects and Keywords', + 'Data File Description', + 'Data File Creator', + 'Data File Related Resource', + 'Data File Contributor', + 'Data File Rights', + 'Date', + 'Data File Parent Study', + 'Data File Funding Source', + 'Data File Distribution', + 'Data Characteristics Summary', + 'Data Source', + 'Data Source Stream', + 'Data File Process Version', + 'Data File Temporal Coverage', + 'Data File Spatial Coverage', + 'Data File Vertical Coverage', + 'Auxiliary Metadata', + ], + multiValued: false, + additionalProperties: false, + 'schema:identifier': 'Template', + 'schema:name': 'RADx Metadata Specification', + 'schema:description': 'Template generated by CEDARCSV', + 'pav:derivedFrom': '', + 'skos:prefLabel': 'Template', + 'skos:altLabel': [], + 'pav:version': '0.0.1', + 'bibo:status': 'bibo:draft', + 'pav:createdOn': '2022-08-11T17:34:56-07:00', + 'pav:createdBy': 'https://metadatacenter.org/users/819b3cfd-49a9-4e72-b5d5-18166366f014', + 'pav:lastUpdatedOn': '2022-08-11T21:26:18-07:00', + 'oslc:modifiedBy': 'https://metadatacenter.org/users/1adf5ee5-cee0-47d1-9769-efbe00cdebee', + '@context': { + xsd: 'http://www.w3.org/2001/XMLSchema#', + pav: 'http://purl.org/pav/', + bibo: 'http://purl.org/ontology/bibo/', + oslc: 'http://open-services.net/ns/core#', + schema: 'http://schema.org/', + 'schema:name': { + '@type': 'xsd:string', + }, + 'schema:description': { + '@type': 'xsd:string', + }, + 'pav:createdOn': { + '@type': 'xsd:dateTime', + }, + 'pav:createdBy': { + '@type': '@id', + }, + 'pav:lastUpdatedOn': { + '@type': 'xsd:dateTime', + }, + 'oslc:modifiedBy': { + '@type': '@id', + }, + }, + '@type': 'https://schema.metadatacenter.org/core/Template', + 'schema:schemaVersion': '1.6.0', + $schema: 'http://json-schema.org/draft-04/schema#', +}); diff --git a/translations/en-us.yml b/translations/en-us.yml index 451093d05cd..5c0183265eb 100644 --- a/translations/en-us.yml +++ b/translations/en-us.yml @@ -213,6 +213,7 @@ dashboard: preprints: 'OSF Preprints' institutions: 'OSF Institutions' metadata: + tab-title: 'Metadata' main-tab: 'OSF' header: 'Metadata' download: 'Download' @@ -221,9 +222,12 @@ metadata: see-less: 'Click to see less metadata options' add-flow: select-metadata-schema: 'Select a Metadata Schema' + select-different-metadata-schema: 'Select a different schema' explanation: 'OSF has partnered with CEDAR to provide more ways to annotate your research with domain-specific metadata schemas. If a schema is missing, let us know at {supportEmail}.' available-schemas: 'Available Schemas from CEDAR' select: 'Select' + tab-title-select: 'Select Schema' + tab-title-add: 'Add' detail: popover: header: 'This is a default header'