From 5280efaaf29a26b03669712551ad8f73e8a69af5 Mon Sep 17 00:00:00 2001 From: Johnathan Aspinwall Date: Thu, 14 Mar 2024 08:50:22 -0600 Subject: [PATCH] Fix data quality report type Remove DQ_ prefix. --- .../fgdc/modules/module_dataQuality.rb | 12 +- .../writers/fgdc/classes/class_dataQuality.rb | 10 +- test/helpers/mdJson_hash_functions.rb | 2 +- .../simple_html/testData/metadataGeo.json | 7038 ++++++++--------- 4 files changed, 3403 insertions(+), 3659 deletions(-) diff --git a/lib/adiwg/mdtranslator/readers/fgdc/modules/module_dataQuality.rb b/lib/adiwg/mdtranslator/readers/fgdc/modules/module_dataQuality.rb index ea4bfcd5..943d5235 100644 --- a/lib/adiwg/mdtranslator/readers/fgdc/modules/module_dataQuality.rb +++ b/lib/adiwg/mdtranslator/readers/fgdc/modules/module_dataQuality.rb @@ -30,7 +30,7 @@ def self.unpack(xDataQual, hMetadata, hDataQuality, hResponseObj) xAccuracy = xDataQual.xpath('./attracc') accuracyReport = xAccuracy.xpath('./attraccr').text report = intMetadataClass.newDataQualityReport - report[:type] = 'DQ_NonQuantitativeAttributeAccuracy' + report[:type] = 'NonQuantitativeAttributeAccuracy' descriptiveResult = intMetadataClass.newDescriptiveResult descriptiveResult[:statement] = accuracyReport report[:descriptiveResult] << descriptiveResult @@ -41,7 +41,7 @@ def self.unpack(xDataQual, hMetadata, hDataQuality, hResponseObj) unless xQuantitativeAccuracy.xpath('./attraccv').empty? value = xQuantitativeAccuracy.xpath('./attraccv').text report = intMetadataClass.newDataQualityReport - report[:type] = 'DQ_QuantitativeAttributeAccuracy' + report[:type] = 'QuantitativeAttributeAccuracy' quantitativeResult = intMetadataClass.newQuantitativeResult quantitativeResult[:values] << value report[:quantitativeResult] << quantitativeResult @@ -55,7 +55,7 @@ def self.unpack(xDataQual, hMetadata, hDataQuality, hResponseObj) else logic = xLogic.text report = intMetadataClass.newDataQualityReport - report[:type] = 'DQ_ConceptualConsistency' + report[:type] = 'ConceptualConsistency' report[:qualityMeasure] = intMetadataClass.newQualityMeasure report[:qualityMeasure][:description] = logic hDataQuality[:report] << report @@ -68,7 +68,7 @@ def self.unpack(xDataQual, hMetadata, hDataQuality, hResponseObj) else complete = xComplete.text report = intMetadataClass.newDataQualityReport - report[:type] = 'DQ_CompletenessOmission' + report[:type] = 'CompletenessOmission' descriptiveResult = intMetadataClass.newDescriptiveResult descriptiveResult[:statement] = complete report[:descriptiveResult] << descriptiveResult @@ -82,7 +82,7 @@ def self.unpack(xDataQual, hMetadata, hDataQuality, hResponseObj) xHorizontal = xPositionalAccuracy.xpath('./horizpa') unless xHorizontal.empty? report = intMetadataClass.newDataQualityReport - report[:type] = 'DQ_AbsoluteExternalPositionalAccuracy' + report[:type] = 'AbsoluteExternalPositionalAccuracy' unless xHorizontal.xpath('qhorizpa/horizpae').empty? report[:qualityMeasure] = intMetadataClass.newQualityMeasure report[:qualityMeasure][:description] = xHorizontal.xpath('qhorizpa/horizpae').text @@ -105,7 +105,7 @@ def self.unpack(xDataQual, hMetadata, hDataQuality, hResponseObj) xVertical = xPositionalAccuracy.xpath('./vertacc') unless xVertical.empty? report = intMetadataClass.newDataQualityReport - report[:type] = 'DQ_AbsoluteExternalPositionalAccuracy' + report[:type] = 'AbsoluteExternalPositionalAccuracy' unless xVertical.xpath('qvertpa/vertacce').empty? report[:qualityMeasure] = intMetadataClass.newQualityMeasure report[:qualityMeasure][:description] = xVertical.xpath('qvertpa/vertacce').text diff --git a/lib/adiwg/mdtranslator/writers/fgdc/classes/class_dataQuality.rb b/lib/adiwg/mdtranslator/writers/fgdc/classes/class_dataQuality.rb index 8bd08191..515eed50 100644 --- a/lib/adiwg/mdtranslator/writers/fgdc/classes/class_dataQuality.rb +++ b/lib/adiwg/mdtranslator/writers/fgdc/classes/class_dataQuality.rb @@ -30,7 +30,7 @@ def writeXML(intObj) if hDataQuality && hDataQuality[:report] # data quality 2.1 (attracc) - attribute accuracy (not implemented) attribute_completeness_report = hDataQuality[:report].find do |report| - report[:type] == 'DQ_NonQuantitativeAttributeCompleteness' && + report[:type] == 'NonQuantitativeAttributeCompleteness' && !report.dig(:descriptiveResult, 0, :statement).nil? end @@ -44,7 +44,7 @@ def writeXML(intObj) # data quality 2.2 (logic) - logical consistency (not implemented) (required) logic_report = hDataQuality[:report].find do |report| - report[:type] == 'DQ_ConceptualConsistency' && + report[:type] == 'ConceptualConsistency' && !report.dig(:qualityMeasure, :description).nil? end @@ -56,7 +56,7 @@ def writeXML(intObj) # data quality 2.3 (complete) - completion report (not implemented) (required) completeness_report = hDataQuality[:report].find do |report| - report[:type] == 'DQ_CompletenessOmission' && + report[:type] == 'CompletenessOmission' && !report.dig(:descriptiveResult, 0, :statement).nil? end @@ -70,7 +70,7 @@ def writeXML(intObj) horizontal_positional_accuracy_report = hDataQuality[:report].find do |report| - report[:type] == 'DQ_AbsoluteExternalPositionalAccuracy' && + report[:type] == 'AbsoluteExternalPositionalAccuracy' && report.dig(:qualityMeasure, :nameOfMeasure)&.any? { |name| name == 'Horizontal Positional Accuracy Report' } @@ -80,7 +80,7 @@ def writeXML(intObj) vertical_positional_accuracy_report = hDataQuality[:report].find do |report| - report[:type] == 'DQ_AbsoluteExternalPositionalAccuracy' && + report[:type] == 'AbsoluteExternalPositionalAccuracy' && report.dig(:qualityMeasure, :nameOfMeasure)&.any? { |name| name == 'Vertical Positional Accuracy Report' } diff --git a/test/helpers/mdJson_hash_functions.rb b/test/helpers/mdJson_hash_functions.rb index de31be79..4d47a231 100644 --- a/test/helpers/mdJson_hash_functions.rb +++ b/test/helpers/mdJson_hash_functions.rb @@ -72,7 +72,7 @@ def build_dataQuality hDataQuality[:report] = [ { - type: 'DQ_AbsoluteExternalPositionalAccuracy', + type: 'AbsoluteExternalPositionalAccuracy', standaloneQualityReportDetails: "standalone quality report details 1", qualityMeasure: { identifier: { diff --git a/test/writers/simple_html/testData/metadataGeo.json b/test/writers/simple_html/testData/metadataGeo.json index b4434e87..fcc82b7d 100644 --- a/test/writers/simple_html/testData/metadataGeo.json +++ b/test/writers/simple_html/testData/metadataGeo.json @@ -1,3808 +1,3552 @@ { - "schema": { - "name": "mdJson", - "version": "2.4.5" - }, - "contact": [ - { - "contactId": "CID001", - "isOrganization": false, - "name": "Stan Smith", - "positionName": "Associate - retired", - "memberOfOrganization": [ - "CID002", - "CID003" - ], - "logoGraphic": [ - { - "fileName": "fileName0", - "fileDescription": "fileDescription0", - "fileType": "fileType0", - "fileConstraint": [ - { - "type": "use", - "useLimitation": [ - "useLimitation0", - "useLimitation1" - ] - }, - { - "type": "legal", - "legal": { - "useConstraint": [ - "useConstraint0", - "useConstraint1" - ], - "accessConstraint": [ - "accessConstraint0", - "accessConstraint1" - ], - "otherConstraint": [ - "otherConstraint0", - "otherConstraint1" - ] - } - }, - { - "type": "security", - "security": { - "classification": "classification", - "classificationSystem": "classificationSystem", - "userNote": "userNote", - "handlingDescription": "handlingDescription" - } - } - ], - "fileUri": [ - { - "uri": "http://ISO.uri/adiwg/0" - } - ] + "schema": { + "name": "mdJson", + "version": "2.4.5" + }, + "contact": [ + { + "contactId": "CID001", + "isOrganization": false, + "name": "Stan Smith", + "positionName": "Associate - retired", + "memberOfOrganization": ["CID002", "CID003"], + "logoGraphic": [ + { + "fileName": "fileName0", + "fileDescription": "fileDescription0", + "fileType": "fileType0", + "fileConstraint": [ + { + "type": "use", + "useLimitation": ["useLimitation0", "useLimitation1"] }, { - "fileName": "fileName1", - "fileDescription": "fileDescription1", - "fileType": "fileType1" + "type": "legal", + "legal": { + "useConstraint": ["useConstraint0", "useConstraint1"], + "accessConstraint": ["accessConstraint0", "accessConstraint1"], + "otherConstraint": ["otherConstraint0", "otherConstraint1"] + } }, { - "fileName": "fileName2" + "type": "security", + "security": { + "classification": "classification", + "classificationSystem": "classificationSystem", + "userNote": "userNote", + "handlingDescription": "handlingDescription" + } } - ], - "phone": [ - { - "phoneName": "mobile", - "phoneNumber": "111-111-1111", - "service": [ - "voice", - "sms", - "message" - ] - }, - { - "phoneName": "office", - "phoneNumber": "222-222-2222", - "service": [ - "voice", - "message" - ] + ], + "fileUri": [ + { + "uri": "http://ISO.uri/adiwg/0" } - ], - "address": [ - { - "addressType": [ - "mailing", - "physical" - ], - "description": "work location", - "deliveryPoint": [ - "address line 1", - "address line 2" - ], - "city": "city", - "administrativeArea": "state", - "postalCode": "zip", - "country": "country" - }, - { - "addressType": [ - "mailing" - ], - "description": "telework location", - "deliveryPoint": [ - "address line 3" - ], - "city": "city", - "administrativeArea": "state", - "postalCode": "zip", - "country": "country" + ] + }, + { + "fileName": "fileName1", + "fileDescription": "fileDescription1", + "fileType": "fileType1" + }, + { + "fileName": "fileName2" + } + ], + "phone": [ + { + "phoneName": "mobile", + "phoneNumber": "111-111-1111", + "service": ["voice", "sms", "message"] + }, + { + "phoneName": "office", + "phoneNumber": "222-222-2222", + "service": ["voice", "message"] + } + ], + "address": [ + { + "addressType": ["mailing", "physical"], + "description": "work location", + "deliveryPoint": ["address line 1", "address line 2"], + "city": "city", + "administrativeArea": "state", + "postalCode": "zip", + "country": "country" + }, + { + "addressType": ["mailing"], + "description": "telework location", + "deliveryPoint": ["address line 3"], + "city": "city", + "administrativeArea": "state", + "postalCode": "zip", + "country": "country" + } + ], + "electronicMailAddress": ["e.mail@address.com1", "e.mail@address.com2"], + "onlineResource": [ + { + "uri": "http://ISO.uri/adiwg/1", + "name": "name", + "description": "description", + "function": "function", + "applicationProfile": "application profile", + "protocol": "protocol", + "protocolRequest": "protocol request" + }, + { + "uri": "http://ISO.uri/adiwg/2" + } + ], + "hoursOfService": ["hoursOfService1", "hoursOfService2"], + "contactInstructions": "contactInstructions", + "contactType": "individual" + }, + { + "contactId": "CID002", + "isOrganization": true, + "name": "US Geological Survey", + "memberOfOrganization": ["CID005"], + "logoGraphic": [ + { + "fileName": "fileName" + } + ], + "phone": [ + { + "phoneName": "single service", + "phoneNumber": "111-111-1111", + "service": ["voice"] + } + ], + "address": [ + { + "addressType": ["addressType"] + } + ], + "electronicMailAddress": ["e.mail@address.com2"], + "onlineResource": [ + { + "uri": "http://ISO.uri/adiwg/2" + } + ], + "hoursOfService": ["hoursOfService"], + "contactInstructions": "contactInstructions", + "contactType": "federal" + }, + { + "contactId": "CID003", + "isOrganization": true, + "name": "Arctic Landscape Conservation Cooperative", + "contactType": "federal" + }, + { + "contactId": "CID004", + "isOrganization": false, + "name": "Joshua Bradley", + "positionName": "Data Manager", + "memberOfOrganization": ["CID003"] + }, + { + "contactId": "CID005", + "isOrganization": true, + "name": "US Department of the Interior", + "contactType": "federal" + }, + { + "contactId": "CID006", + "isOrganization": false, + "name": "Dennis Walworth", + "memberOfOrganization": ["CID002"], + "contactType": "individual" + } + ], + "metadata": { + "metadataInfo": { + "metadataIdentifier": { + "identifier": "e9e82406-8308-4231-98e3-8b70fd438ada", + "namespace": "https://www.uuidgenerator.net/", + "version": "version 1.0", + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "authority": { + "title": "Metadata Identifier Authority Title", + "alternateTitle": ["alternateTitle0", "alternateTitle1"] + } + }, + "parentMetadata": { + "title": "Metadata Authority Title", + "alternateTitle": ["alternateTitle0", "alternateTitle1"], + "date": [ + { + "date": "2016-10-13", + "dateType": "dateType0" + }, + { + "date": "2016-10-22T16:15:14", + "dateType": "dateType1" + } + ], + "edition": "edition", + "responsibleParty": [ + { + "role": "principalInvestigator", + "roleExtent": [ + { + "description": "Extent 1: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." + }, + { + "description": "Extent 2: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "geographicExtent": [ + { + "description": "Polygon in Northern Alaska", + "containsData": true, + "geographicElement": [ + { + "type": "Feature", + "id": "polygon-75", + "bbox": [-10.0, -10.0, 10.0, 10.0], + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.74223, 67.663378], + [-161.440345, 67.630173], + [-161.294611, 67.656257], + [-161.228063, 67.625736], + [-161.247712, 67.585909], + [-161.334662, 67.591324], + [-161.566245, 67.491263], + [-161.812338, 67.455299], + [-161.825019, 67.40123], + [-162.128301, 67.414364], + [-162.167825, 67.363047], + [-162.383403, 67.293329], + [-162.633432, 67.272237], + [-162.645587, 67.356665], + [-162.369023, 67.455264], + [-162.287324, 67.551235], + [-162.171139, 67.559356], + [-161.99344, 67.646806], + [-161.857964, 67.620329], + [-161.769431, 67.629407], + [-161.74223, 67.663378] + ] + ] + }, + "properties": { + "description": "Agashashok River site", + "featureName": ["Agashashok River", "Camp Mosquito"], + "identifier": [ + { + "identifier": "AGAR" + }, + { + "identifier": "Kup25" + } + ], + "featureScope": "collectionSite", + "acquisitionMethod": "butterfly net", + "customField": "not in schema", + "customArray": ["string 1", "string 2"] + } + } + ] + } + ] + } + ], + "party": [ + { + "contactId": "CID001" + }, + { + "contactId": "CID004" + } + ] + }, + { + "role": "funder", + "party": [ + { + "contactId": "CID003", + "organizationMembers": ["CID004", "CID001"] + } + ] + } + ], + "presentationForm": ["presentationForm0", "presentationForm1"], + "identifier": [ + { + "identifier": "identifier0" + }, + { + "identifier": "identifier1" + } + ], + "series": { + "seriesName": "seriesName", + "seriesIssue": "seriesIssue", + "issuePage": "issuePage" + }, + "otherCitationDetails": [ + "otherCitationDetails0", + "otherCitationDetails1" + ], + "onlineResource": [ + { + "uri": "http://ISO.uri/adiwg/0" + }, + { + "uri": "http://ISO.uri/adiwg/1" + } + ], + "graphic": [ + { + "fileName": "fileName" + }, + { + "fileName": "fileName" + } + ] + }, + "defaultMetadataLocale": { + "language": "language", + "country": "country", + "characterSet": "characterSet" + }, + "otherMetadataLocale": [ + { + "language": "language0", + "country": "country0", + "characterSet": "characterSet0" + }, + { + "language": "language1", + "country": "country1", + "characterSet": "characterSet1" + } + ], + "metadataContact": [ + { + "role": "author", + "party": [ + { + "contactId": "CID001" + }, + { + "contactId": "CID004" + }, + { + "contactId": "CID006" } - ], - "electronicMailAddress": [ - "e.mail@address.com1", - "e.mail@address.com2" - ], - "onlineResource": [ - { - "uri": "http://ISO.uri/adiwg/1", - "name": "name", - "description": "description", - "function": "function", - "applicationProfile": "application profile", - "protocol": "protocol", - "protocolRequest": "protocol request" - }, - { - "uri": "http://ISO.uri/adiwg/2" + ] + }, + { + "role": "custodian", + "party": [ + { + "contactId": "CID002" } - ], - "hoursOfService": [ - "hoursOfService1", - "hoursOfService2" - ], - "contactInstructions": "contactInstructions", - "contactType": "individual" + ] + } + ], + "metadataDate": [ + { + "date": "2016-10-31", + "dateType": "dateType" + }, + { + "date": "2017-02-16", + "dateType": "creation" + }, + { + "date": "2016-10-31", + "dateType": "nextUpdate" + } + ], + "metadataOnlineResource": [ + { + "uri": "http://ISO.uri/adiwg/0" + }, + { + "uri": "http://ISO.uri/adiwg/1" + } + ], + "metadataConstraint": [ + { + "type": "use", + "useLimitation": ["useLimitation0", "useLimitation1"] + }, + { + "type": "legal", + "legal": { + "useConstraint": ["useConstraint0", "useConstraint1"], + "accessConstraint": ["accessConstraint0", "accessConstraint1"], + "otherConstraint": ["otherConstraint0", "otherConstraint1"] + } + }, + { + "type": "security", + "security": { + "classification": "classification", + "classificationSystem": "classificationSystem", + "userNote": "userNote", + "handlingDescription": "handlingDescription" + } + } + ], + "metadataMaintenance": { + "frequency": "monthly", + "date": [ + { + "date": "2016-10-12", + "dateType": "dateType00" + }, + { + "date": "2017-02-10", + "dateType": "nextUpdate" + } + ], + "scope": [ + { + "scopeCode": "dataset", + "scopeExtent": [ + { + "description": "Extent 1: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "temporalExtent": [ + { + "timeInstant": { + "dateTime": "2016-10-24T11:10:15.200-10:00" + } + }, + { + "timePeriod": { + "startDateTime": "2016-10-24T11:10:15.200-10:00" + } + } + ] + }, + { + "description": "Extent 2: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "geographicExtent": [ + { + "containsData": false, + "identifier": { + "identifier": "identifier" + }, + "boundingBox": { + "westLongitude": -140.0, + "eastLongitude": -120.0, + "southLatitude": 49.0, + "northLatitude": 70.0 + }, + "geographicElement": [ + { + "type": "Point", + "coordinates": [100.0, 0.0] + }, + { + "type": "LineString", + "coordinates": [ + [100.0, 0.0], + [101.0, 1.0] + ] + }, + { + "type": "Polygon", + "coordinates": [ + [ + [-161.74223, 67.663378], + [-161.440345, 67.630173], + [-161.294611, 67.656257], + [-161.228063, 67.625736], + [-161.247712, 67.585909], + [-161.334662, 67.591324], + [-161.566245, 67.491263], + [-161.812338, 67.455299], + [-161.825019, 67.40123], + [-162.128301, 67.414364], + [-162.167825, 67.363047], + [-162.383403, 67.293329], + [-162.633432, 67.272237], + [-162.645587, 67.356665], + [-162.369023, 67.455264], + [-162.287324, 67.551235], + [-162.171139, 67.559356], + [-161.99344, 67.646806], + [-161.857964, 67.620329], + [-161.769431, 67.629407], + [-161.74223, 67.663378] + ] + ] + } + ] + } + ] + } + ], + "scopeDescription": [ + { + "dataset": "CUSTOMER", + "attributes": "customer_id, invoice" + }, + { + "dataset": "dataset", + "attributes": "attributes", + "features": "features", + "other": "other" + } + ] + }, + { + "scopeCode": "fieldSeason" + } + ], + "note": ["note00", "note01"], + "contact": [ + { + "role": "processor", + "party": [ + { + "contactId": "CID004" + } + ] + }, + { + "role": "contributor", + "party": [ + { + "contactId": "CID006" + } + ] + } + ] }, - { - "contactId": "CID002", - "isOrganization": true, - "name": "US Geological Survey", - "memberOfOrganization": [ - "CID005" - ], - "logoGraphic": [ - { - "fileName": "fileName" + "alternateMetadataReference": [ + { + "title": "alternate metadata FGDC" + }, + { + "title": "alternate metadata NetCDF" + } + ], + "metadataStatus": "notAccepted" + }, + "resourceInfo": { + "resourceType": [ + { + "type": "tableDigital", + "name": "My Table Name" + }, + { + "type": "website", + "name": "My Website Name" + } + ], + "citation": { + "title": "International migration patterns of Red-throated Loons (Gavia stellata) from four breeding populations in Alaska", + "alternateTitle": [ + "How I spent my summer", + "Research under the midnight-sun" + ], + "date": [ + { + "date": "2017-06-13", + "dateType": "date type" + }, + { + "date": "2017-06-22T16:15:14", + "dateType": "dateTime type" + } + ], + "edition": "edition", + "responsibleParty": [ + { + "role": "principalInvestigator", + "roleExtent": [ + { + "description": "Extent 1: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." + }, + { + "description": "Extent 2: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "geographicExtent": [ + { + "containsData": true, + "geographicElement": [ + { + "type": "Feature", + "id": "polygon-75", + "bbox": [-10.0, -10.0, 10.0, 10.0], + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.74223, 67.663378], + [-161.440345, 67.630173], + [-161.294611, 67.656257], + [-161.228063, 67.625736], + [-161.247712, 67.585909], + [-161.334662, 67.591324], + [-161.566245, 67.491263], + [-161.812338, 67.455299], + [-161.825019, 67.40123], + [-162.128301, 67.414364], + [-162.167825, 67.363047], + [-162.383403, 67.293329], + [-162.633432, 67.272237], + [-162.645587, 67.356665], + [-162.369023, 67.455264], + [-162.287324, 67.551235], + [-162.171139, 67.559356], + [-161.99344, 67.646806], + [-161.857964, 67.620329], + [-161.769431, 67.629407], + [-161.74223, 67.663378] + ] + ] + }, + "properties": { + "description": "Agashashok River site", + "featureName": ["Agashashok River", "Camp Mosquito"], + "identifier": [ + { + "identifier": "AGAR" + }, + { + "identifier": "Kup25" + } + ], + "featureScope": "collectionSite", + "acquisitionMethod": "butterfly net", + "customField": "not in schema", + "customArray": ["string 1", "string 2"] + } + } + ] + } + ] + } + ], + "party": [ + { + "contactId": "CID001" + }, + { + "contactId": "CID004" + } + ] + }, + { + "role": "funder", + "party": [ + { + "contactId": "CID003", + "organizationMembers": ["CID004", "CID001"] + } + ] + } + ], + "presentationForm": ["presentationForm0", "presentationForm1"], + "identifier": [ + { + "identifier": "identifier0" + }, + { + "identifier": "identifier1" + } + ], + "series": { + "seriesName": "seriesName", + "seriesIssue": "seriesIssue", + "issuePage": "issuePage" + }, + "otherCitationDetails": [ + "otherCitationDetails0", + "otherCitationDetails1" + ], + "onlineResource": [ + { + "uri": "http://ISO.uri/adiwg/0" + }, + { + "uri": "http://ISO.uri/adiwg/1" + } + ], + "graphic": [ + { + "fileName": "fileName" + }, + { + "fileName": "fileName" + } + ] + }, + "abstract": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "shortAbstract": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", + "purpose": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "resourceUsage": [ + { + "specificUsage": "My Specific Usage is quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo.", + "temporalExtent": [ + { + "timeInstant": { + "dateTime": "2016-10-24T11:10:15.2-10:00", + "id": "instant_001", + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "identifier": { + "identifier": "HighTide", + "namespace": "namespace" + }, + "instantName": ["instantName 00", "instantName 01"] + } + }, + { + "timePeriod": { + "id": "period_001", + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "identifier": { + "identifier": "SlackTide", + "namespace": "namespace" + }, + "periodName": ["periodName 00", "periodName 01"], + "startDateTime": "2017", + "endDateTime": "2018", + "timeInterval": { + "interval": 9, + "units": "month" + }, + "duration": { + "months": 9 + } + } + }, + { + "timeInstant": { + "dateTime": "2017-03-25T23:10:15", + "id": "instant_002", + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "identifier": { + "identifier": "LowTide", + "namespace": "namespace", + "version": "version", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt,", + "authority": { + "title": "title", + "alternateTitle": ["alternateTitle0", "alternateTitle1"], + "date": [ + { + "date": "2016-10-13", + "dateType": "dateType0" + }, + { + "date": "2016-10-22T16:15:14", + "dateType": "dateType1" + } + ], + "edition": "edition", + "responsibleParty": [ + { + "role": "principalInvestigator", + "party": [ + { + "contactId": "CID001" + }, + { + "contactId": "CID004" + } + ] + }, + { + "role": "funder", + "party": [ + { + "contactId": "CID003", + "organizationMembers": ["CID004", "CID001"] + } + ] + } + ], + "presentationForm": [ + "presentationForm0", + "presentationForm1" + ], + "identifier": [ + { + "identifier": "identifier0" + }, + { + "identifier": "identifier1" + } + ], + "series": { + "seriesName": "seriesName", + "seriesIssue": "seriesIssue", + "issuePage": "issuePage" + }, + "otherCitationDetails": [ + "otherCitationDetails0", + "otherCitationDetails1" + ], + "onlineResource": [ + { + "uri": "http://ISO.uri/adiwg/0" + }, + { + "uri": "http://ISO.uri/adiwg/1" + } + ], + "graphic": [ + { + "fileName": "fileName" + }, + { + "fileName": "fileName" + } + ] + } + }, + "instantName": ["instantName 20", "instantName 21"] + } } - ], - "phone": [ - { - "phoneName": "single service", - "phoneNumber": "111-111-1111", - "service": [ - "voice" - ] + ], + "userDeterminedLimitation": "My Specific Limitation is quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo.", + "limitationResponse": [ + "Exercitation ullamco laboris nisi ut aliquip ex ea commodo quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo.", + "Nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo. My Specific Usage is quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo." + ], + "documentedIssue": { + "title": "My Documented Issue", + "date": [ + { + "date": "2016-10-13", + "dateType": "dateType0" + }, + { + "date": "2016-10-22T16:15:14", + "dateType": "dateType1" + } + ] + }, + "additionalDocumentation": [ + { + "title": "title1" + }, + { + "title": "title2" } - ], - "address": [ + ], + "userContactInfo": [ { - "addressType": [ - "addressType" - ] + "role": "administrator", + "party": [ + { + "contactId": "CID006" + } + ] + }, + { + "role": "coPrincipalInvestigator", + "party": [ + { + "contactId": "CID001" + }, + { + "contactId": "CID003" + } + ] } - ], - "electronicMailAddress": [ - "e.mail@address.com2" - ], - "onlineResource": [ + ] + }, + { + "specificUsage": "My specific usage is Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + } + ], + "status": ["incomplete", "suspended"], + "pointOfContact": [ + { + "role": "pointOfContact", + "party": [ + { + "contactId": "CID001" + }, { - "uri": "http://ISO.uri/adiwg/2" + "contactId": "CID006" } - ], - "hoursOfService": [ - "hoursOfService" - ], - "contactInstructions": "contactInstructions", - "contactType": "federal" - }, - { - "contactId": "CID003", - "isOrganization": true, - "name": "Arctic Landscape Conservation Cooperative", - "contactType": "federal" - }, - { - "contactId": "CID004", - "isOrganization": false, - "name": "Joshua Bradley", - "positionName": "Data Manager", - "memberOfOrganization": [ - "CID003" - ] + ] + }, + { + "role": "principalInvestigator", + "party": [ + { + "contactId": "CID004" + } + ] + } + ], + "defaultResourceLocale": { + "language": "eng", + "country": "USA", + "characterSet": "UTF-8" }, - { - "contactId": "CID005", - "isOrganization": true, - "name": "US Department of the Interior", - "contactType": "federal" + "otherResourceLocale": [ + { + "language": "language0", + "country": "country0", + "characterSet": "characterSet0" + }, + { + "language": "language1", + "country": "country1", + "characterSet": "characterSet1" + } + ], + "credit": [ + "Lim, Sonny B. - Guitar", + "Peterson, Jeff - Slack Key Guitar", + "Kamakawiwo'ole, Israel - Vocal" + ], + "timePeriod": { + "startDateTime": "2016-11-01" }, - { - "contactId": "CID006", - "isOrganization": false, - "name": "Dennis Walworth", - "memberOfOrganization": [ - "CID002" - ], - "contactType": "individual" - } - ], - "metadata": { - "metadataInfo": { - "metadataIdentifier": { - "identifier": "e9e82406-8308-4231-98e3-8b70fd438ada", - "namespace": "https://www.uuidgenerator.net/", - "version": "version 1.0", - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "authority": { - "title": "Metadata Identifier Authority Title", - "alternateTitle": [ - "alternateTitle0", - "alternateTitle1" - ] + "temporalResolution": [ + { + "years": 1, + "months": 8, + "days": 13 + }, + { + "seconds": 5 + } + ], + "spatialReferenceSystem": [ + { + "referenceSystemType": "referenceSystemType0", + "referenceSystemIdentifier": { + "identifier": "spatial reference system identifier", + "namespace": "namespace", + "version": "version", + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." + }, + "referenceSystemWKT": "POLYGON ((35 10, 45 45, 15 40, 10 20, 35 10),(20 30, 35 35, 30 20, 20 30))", + "referenceSystemParameterSet": { + "projection": { + "projectionIdentifier": { + "identifier": "transverseMercator", + "name": "Transverse Mercator", + "description": "Ut local planar enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. " + }, + "gridIdentifier": { + "identifier": "spcs", + "name": "Alaska State Plane Coordinate System", + "description": "Ut local planar enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. " + }, + "gridZone": "9", + "standardParallel1": 9.0, + "standardParallel2": 99.0, + "longitudeOfCentralMeridian": -9.0, + "latitudeOfProjectionOrigin": 9.0, + "falseEasting": 99999.0, + "falseNorthing": 999999.0, + "falseEastingNorthingUnits": "feet", + "scaleFactorAtEquator": 99.9, + "heightOfProspectivePointAboveSurface": 999.0, + "longitudeOfProjectionCenter": -99.0, + "latitudeOfProjectionCenter": 9.0, + "scaleFactorAtCenterLine": 99.9, + "scaleFactorAtCentralMeridian": 9.9, + "straightVerticalLongitudeFromPole": 999.9, + "scaleFactorAtProjectionOrigin": 99.9, + "azimuthAngle": 9.9, + "azimuthMeasurePointLongitude": -99.0, + "obliqueLinePoint": [ + { + "obliqueLineLatitude": 9.99999, + "obliqueLineLongitude": -9.99999 + }, + { + "obliqueLineLatitude": 19.99999, + "obliqueLineLongitude": -19.99999 + } + ], + "landsatNumber": 9, + "landsatPath": 9999, + "local": { + "fixedToEarth": true, + "description": "Ut local planar enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident", + "georeference": "Ut local planar georeference enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident" + } + }, + "geodetic": { + "datumIdentifier": { + "identifier": "datum identifier" + }, + "datumName": "geodetic datum name", + "ellipsoidIdentifier": { + "identifier": "ellipsoid identifier" + }, + "ellipsoidName": "WGS84", + "semiMajorAxis": 9999999.0, + "axisUnits": "feet", + "denominatorOfFlatteningRatio": 999.9 + }, + "verticalDatum": { + "datumIdentifier": { + "identifier": "altitude datum identifier" + }, + "datumName": "vertical datum name", + "encodingMethod": "attribute values", + "isDepthSystem": false, + "verticalResolution": 9.9, + "unitOfMeasure": "meters" } - }, - "parentMetadata": { - "title": "Metadata Authority Title", - "alternateTitle": [ - "alternateTitle0", - "alternateTitle1" - ], - "date": [ - { - "date": "2016-10-13", - "dateType": "dateType0" - }, - { - "date": "2016-10-22T16:15:14", - "dateType": "dateType1" - } - ], - "edition": "edition", - "responsibleParty": [ - { - "role": "principalInvestigator", - "roleExtent": [ - { - "description": "Extent 1: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." - }, - { - "description": "Extent 2: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "geographicExtent": [ - { - "description": "Polygon in Northern Alaska", - "containsData": true, - "geographicElement": [ - { - "type": "Feature", - "id": "polygon-75", - "bbox": [-10.0, -10.0, 10.0, 10.0], - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-161.74223, 67.663378], - [-161.440345, 67.630173], - [-161.294611, 67.656257], - [-161.228063, 67.625736], - [-161.247712, 67.585909], - [-161.334662, 67.591324], - [-161.566245, 67.491263], - [-161.812338, 67.455299], - [-161.825019, 67.40123], - [-162.128301, 67.414364], - [-162.167825, 67.363047], - [-162.383403, 67.293329], - [-162.633432, 67.272237], - [-162.645587, 67.356665], - [-162.369023, 67.455264], - [-162.287324, 67.551235], - [-162.171139, 67.559356], - [-161.99344, 67.646806], - [-161.857964, 67.620329], - [-161.769431, 67.629407], - [-161.74223, 67.663378] - ] - ] - }, - "properties": { - "description": "Agashashok River site", - "featureName": [ - "Agashashok River", - "Camp Mosquito" - ], - "identifier": [ - { - "identifier": "AGAR" - }, - { - "identifier": "Kup25" - } - ], - "featureScope": "collectionSite", - "acquisitionMethod": "butterfly net", - "customField": "not in schema", - "customArray": [ - "string 1", - "string 2" - ] - } - } - ] - } - ] - } - ], - "party": [ - { - "contactId": "CID001" - }, - { - "contactId": "CID004" - } - ] - }, - { - "role": "funder", - "party": [ - { - "contactId": "CID003", - "organizationMembers": [ - "CID004", - "CID001" - ] - } - ] - } - ], - "presentationForm": [ - "presentationForm0", - "presentationForm1" - ], - "identifier": [ - { - "identifier": "identifier0" - }, - { - "identifier": "identifier1" - } - ], - "series": { - "seriesName": "seriesName", - "seriesIssue": "seriesIssue", - "issuePage": "issuePage" - }, - "otherCitationDetails": [ - "otherCitationDetails0", - "otherCitationDetails1" + } + }, + { + "referenceSystemType": "geodeticGeocentric" + }, + { + "referenceSystemIdentifier": { + "identifier": "NGS84", + "namespace": "epsg", + "description": "WGS84 (World Geodetic System of 1984) uses WGS84 ellipsoid where as NAD83 (North American 1983 Datum) uses the Geodetic Reference System (GRS80) ellipsoid. 2. WGS84 has 0.21mm longer ellipsoid than NAD83.." + } + }, + { + "referenceSystemWKT": "POLYGON ((35 10, 45 45, 15 40, 10 20, 35 10),(20 30, 35 35, 30 20, 20 30))" + }, + { + "referenceSystemParameterSet": { + "projection": { + "projectionIdentifier": { + "identifier": "transverseMercator", + "name": "Transverse Mercator" + }, + "scaleFactorAtCentralMeridian": 9.9, + "longitudeOfCentralMeridian": -9.0, + "latitudeOfProjectionOrigin": 9.0, + "falseEasting": 99999.0, + "falseNorthing": 999999.0 + } + } + }, + { + "referenceSystemParameterSet": { + "projection": { + "projectionIdentifier": { + "identifier": "obliqueMercator", + "name": "Oblique Mercator" + }, + "gridIdentifier": { + "identifier": "spcs", + "name": "Alaska State Plane Coordinate System" + }, + "gridZone": "1", + "scaleFactorAtCentralLine": 9.9, + "obliqueLinePoint": [ + { + "obliqueLineLatitude": 9.99999, + "obliqueLineLongitude": -9.99999 + }, + { + "obliqueLineLatitude": 19.99999, + "obliqueLineLongitude": -19.99999 + } + ], + "latitudeOfProjectionOrigin": 9.0, + "falseEasting": 99999.0, + "falseNorthing": 999999.0 + } + } + }, + { + "referenceSystemParameterSet": { + "projection": { + "projectionIdentifier": { + "identifier": "other", + "name": "custom coordinate projection system", + "description": "My projection is... Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." + } + } + } + }, + { + "referenceSystemParameterSet": { + "projection": { + "projectionIdentifier": { + "identifier": "other", + "name": "custom coordinate projection system", + "description": "My projection is... Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." + }, + "gridIdentifier": { + "identifier": "other", + "name": "custom grid system", + "description": "My grid is... Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." + } + } + } + } + ], + "spatialRepresentationType": ["vector", "stereoModel"], + "spatialRepresentation": [ + { + "gridRepresentation": { + "numberOfDimensions": 9, + "dimension": [ + { + "dimensionType": "column", + "dimensionSize": 9, + "resolution": { + "type": "distance", + "value": 9.9, + "unitOfMeasure": "feet" + }, + "dimensionTitle": "COLUMN TITLE", + "dimensionDescription": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + }, + { + "dimensionType": "row", + "dimensionSize": 9 + } ], - "onlineResource": [ - { - "uri": "http://ISO.uri/adiwg/0" - }, - { - "uri": "http://ISO.uri/adiwg/1" - } + "cellGeometry": "voxel", + "transformParamsAvailability": true + } + }, + { + "vectorRepresentation": { + "topologyLevel": "fullTopology3D", + "vectorObject": [ + { + "objectType": "object Type 0", + "objectCount": 9 + }, + { + "objectType": "object Type 1", + "objectCount": 9 + } + ] + } + }, + { + "georectifiedRepresentation": { + "gridRepresentation": { + "numberOfDimensions": 9, + "dimension": [ + { + "dimensionType": "row", + "dimensionSize": 90 + }, + { + "dimensionType": "column", + "dimensionSize": 91 + } + ], + "cellGeometry": "cellGeometry", + "transformationParameterAvailable": true + }, + "checkPointAvailable": true, + "checkPointDescription": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "cornerPoints": [ + [0.0, 0.0], + [0.0, 1.0], + [1.0, 1.0], + [1.0, 0.0] ], - "graphic": [ - { - "fileName": "fileName" - }, - { - "fileName": "fileName" - } + "centerPoint": [0.5, 0.5], + "pointInPixel": "upperRight", + "transformationDimensionDescription": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", + "transformationDimensionMapping": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + } + }, + { + "georeferenceableRepresentation": { + "gridRepresentation": { + "numberOfDimensions": 9, + "dimension": [ + { + "dimensionType": "row", + "dimensionSize": 90 + }, + { + "dimensionType": "column", + "dimensionSize": 91 + } + ], + "cellGeometry": "cellGeometry", + "transformationParameterAvailable": true + }, + "controlPointAvailable": true, + "orientationParameterAvailable": true, + "orientationParameterDescription": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "georeferencedParameter": "Georeferenced Parameter 00", + "parameterCitation": [ + { + "title": "title0" + }, + { + "title": "title1" + } ] - }, - "defaultMetadataLocale": { - "language": "language", - "country": "country", - "characterSet": "characterSet" - }, - "otherMetadataLocale": [ - { - "language": "language0", - "country": "country0", - "characterSet": "characterSet0" - }, - { - "language": "language1", - "country": "country1", - "characterSet": "characterSet1" - } - ], - "metadataContact": [ + } + } + ], + "spatialResolution": [ + { + "scaleFactor": 63360 + }, + { + "measure": { + "type": "distance", + "value": 99.9, + "unitOfMeasure": "unitOfMeasure" + } + }, + { + "coordinateResolution": { + "abscissaResolutionX": 9.9, + "ordinateResolutionY": 99.9, + "unitOfMeasure": "coord UOM" + } + }, + { + "bearingDistanceResolution": { + "distanceResolution": 9.9, + "distanceUnitOfMeasure": "distance UOM", + "bearingResolution": 19.9, + "bearingUnitOfMeasure": "bearing UOM", + "bearingReferenceDirection": "north", + "bearingReferenceMeridian": "assumed" + } + }, + { + "geographicResolution": { + "latitudeResolution": 19.9, + "longitudeResolution": 119.9, + "unitOfMeasure": "geographic UOM" + } + }, + { + "levelOfDetail": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." + }, + { + "scaleFactor": 250000 + }, + { + "coordinateResolution": { + "abscissaResolutionX": 100.0, + "ordinateResolutionY": 500.0, + "unitOfMeasure": "coord UOM" + } + } + ], + "keyword": [ + { + "keyword": [ { - "role": "author", - "party": [ - { - "contactId": "CID001" - }, - { - "contactId": "CID004" - }, - { - "contactId": "CID006" - } - ] + "keyword": "Barrow" }, { - "role": "custodian", - "party": [ - { - "contactId": "CID002" - } - ] + "keyword": "Prudhoe Bay" + }, + { + "keyword": "Kaparuk" } - ], - "metadataDate": [ + ], + "keywordType": "Place Names", + "thesaurus": { + "title": "USGS Geographic Names Information System" + } + }, + { + "keyword": [ + { + "keyword": "Brown Bear", + "keywordId": "TSN12365741" + }, { - "date": "2016-10-31", - "dateType": "dateType" + "keyword": "Polar Bear", + "keywordId": "TSN125415741" }, { - "date": "2017-02-16", - "dateType": "creation" + "keyword": "Black Bear", + "keywordId": "TSN123689426" }, { - "date": "2016-10-31", - "dateType": "nextUpdate" + "keyword": "Cinnamon Bear", + "keywordId": "TSN123842165" + }, + { + "keyword": "Teddy Bear" } - ], - "metadataOnlineResource": [ + ], + "keywordType": "Taxonomy" + }, + { + "keyword": [ + { + "keyword": "butter" + }, { - "uri": "http://ISO.uri/adiwg/0" + "keyword": "sugar" }, { - "uri": "http://ISO.uri/adiwg/1" + "keyword": "eggs" } - ], - "metadataConstraint": [ + ] + }, + { + "keyword": [ { - "type": "use", - "useLimitation": [ - "useLimitation0", - "useLimitation1" - ] + "keyword": "inlandWaters", + "keywordId": "012" }, { - "type": "legal", - "legal": { - "useConstraint": [ - "useConstraint0", - "useConstraint1" - ], - "accessConstraint": [ - "accessConstraint0", - "accessConstraint1" - ], - "otherConstraint": [ - "otherConstraint0", - "otherConstraint1" - ] - } + "keyword": "location", + "keywordId": "013" }, { - "type": "security", - "security": { - "classification": "classification", - "classificationSystem": "classificationSystem", - "userNote": "userNote", - "handlingDescription": "handlingDescription" - } + "keyword": "climatologyMeteorologyAtmosphere", + "keywordId": "004" } - ], - "metadataMaintenance": { - "frequency": "monthly", - "date": [ - { - "date": "2016-10-12", - "dateType": "dateType00" - }, - { - "date": "2017-02-10", - "dateType": "nextUpdate" - } - ], - "scope": [ - { - "scopeCode": "dataset", - "scopeExtent": [ - { - "description": "Extent 1: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "temporalExtent": [ - { - "timeInstant": { - "dateTime": "2016-10-24T11:10:15.200-10:00" - } - }, - { - "timePeriod": { - "startDateTime": "2016-10-24T11:10:15.200-10:00" - } - } - ] - }, - { - "description": "Extent 2: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "geographicExtent": [ - { - "containsData": false, - "identifier": { - "identifier": "identifier" - }, - "boundingBox": { - "westLongitude": -140.0, - "eastLongitude": -120.0, - "southLatitude": 49.0, - "northLatitude": 70.0 - }, - "geographicElement": [ - { - "type": "Point", - "coordinates": [100.0, 0.0] - }, - { - "type": "LineString", - "coordinates": [ - [100.0, 0.0], - [101.0, 1.0] - ] - }, - { - "type": "Polygon", - "coordinates": [ - [ - [-161.74223, 67.663378], - [-161.440345, 67.630173], - [-161.294611, 67.656257], - [-161.228063, 67.625736], - [-161.247712, 67.585909], - [-161.334662, 67.591324], - [-161.566245, 67.491263], - [-161.812338, 67.455299], - [-161.825019, 67.40123], - [-162.128301, 67.414364], - [-162.167825, 67.363047], - [-162.383403, 67.293329], - [-162.633432, 67.272237], - [-162.645587, 67.356665], - [-162.369023, 67.455264], - [-162.287324, 67.551235], - [-162.171139, 67.559356], - [-161.99344, 67.646806], - [-161.857964, 67.620329], - [-161.769431, 67.629407], - [-161.74223, 67.663378] - ] - ] - } - ] - } - ] - } - ], - "scopeDescription": [ - { - "dataset": "CUSTOMER", - "attributes": "customer_id, invoice" - }, - { - "dataset": "dataset", - "attributes": "attributes", - "features": "features", - "other": "other" - } - ] - }, - { - "scopeCode": "fieldSeason" - } - ], - "note": [ - "note00", - "note01" - ], - "contact": [ - { - "role": "processor", - "party": [ - { - "contactId": "CID004" - } - ] - }, - { - "role": "contributor", - "party": [ - { - "contactId": "CID006" - } - ] - } - ] - }, - "alternateMetadataReference": [ + ], + "keywordType": "isoTopicCategory" + } + ], + "taxonomy": [ + { + "taxonomicSystem": [ + { + "citation": { + "title": "ITIS - Integrated Taxonomic Information System", + "alternateTitle": ["Citation for ITIS"] + }, + "modifications": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." + }, { - "title": "alternate metadata FGDC" + "citation": { + "title": "Some OTHER Taxonomic System" + } + } + ], + "generalScope": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "identificationReference": [ + { + "title": "Non-Authoritative reference one", + "date": [ + { + "date": "2015-02-14", + "dateType": "revision" + } + ], + "edition": "3rd Edition" }, { - "title": "alternate metadata NetCDF" + "title": "Non-Authoritative reference two", + "date": [ + { + "date": "1927-10-23", + "dateType": "publication" + } + ] } - ], - "metadataStatus": "notAccepted" - }, - "resourceInfo": { - "resourceType": [ + ], + "observer": [ { - "type": "tableDigital", - "name": "My Table Name" + "role": "coPrincipalInvestigator", + "party": [ + { + "contactId": "CID006" + }, + { + "contactId": "CID004" + } + ] }, { - "type": "website", - "name": "My Website Name" + "role": "editor", + "party": [ + { + "contactId": "CID001" + } + ] } - ], - "citation": { - "title": "International migration patterns of Red-throated Loons (Gavia stellata) from four breeding populations in Alaska", - "alternateTitle": [ - "How I spent my summer", - "Research under the midnight-sun" - ], - "date": [ - { - "date": "2017-06-13", - "dateType": "date type" - }, - { - "date": "2017-06-22T16:15:14", - "dateType": "dateTime type" - } - ], - "edition": "edition", - "responsibleParty": [ - { - "role": "principalInvestigator", - "roleExtent": [ - { - "description": "Extent 1: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." - }, - { - "description": "Extent 2: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "geographicExtent": [ - { - "containsData": true, - "geographicElement": [ - { - "type": "Feature", - "id": "polygon-75", - "bbox": [-10.0, -10.0, 10.0, 10.0], - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-161.74223, 67.663378], - [-161.440345, 67.630173], - [-161.294611, 67.656257], - [-161.228063, 67.625736], - [-161.247712, 67.585909], - [-161.334662, 67.591324], - [-161.566245, 67.491263], - [-161.812338, 67.455299], - [-161.825019, 67.40123], - [-162.128301, 67.414364], - [-162.167825, 67.363047], - [-162.383403, 67.293329], - [-162.633432, 67.272237], - [-162.645587, 67.356665], - [-162.369023, 67.455264], - [-162.287324, 67.551235], - [-162.171139, 67.559356], - [-161.99344, 67.646806], - [-161.857964, 67.620329], - [-161.769431, 67.629407], - [-161.74223, 67.663378] - ] - ] - }, - "properties": { - "description": "Agashashok River site", - "featureName": [ - "Agashashok River", - "Camp Mosquito" - ], - "identifier": [ - { - "identifier": "AGAR" - }, - { - "identifier": "Kup25" - } - ], - "featureScope": "collectionSite", - "acquisitionMethod": "butterfly net", - "customField": "not in schema", - "customArray": [ - "string 1", - "string 2" - ] - } - } - ] - } - ] - } - ], - "party": [ - { - "contactId": "CID001" - }, - { - "contactId": "CID004" - } - ] - }, - { - "role": "funder", - "party": [ - { - "contactId": "CID003", - "organizationMembers": [ - "CID004", - "CID001" - ] - } - ] - } - ], - "presentationForm": [ - "presentationForm0", - "presentationForm1" - ], - "identifier": [ - { - "identifier": "identifier0" - }, - { - "identifier": "identifier1" - } - ], - "series": { - "seriesName": "seriesName", - "seriesIssue": "seriesIssue", - "issuePage": "issuePage" - }, - "otherCitationDetails": [ - "otherCitationDetails0", - "otherCitationDetails1" - ], - "onlineResource": [ - { - "uri": "http://ISO.uri/adiwg/0" - }, - { - "uri": "http://ISO.uri/adiwg/1" - } - ], - "graphic": [ - { - "fileName": "fileName" - }, - { - "fileName": "fileName" - } - ] - }, - "abstract": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", - "shortAbstract": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", - "purpose": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "resourceUsage": [ - { - "specificUsage": "My Specific Usage is quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo.", - "temporalExtent": [ - { - "timeInstant": { - "dateTime": "2016-10-24T11:10:15.2-10:00", - "id": "instant_001", - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "identifier": { - "identifier": "HighTide", - "namespace": "namespace" - }, - "instantName": [ - "instantName 00", - "instantName 01" - ] - } - }, - { - "timePeriod": { - "id": "period_001", - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "identifier": { - "identifier": "SlackTide", - "namespace": "namespace" - }, - "periodName": [ - "periodName 00", - "periodName 01" - ], - "startDateTime": "2017", - "endDateTime": "2018", - "timeInterval": { - "interval": 9, - "units": "month" - }, - "duration": { - "months": 9 - } - } - }, + ], + "identificationProcedure": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "identificationCompleteness": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "voucher": [ + { + "specimen": "bear claw", + "repository": { + "role": "custodian", + "party": [ { - "timeInstant": { - "dateTime": "2017-03-25T23:10:15", - "id": "instant_002", - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "identifier": { - "identifier": "LowTide", - "namespace": "namespace", - "version": "version", - "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt,", - "authority": { - "title": "title", - "alternateTitle": [ - "alternateTitle0", - "alternateTitle1" - ], - "date": [ - { - "date": "2016-10-13", - "dateType": "dateType0" - }, - { - "date": "2016-10-22T16:15:14", - "dateType": "dateType1" - } - ], - "edition": "edition", - "responsibleParty": [ - { - "role": "principalInvestigator", - "party": [ - { - "contactId": "CID001" - }, - { - "contactId": "CID004" - } - ] - }, - { - "role": "funder", - "party": [ - { - "contactId": "CID003", - "organizationMembers": [ - "CID004", - "CID001" - ] - } - ] - } - ], - "presentationForm": [ - "presentationForm0", - "presentationForm1" - ], - "identifier": [ - { - "identifier": "identifier0" - }, - { - "identifier": "identifier1" - } - ], - "series": { - "seriesName": "seriesName", - "seriesIssue": "seriesIssue", - "issuePage": "issuePage" - }, - "otherCitationDetails": [ - "otherCitationDetails0", - "otherCitationDetails1" - ], - "onlineResource": [ - { - "uri": "http://ISO.uri/adiwg/0" - }, - { - "uri": "http://ISO.uri/adiwg/1" - } - ], - "graphic": [ - { - "fileName": "fileName" - }, - { - "fileName": "fileName" - } - ] - } - }, - "instantName": [ - "instantName 20", - "instantName 21" - ] - } + "contactId": "CID002" } - ], - "userDeterminedLimitation": "My Specific Limitation is quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo.", - "limitationResponse": [ - "Exercitation ullamco laboris nisi ut aliquip ex ea commodo quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo.", - "Nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo. My Specific Usage is quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo." - ], - "documentedIssue": { - "title": "My Documented Issue", - "date": [ - { - "date": "2016-10-13", - "dateType": "dateType0" - }, - { - "date": "2016-10-22T16:15:14", - "dateType": "dateType1" - } - ] - }, - "additionalDocumentation": [ - { - "title": "title1" - }, + ] + } + }, + { + "specimen": "moose tooth", + "repository": { + "role": "custodian", + "party": [ { - "title": "title2" + "contactId": "CID002" } - ], - "userContactInfo": [ - { - "role": "administrator", - "party": [ + ] + } + } + ], + "taxonomicClassification": [ + { + "taxonomicSystemId": "taxon id", + "taxonomicLevel": "taxon rank", + "taxonomicName": "taxon name", + "commonName": ["common one", "common two"], + "subClassification": [ + { + "taxonomicSystemId": "taxon id", + "taxonomicLevel": "level two", + "taxonomicName": "name two", + "commonName": ["common one", "common two"], + "subClassification": [ + { + "taxonomicSystemId": "taxon id", + "taxonomicLevel": "level three", + "taxonomicName": "name three", + "commonName": ["common one", "common two"], + "subClassification": [ + { + "taxonomicSystemId": "taxon id", + "taxonomicLevel": "level four 1", + "taxonomicName": "name four 1", + "commonName": ["common one", "common two"], + "subClassification": [ + { + "taxonomicSystemId": "taxon id", + "taxonomicLevel": "level five 1", + "taxonomicName": "name five 1", + "commonName": ["common five 1A", "common five 1B"] + } + ] + }, { - "contactId": "CID006" + "taxonomicSystemId": "taxon id", + "taxonomicLevel": "level four 2", + "taxonomicName": "name four 2", + "commonName": ["common four 2A"], + "subClassification": [ + { + "taxonomicSystemId": "taxon id", + "taxonomicLevel": "level five 2", + "taxonomicName": "name five 2", + "commonName": ["common one", "common two"] + } + ] } - ] - }, - { - "role": "coPrincipalInvestigator", - "party": [ + ] + } + ] + } + ] + }, + { + "taxonomicSystemId": "taxon id", + "taxonomicLevel": "taxon rank", + "taxonomicName": "taxon name", + "commonName": ["common one", "common two"], + "subClassification": [ + { + "taxonomicSystemId": "taxon id", + "taxonomicLevel": "level two", + "taxonomicName": "name two", + "commonName": ["common one", "common two"], + "subClassification": [ + { + "taxonomicSystemId": "taxon id", + "taxonomicLevel": "level three", + "taxonomicName": "name three", + "commonName": ["common one", "common two"], + "subClassification": [ { - "contactId": "CID001" + "taxonomicSystemId": "taxon id", + "taxonomicLevel": "level four 1", + "taxonomicName": "name four 1", + "commonName": ["common one", "common two"], + "subClassification": [ + { + "taxonomicSystemId": "taxon id", + "taxonomicLevel": "level five 1", + "taxonomicName": "name five 1", + "commonName": ["common five 1A", "common five 1B"] + } + ] }, { - "contactId": "CID003" + "taxonomicSystemId": "taxon id", + "taxonomicLevel": "level four 2", + "taxonomicName": "name four 2", + "commonName": ["common four 2A"], + "subClassification": [ + { + "taxonomicSystemId": "taxon id", + "taxonomicLevel": "level five 2", + "taxonomicName": "name five 2", + "commonName": ["common one", "common two"] + } + ] } - ] - } - ] - }, + ] + } + ] + } + ] + } + ] + }, + { + "taxonomicSystem": [ + { + "citation": { + "title": "NCBI - National Center for Biotechnology Information", + "alternateTitle": ["Citation for NCBI"] + } + } + ], + "generalScope": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "identificationReference": [ + { + "title": "Non-Authoritative reference three", + "date": [ + { + "date": "1984-01-15", + "dateType": "publication" + } + ] + } + ], + "observer": [ { - "specificUsage": "My specific usage is Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + "role": "coPrincipalInvestigator", + "party": [ + { + "contactId": "CID006" + } + ] } - ], - "status": [ - "incomplete", - "suspended" - ], - "pointOfContact": [ - { - "role": "pointOfContact", - "party": [ - { - "contactId": "CID001" - }, - { - "contactId": "CID006" - } - ] - }, + ], + "identificationProcedure": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "identificationCompleteness": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "voucher": [ { - "role": "principalInvestigator", - "party": [ + "specimen": "bear claw", + "repository": { + "role": "custodian", + "party": [ { - "contactId": "CID004" + "contactId": "CID002" } - ] - } - ], - "defaultResourceLocale": { - "language": "eng", - "country": "USA", - "characterSet": "UTF-8" - }, - "otherResourceLocale": [ - { - "language": "language0", - "country": "country0", - "characterSet": "characterSet0" - }, - { - "language": "language1", - "country": "country1", - "characterSet": "characterSet1" - } - ], - "credit": [ - "Lim, Sonny B. - Guitar", - "Peterson, Jeff - Slack Key Guitar", - "Kamakawiwo'ole, Israel - Vocal" - ], - "timePeriod": { - "startDateTime": "2016-11-01" - }, - "temporalResolution": [ - { - "years": 1, - "months": 8, - "days": 13 - }, - { - "seconds": 5 + ] + } } - ], - "spatialReferenceSystem": [ - { - "referenceSystemType": "referenceSystemType0", - "referenceSystemIdentifier": { - "identifier": "spatial reference system identifier", - "namespace": "namespace", - "version": "version", - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." - }, - "referenceSystemWKT": "POLYGON ((35 10, 45 45, 15 40, 10 20, 35 10),(20 30, 35 35, 30 20, 20 30))", - "referenceSystemParameterSet": { - "projection": { - "projectionIdentifier": { - "identifier": "transverseMercator", - "name": "Transverse Mercator", - "description": "Ut local planar enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. " - }, - "gridIdentifier": { - "identifier": "spcs", - "name": "Alaska State Plane Coordinate System", - "description": "Ut local planar enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. " - }, - "gridZone": "9", - "standardParallel1": 9.0, - "standardParallel2": 99.0, - "longitudeOfCentralMeridian": -9.0, - "latitudeOfProjectionOrigin": 9.0, - "falseEasting": 99999.0, - "falseNorthing": 999999.0, - "falseEastingNorthingUnits": "feet", - "scaleFactorAtEquator": 99.9, - "heightOfProspectivePointAboveSurface": 999.0, - "longitudeOfProjectionCenter": -99.0, - "latitudeOfProjectionCenter": 9.0, - "scaleFactorAtCenterLine": 99.9, - "scaleFactorAtCentralMeridian": 9.9, - "straightVerticalLongitudeFromPole": 999.9, - "scaleFactorAtProjectionOrigin": 99.9, - "azimuthAngle": 9.9, - "azimuthMeasurePointLongitude": -99.0, - "obliqueLinePoint": [ - { - "obliqueLineLatitude": 9.99999, - "obliqueLineLongitude": -9.99999 - }, - { - "obliqueLineLatitude": 19.99999, - "obliqueLineLongitude": -19.99999 - } - ], - "landsatNumber": 9, - "landsatPath": 9999, - "local": { - "fixedToEarth": true, - "description": "Ut local planar enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident", - "georeference": "Ut local planar georeference enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident" - } - }, - "geodetic": { - "datumIdentifier": { - "identifier": "datum identifier" - }, - "datumName": "geodetic datum name", - "ellipsoidIdentifier": { - "identifier": "ellipsoid identifier" - }, - "ellipsoidName": "WGS84", - "semiMajorAxis": 9999999.0, - "axisUnits": "feet", - "denominatorOfFlatteningRatio": 999.9 - }, - "verticalDatum": { - "datumIdentifier": { - "identifier": "altitude datum identifier" - }, - "datumName": "vertical datum name", - "encodingMethod": "attribute values", - "isDepthSystem": false, - "verticalResolution": 9.9, - "unitOfMeasure": "meters" - } - } + ], + "taxonomicClassification": { + "taxonomicRank": "taxonomicRank0", + "latinName": "latinName", + "commonName": ["commonName0", "commonName1"], + "subClassification": [ + { + "taxonomicSystemId": "taxonomicSystemId00", + "taxonomicRank": "taxonomicRank00", + "latinName": "latinName", + "commonName": ["commonName0", "commonName1"], + "subClassification": [] + } + ] + } + } + ], + "graphicOverview": [ + { + "fileName": "fileName 0", + "fileDescription": "fileDescription 0", + "fileType": "fileType 0", + "fileConstraint": [ + { + "type": "use", + "useLimitation": ["useLimitation0", "useLimitation1"] }, { - "referenceSystemType": "geodeticGeocentric" - }, + "type": "legal", + "legal": { + "useConstraint": ["useConstraint0", "useConstraint1"], + "accessConstraint": ["accessConstraint0", "accessConstraint1"], + "otherConstraint": ["otherConstraint0", "otherConstraint1"] + } + } + ], + "fileUri": [ { - "referenceSystemIdentifier": { - "identifier": "NGS84", - "namespace": "epsg", - "description": "WGS84 (World Geodetic System of 1984) uses WGS84 ellipsoid where as NAD83 (North American 1983 Datum) uses the Geodetic Reference System (GRS80) ellipsoid. 2. WGS84 has 0.21mm longer ellipsoid than NAD83.." - } + "uri": "http://ISO.uri/adiwg/0" + } + ] + }, + { + "fileName": "fileName 1", + "fileDescription": "fileDescription 1", + "fileType": "fileType 1", + "fileUri": [ + { + "uri": "http://ISO.uri/adiwg/1" + } + ] + } + ], + "constraint": [ + { + "type": "use", + "useLimitation": [ + "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore." + ], + "scope": { + "scopeCode": "scopeCode" + }, + "graphic": [ + { + "fileName": "fileName0" }, { - "referenceSystemWKT": "POLYGON ((35 10, 45 45, 15 40, 10 20, 35 10),(20 30, 35 35, 30 20, 20 30))" + "fileName": "fileName1" + } + ], + "reference": [ + { + "title": "title0" }, { - "referenceSystemParameterSet": { - "projection": { - "projectionIdentifier": { - "identifier": "transverseMercator", - "name": "Transverse Mercator" - }, - "scaleFactorAtCentralMeridian": 9.9, - "longitudeOfCentralMeridian": -9.0, - "latitudeOfProjectionOrigin": 9.0, - "falseEasting": 99999.0, - "falseNorthing": 999999.0 + "title": "title1" + } + ], + "releasability": { + "statement": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "addressee": [ + { + "role": "client", + "party": [ + { + "contactId": "CID001" } - } - }, - { - "referenceSystemParameterSet": { - "projection": { - "projectionIdentifier": { - "identifier": "obliqueMercator", - "name": "Oblique Mercator" - }, - "gridIdentifier": { - "identifier": "spcs", - "name": "Alaska State Plane Coordinate System" - }, - "gridZone": "1", - "scaleFactorAtCentralLine": 9.9, - "obliqueLinePoint": [ - { - "obliqueLineLatitude": 9.99999, - "obliqueLineLongitude": -9.99999 - }, - { - "obliqueLineLatitude": 19.99999, - "obliqueLineLongitude": -19.99999 - } - ], - "latitudeOfProjectionOrigin": 9.0, - "falseEasting": 99999.0, - "falseNorthing": 999999.0 + ] + }, + { + "role": "stakeholder", + "party": [ + { + "contactId": "CID002" + }, + { + "contactId": "CID003" } - } + ] + } + ], + "disseminationConstraint": ["restricted", "unrestricted"] + }, + "responsibleParty": [ + { + "role": "coAuthor", + "party": [ + { + "contactId": "CID006" + }, + { + "contactId": "CID004" + } + ] }, { - "referenceSystemParameterSet": { - "projection": { - "projectionIdentifier": { - "identifier": "other", - "name": "custom coordinate projection system", - "description": "My projection is... Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." - } - } - } - }, - { - "referenceSystemParameterSet": { - "projection": { - "projectionIdentifier": { - "identifier": "other", - "name": "custom coordinate projection system", - "description": "My projection is... Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." - }, - "gridIdentifier": { - "identifier": "other", - "name": "custom grid system", - "description": "My grid is... Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." - } - } - } + "role": "rightsHolder", + "party": [ + { + "contactId": "CID005" + } + ] } - ], - "spatialRepresentationType": [ - "vector", - "stereoModel" - ], - "spatialRepresentation": [ - { - "gridRepresentation": { - "numberOfDimensions": 9, - "dimension": [ - { - "dimensionType": "column", - "dimensionSize": 9, - "resolution": { - "type": "distance", - "value": 9.9, - "unitOfMeasure": "feet" - }, - "dimensionTitle": "COLUMN TITLE", - "dimensionDescription": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - }, - { - "dimensionType": "row", - "dimensionSize": 9 - } - ], - "cellGeometry": "voxel", - "transformParamsAvailability": true - } - }, - { - "vectorRepresentation": { - "topologyLevel": "fullTopology3D", - "vectorObject": [ - { - "objectType": "object Type 0", - "objectCount": 9 - }, - { - "objectType": "object Type 1", - "objectCount": 9 - } - ] - } + ] + }, + { + "type": "legal", + "useLimitation": [ + "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore." + ], + "scope": { + "scopeCode": "scopeCode" + }, + "graphic": [ + { + "fileName": "fileName0" }, { - "georectifiedRepresentation": { - "gridRepresentation": { - "numberOfDimensions": 9, - "dimension": [ - { - "dimensionType": "row", - "dimensionSize": 90 - }, - { - "dimensionType": "column", - "dimensionSize": 91 - } - ], - "cellGeometry": "cellGeometry", - "transformationParameterAvailable": true - }, - "checkPointAvailable": true, - "checkPointDescription": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", - "cornerPoints": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 1.0 - ], - [ - 1.0, - 1.0 - ], - [ - 1.0, - 0.0 - ] + "fileName": "fileName1" + } + ], + "legal": { + "useConstraint": ["threatenedOrEndangered", "otherRestrictions"], + "accessConstraint": ["otherRestrictions", "in-confidence"], + "otherConstraint": [ + "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure." + ] + } + }, + { + "type": "security", + "security": { + "classification": "secret", + "classificationSystem": "Classification System Name", + "userNote": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "handlingDescription": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." + } + } + ], + "coverageDescription": [ + { + "coverageName": "My First Coverage", + "coverageDescription": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "processingLevelCode": { + "identifier": "processing level code" + }, + "attributeGroup": [ + { + "attributeContentType": [ + "thematicClassification", + "physicalMeasurement" + ], + "attribute": [ + { + "sequenceIdentifier": "sequenceIdentifier 1", + "sequenceIdentifierType": "sequenceIdentifierType", + "attributeDescription": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "attributeIdentifier": [ + { + "identifier": "identifier 1" + }, + { + "identifier": "identifier 2" + } ], - "centerPoint": [ - 0.5, - 0.5 + "minValue": 9.9, + "maxValue": 9.9, + "units": "units", + "scaleFactor": 999, + "offset": 999, + "meanValue": 9.9, + "numberOfValues": 999, + "standardDeviation": 9.9, + "bitsPerValue": 999, + "boundMin": 9.9, + "boundMax": 9.9, + "boundUnits": "boundUnits", + "peakResponse": 9.9, + "toneGradations": 999, + "bandBoundaryDefinition": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "nominalSpatialResolution": 9.9, + "transferFunctionType": "transferFunctionType", + "transmittedPolarization": "transmittedPolarization", + "detectedPolarization": "detectedPolarization" + }, + { + "sequenceIdentifier": "sequenceIdentifier 2", + "sequenceIdentifierType": "sequenceIdentifierType", + "attributeDescription": "attributeDescription", + "attributeIdentifier": [ + { + "identifier": "identifier" + } ], - "pointInPixel": "upperRight", - "transformationDimensionDescription": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", - "transformationDimensionMapping": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - } + "minValue": 9.9, + "maxValue": 9.9, + "units": "units", + "scaleFactor": 999, + "offset": 999, + "meanValue": 9.9, + "numberOfValues": 999, + "standardDeviation": 9.9, + "bitsPerValue": 999 + } + ] }, { - "georeferenceableRepresentation": { - "gridRepresentation": { - "numberOfDimensions": 9, - "dimension": [ - { - "dimensionType": "row", - "dimensionSize": 90 - }, - { - "dimensionType": "column", - "dimensionSize": 91 - } - ], - "cellGeometry": "cellGeometry", - "transformationParameterAvailable": true - }, - "controlPointAvailable": true, - "orientationParameterAvailable": true, - "orientationParameterDescription": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "georeferencedParameter": "Georeferenced Parameter 00", - "parameterCitation": [ - { - "title": "title0" - }, - { - "title": "title1" - } - ] - } + "attributeContentType": ["modelResult"] + } + ], + "imageDescription": { + "illuminationElevationAngle": 9.9, + "illuminationAzimuthAngle": 9.9, + "imagingCondition": "imagingCondition", + "imageQualityCode": { + "identifier": "identifier" + }, + "cloudCoverPercent": 9.9, + "compressionQuantity": 9, + "triangulationIndicator": true, + "radiometricCalibrationAvailable": true, + "cameraCalibrationAvailable": true, + "filmDistortionAvailable": true, + "lensDistortionAvailable": true + } + }, + { + "coverageName": "My Second Coverage", + "coverageDescription": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "processingLevelCode": { + "identifier": "identifier" + }, + "attributeGroup": [ + { + "attributeContentType": ["attributeContentType"] + }, + { + "attributeContentType": ["attributeContentType"] + } + ], + "imageDescription": { + "illuminationElevationAngle": 60.0 + } + } + ], + "resourceFormat": [ + { + "formatSpecification": { + "title": "specification 1" + }, + "amendmentNumber": "amendmentNumber", + "compressionMethod": "compressionMethod" + }, + { + "formatSpecification": { + "title": "specification 2" + }, + "amendmentNumber": "amendmentNumber", + "compressionMethod": "compressionMethod" + } + ], + "resourceMaintenance": [ + { + "frequency": "semi-annually", + "date": [ + { + "date": "2016-10-12", + "dateType": "dateType" + }, + { + "date": "2016-10-12", + "dateType": "dateType" } - ], - "spatialResolution": [ + ], + "scope": [ { - "scaleFactor": 63360 + "scopeCode": "scopeCode" }, { - "measure": { - "type": "distance", - "value": 99.9, - "unitOfMeasure": "unitOfMeasure" - } + "scopeCode": "scopeCode" + } + ], + "note": ["note0", "note1"], + "contact": [ + { + "role": "custodian", + "party": [ + { + "contactId": "CID005" + } + ] + } + ] + }, + { + "frequency": "frequency1" + } + ], + "environmentDescription": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", + "supplementalInfo": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "extent": [ + { + "description": "Extent 1: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "geographicExtent": [ + { + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", + "containsData": false, + "identifier": { + "identifier": "identifier" + }, + "boundingBox": { + "westLongitude": -140.0, + "eastLongitude": -120.0, + "southLatitude": 49.0, + "northLatitude": 70.0, + "minimumAltitude": 250.0, + "maximumAltitude": 1500.0, + "unitsOfAltitude": "meters" + }, + "geographicElement": [ + { + "type": "Point", + "coordinates": [100.0, 0.0] + }, + { + "type": "LineString", + "coordinates": [ + [100.0, 0.0], + [101.0, 1.0] + ] + }, + { + "type": "Polygon", + "coordinates": [ + [ + [-161.74223, 67.663378], + [-161.440345, 67.630173], + [-161.294611, 67.656257], + [-161.228063, 67.625736], + [-161.247712, 67.585909], + [-161.334662, 67.591324], + [-161.566245, 67.491263], + [-161.812338, 67.455299], + [-161.825019, 67.40123], + [-162.128301, 67.414364], + [-162.167825, 67.363047], + [-162.383403, 67.293329], + [-162.633432, 67.272237], + [-162.645587, 67.356665], + [-162.369023, 67.455264], + [-162.287324, 67.551235], + [-162.171139, 67.559356], + [-161.99344, 67.646806], + [-161.857964, 67.620329], + [-161.769431, 67.629407], + [-161.74223, 67.663378] + ] + ] + } + ] + }, + { + "description": "Polygon spans prime meridian", + "containsData": true, + "geographicElement": [ + { + "type": "Polygon", + "coordinates": [ + [ + [-10.0, 50.0], + [90.0, 50.0], + [90.0, 25.0], + [-10.0, 25.0], + [-10.0, 50.0] + ] + ] + } + ] }, { - "coordinateResolution": { - "abscissaResolutionX": 9.9, - "ordinateResolutionY": 99.9, - "unitOfMeasure": "coord UOM" - } + "containsData": true, + "geographicElement": [ + { + "type": "Polygon", + "coordinates": [ + [ + [140, 65], + [-170, 65], + [-170, 55], + [140, 55], + [140, 65] + ] + ] + } + ] }, { - "bearingDistanceResolution": { - "distanceResolution": 9.9, - "distanceUnitOfMeasure": "distance UOM", - "bearingResolution": 19.9, - "bearingUnitOfMeasure": "bearing UOM", - "bearingReferenceDirection": "north", - "bearingReferenceMeridian": "assumed" - } + "containsData": false, + "identifier": { + "identifier": "identifier" + }, + "geographicElement": [ + { + "type": "Polygon", + "coordinates": [ + [ + [-162, 65], + [-161, 65], + [-161, 60], + [-162, 60], + [-162, 65] + ] + ] + }, + { + "type": "Polygon", + "coordinates": [ + [ + [100, 55], + [102, 55], + [102, 50], + [100, 50], + [100, 55] + ] + ] + } + ] + } + ], + "temporalExtent": [ + { + "timeInstant": { + "id": "instant_002", + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "identifier": { + "identifier": "LowTide", + "namespace": "namespace", + "version": "version", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt," + }, + "instantName": ["instantName 20", "instantName 21"], + "dateTime": "2016-10-24T11:10:15.200-10:00" + } }, { - "geographicResolution": { - "latitudeResolution": 19.9, - "longitudeResolution": 119.9, - "unitOfMeasure": "geographic UOM" - } - }, { - "levelOfDetail": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." + "timeInstant": { + "id": "instant_002", + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "instantName": ["instantName 50"], + "geologicAge": { + "ageTimeScale": "geologic age time scale", + "ageEstimate": "geologic age estimate", + "ageUncertainty": "geologic age uncertainty", + "ageExplanation": "geologic age explanation", + "ageReference": [ + { + "title": "geologic age reference title 1" + }, + { + "title": "geologic age reference title 2" + } + ] + } + } }, { - "scaleFactor": 250000 + "timePeriod": { + "startDateTime": "2016-10-14T11:10:15.2-10:00", + "endDateTime": "2016-12-31", + "id": "TimePeriod101", + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "identifier": { + "identifier": "TimePeriod Identifier", + "namespace": "namespace" + }, + "periodName": ["periodName0", "periodName1"], + "timeInterval": { + "interval": 9, + "units": "year" + }, + "duration": { + "months": 9 + } + } }, { - "coordinateResolution": { - "abscissaResolutionX": 100.0, - "ordinateResolutionY": 500.0, - "unitOfMeasure": "coord UOM" - } + "timePeriod": { + "id": "TimePeriod101", + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "startGeologicAge": { + "ageTimeScale": "geologic age time scale", + "ageEstimate": "start geologic age", + "ageUncertainty": "geologic age uncertainty", + "ageExplanation": "geologic age explanation", + "ageReference": [ + { + "title": "geologic age reference title 1" + }, + { + "title": "geologic age reference title 2" + } + ] + }, + "endGeologicAge": { + "ageTimeScale": "geologic age time scale", + "ageEstimate": "end geologic age" + }, + "identifier": { + "identifier": "TimePeriod Identifier", + "namespace": "namespace" + }, + "periodName": ["periodName0", "periodName1"] + } } - ], - "keyword": [ + ], + "verticalExtent": [ + { + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "minValue": 9.9, + "maxValue": 9.9, + "crsId": { + "referenceSystemType": "referenceSystemType0", + "referenceSystemIdentifier": { + "identifier": "identifier0" + } + } + }, { - "keyword": [ - { - "keyword": "Barrow" - }, - { - "keyword": "Prudhoe Bay" - }, - { - "keyword": "Kaparuk" - } - ], - "keywordType": "Place Names", - "thesaurus": { - "title": "USGS Geographic Names Information System" - } + "minValue": 99.99, + "maxValue": 99.99, + "crsId": { + "referenceSystemType": "referenceSystemType1", + "referenceSystemIdentifier": { + "identifier": "identifier1" + } + } + } + ] + }, + { + "description": "Extent 1m: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "geographicExtent": [ + { + "containsData": false, + "identifier": { + "identifier": "identifier" + }, + "boundingBox": { + "westLongitude": -140.0, + "eastLongitude": -120.0, + "southLatitude": 49.0, + "northLatitude": 70.0 + }, + "geographicElement": [ + { + "type": "MultiPoint", + "coordinates": [ + [100.0, 0.0], + [100.0, 10.0], + [100.0, 20.0] + ] + }, + { + "type": "MultiLineString", + "coordinates": [ + [ + [100.0, 0.0], + [101.0, 1.0] + ], + [ + [110.0, 0.0], + [111.0, 1.0] + ], + [ + [120.0, 0.0], + [121.0, 1.0] + ] + ] + }, + { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-161.74223, 67.663378], + [-161.440345, 67.630173], + [-161.294611, 67.656257], + [-161.228063, 67.625736], + [-161.247712, 67.585909], + [-161.334662, 67.591324], + [-161.566245, 67.491263], + [-161.812338, 67.455299], + [-161.825019, 67.40123], + [-162.128301, 67.414364], + [-162.167825, 67.363047], + [-162.383403, 67.293329], + [-162.633432, 67.272237], + [-162.645587, 67.356665], + [-162.369023, 67.455264], + [-162.287324, 67.551235], + [-162.171139, 67.559356], + [-161.99344, 67.646806], + [-161.857964, 67.620329], + [-161.769431, 67.629407], + [-161.74223, 67.663378] + ] + ], + [ + [ + [-150, 65], + [-151, 66], + [-152, 67], + [-153, 68] + ] + ] + ] + } + ] + } + ], + "temporalExtent": [ + { + "timeInstant": { + "dateTime": "2016-10-24T11:10:15.200-10:00" + } }, { - "keyword": [ - { - "keyword": "Brown Bear", - "keywordId": "TSN12365741" - }, - { - "keyword": "Polar Bear", - "keywordId": "TSN125415741" - }, - { - "keyword": "Black Bear", - "keywordId": "TSN123689426" - }, - { - "keyword": "Cinnamon Bear", - "keywordId": "TSN123842165" - }, - { - "keyword": "Teddy Bear" - } - ], - "keywordType": "Taxonomy" + "timePeriod": { + "startDateTime": "2016-10-24T11:10:15.200-10:00" + } + } + ], + "verticalExtent": [ + { + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "minValue": 9.9, + "maxValue": 9.9, + "crsId": { + "referenceSystemType": "referenceSystemType0", + "referenceSystemIdentifier": { + "identifier": "identifier0" + } + } }, { - "keyword": [ - { - "keyword": "butter" - }, - { - "keyword": "sugar" - }, - { - "keyword": "eggs" - } - ] + "minValue": 99.99, + "maxValue": 99.99, + "crsId": { + "referenceSystemType": "referenceSystemType1", + "referenceSystemIdentifier": { + "identifier": "identifier1" + } + } + } + ] + }, + { + "description": "Extent 2: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "geographicExtent": [ + { + "containsData": false, + "identifier": { + "identifier": "identifier" + }, + "geographicElement": [ + { + "type": "Polygon", + "coordinates": [ + [ + [-30, 25], + [-20, 25], + [-20, 20], + [-30, 20], + [-30, 25] + ] + ] + }, + { + "type": "Polygon", + "coordinates": [ + [ + [10, 40], + [15, 35], + [15, 30], + [10, 30], + [10, 40] + ] + ] + } + ] }, { - "keyword": [ - { - "keyword": "inlandWaters", - "keywordId": "012" - }, - { - "keyword": "location", - "keywordId": "013" - }, - { - "keyword": "climatologyMeteorologyAtmosphere", - "keywordId": "004" + "containsData": true, + "geographicElement": [ + { + "type": "GeometryCollection", + "bbox": [-10.0, -10.0, 10.0, 10.0], + "geometries": [ + { + "type": "Point", + "coordinates": [100.0, 0.0] + }, + { + "type": "LineString", + "coordinates": [ + [101.0, 0.0], + [102.0, 1.0] + ] + } + ] + }, + { + "type": "Polygon", + "coordinates": [ + [ + [10, 40], + [15, 35], + [15, 30], + [10, 30], + [10, 40] + ] + ] + } + ] + }, + { + "containsData": true, + "geographicElement": [ + { + "type": "Feature", + "id": "polygon-75", + "bbox": [-10.0, -10.0, 10.0, 10.0], + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.74223, 67.663378], + [-161.440345, 67.630173], + [-161.294611, 67.656257], + [-161.228063, 67.625736], + [-161.247712, 67.585909], + [-161.334662, 67.591324], + [-161.566245, 67.491263], + [-161.812338, 67.455299], + [-161.825019, 67.40123], + [-162.128301, 67.414364], + [-162.167825, 67.363047], + [-162.383403, 67.293329], + [-162.633432, 67.272237], + [-162.645587, 67.356665], + [-162.369023, 67.455264], + [-162.287324, 67.551235], + [-162.171139, 67.559356], + [-161.99344, 67.646806], + [-161.857964, 67.620329], + [-161.769431, 67.629407], + [-161.74223, 67.663378] + ] + ] + }, + "properties": { + "description": "Agashashok River site", + "featureName": ["Agashashok River", "Camp Mosquito"], + "identifier": [ + { + "identifier": "AGAR" + }, + { + "identifier": "Kup25" + } + ], + "featureScope": "collectionSite", + "acquisitionMethod": "butterfly net", + "customField": "not in schema", + "customArray": ["string 1", "string 2"] } - ], - "keywordType": "isoTopicCategory" + } + ] + }, + { + "containsData": true, + "geographicElement": [ + { + "type": "FeatureCollection", + "bbox": [-10.0, -10.0, 10.0, 10.0], + "features": [ + { + "type": "Feature", + "id": "ALCC-BH55", + "bbox": [-10.0, -10.0, 10.0, 10.0], + "geometry": { + "type": "Point", + "coordinates": [102.0, 0.5] + }, + "properties": { + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "featureName": ["fake name"] + } + }, + { + "type": "Feature", + "id": "ALCC-BH56", + "bbox": [-10.0, -10.0, 10.0, 10.0], + "geometry": { + "type": "LineString", + "coordinates": [ + [102.0, 0.0], + [103.0, 1.0], + [104.0, 0.0], + [105.0, 1.0] + ] + }, + "properties": { + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." + } + }, + { + "type": "Feature", + "id": "ALCC-Co81", + "bbox": [-10.0, -10.0, 10.0, 10.0], + "geometry": { + "type": "GeometryCollection", + "bbox": [-10.0, -10.0, 10.0, 10.0], + "geometries": [ + { + "type": "Point", + "coordinates": [100.0, 0.0] + }, + { + "type": "LineString", + "coordinates": [ + [101.0, 0.0], + [102.0, 1.0] + ] + } + ] + }, + "properties": { + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." + } + } + ] + } + ] } - ], - "taxonomy": [ + ] + }, + { + "description": "Extent 3: Other world coordinates.", + "geographicExtent": [ + { + "containsData": false, + "identifier": { + "identifier": "identifier" + }, + "geographicElement": [ + { + "type": "Polygon", + "coordinates": [ + [ + [-265, 65], + [-260, 65], + [-260, 63], + [-265, 63], + [-265, 65] + ] + ] + }, + { + "type": "Polygon", + "coordinates": [ + [ + [200, 55], + [202, 55], + [202, 50], + [200, 50], + [200, 55] + ] + ] + }, + { + "type": "MultiPoint", + "coordinates": [ + [-150, 61], + [150, 61] + ] + } + ] + }, + { + "containsData": false, + "identifier": { + "identifier": "identifier" + }, + "geographicElement": [ + { + "type": "MultiPoint", + "coordinates": [ + [-150, 61], + [-122, 47], + [-112, 33], + [-105, 39], + [-97, 32], + [-82, 41], + [-81, 39], + [-76, 38], + [-66, 18], + [-118, 34], + [11, 43], + [8, 46], + [98, 8], + [178, -19], + [-157, 21], + [-147, 65], + [-145, 60], + [-148, 70], + [-132, 56] + ] + } + ] + }, + { + "containsData": false, + "identifier": { + "identifier": "identifier" + }, + "geographicElement": [ + { + "type": "MultiPoint", + "coordinates": [ + [-150, 61], + [-122, 47], + [-112, 33], + [-105, 39], + [-97, 32], + [-82, 41], + [-81, 39], + [-76, 38], + [-66, 18], + [-118, 34], + [11, 43], + [8, 46], + [98, 8], + [-147, 65], + [-145, 60], + [-148, 70], + [-132, 56] + ] + } + ] + }, + { + "containsData": false, + "identifier": { + "identifier": "identifier" + }, + "geographicElement": [ + { + "type": "Polygon", + "coordinates": [ + [ + [-100, 30], + [-95, 40], + [-100, 50], + [0, 45], + [100, 50], + [95, 40], + [100, 30], + [0, 35], + [-100, 30] + ] + ] + } + ] + }, + { + "containsData": false, + "identifier": { + "identifier": "identifier" + }, + "geographicElement": [ + { + "type": "Polygon", + "coordinates": [ + [ + [-100, 30], + [-95, 40], + [-100, 50], + [0, 45], + [200, 50], + [195, 40], + [200, 30], + [0, 35], + [-100, 30] + ] + ] + } + ] + }, { - "taxonomicSystem": [ + "containsData": false, + "identifier": { + "identifier": "identifier" + }, + "geographicElement": [ + { + "type": "Polygon", + "coordinates": [ + [ + [40, 30], + [45, 40], + [40, 50], + [180, 45], + [250, 50], + [245, 40], + [250, 30], + [180, 35], + [40, 30] + ] + ] + } + ] + }, + { + "containsData": false, + "identifier": { + "identifier": "identifier" + }, + "geographicElement": [ + { + "type": "Polygon", + "coordinates": [ + [ + [-250, 30], + [-245, 40], + [-250, 50], + [-180, 45], + [-50, 50], + [-55, 40], + [-50, 30], + [-180, 35], + [-250, 30] + ] + ] + } + ] + }, + { + "containsData": false, + "identifier": { + "identifier": "identifier" + }, + "geographicElement": [ + { + "type": "Polygon", + "coordinates": [ + [ + [-200, 40], + [-200, 55], + [-170, 55], + [-170, 40], + [-200, 40] + ] + ] + }, + { + "type": "Polygon", + "coordinates": [ + [ + [220, -40], + [220, -55], + [150, -55], + [150, -40], + [220, -40] + ] + ] + } + ] + } + ] + } + ] + }, + "resourceLineage": [ + { + "statement": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "scope": { + "scopeCode": "scopeCode" + }, + "citation": [ + { + "title": "Lineage Title 1" + }, + { + "title": "Lineage Title 2" + } + ], + "source": [ + { + "sourceId": "Source ID 15", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", + "sourceCitation": { + "title": "Source Citation Title" + }, + "metadataCitation": [ + { + "title": "First Source Metadata Citation" + }, + { + "title": "Next Source Metadata Citation" + } + ], + "spatialResolution": { + "scaleFactor": 99999 + }, + "referenceSystem": { + "referenceSystemType": "referenceSystemType", + "referenceSystemIdentifier": { + "identifier": "identifier" + } + }, + "sourceProcessStep": [ + { + "description": "description" + }, + { + "description": "description" + } + ], + "scope": { + "scopeCode": "scopeCode" + }, + "processedLevel": { + "identifier": "identifier" + }, + "resolution": { + "groundResolution": { + "value": 999.9, + "unitOfMeasure": "units" + } + } + }, + { + "description": "description" + } + ], + "processStep": [ + { + "stepId": "stepId 001", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", + "rationale": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", + "timePeriod": { + "startDateTime": "2016-10-14T11:10:15.2-10:00", + "endDateTime": "2016-12-31", + "id": "TimePeriod001", + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "identifier": { + "identifier": "TimePeriod Identifier", + "namespace": "namespace" + }, + "periodName": ["periodName0", "periodName1"], + "timeInterval": { + "interval": 7, + "units": "year" + }, + "duration": { + "months": 9 + } + }, + "processor": [ + { + "role": "processor", + "party": [ { - "citation": { - "title": "ITIS - Integrated Taxonomic Information System", - "alternateTitle": [ - "Citation for ITIS" - ] - }, - "modifications": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." - }, + "contactId": "CID006" + } + ] + }, + { + "role": "reviewer", + "party": [ { - "citation": { - "title": "Some OTHER Taxonomic System" - } + "contactId": "CID004" + } + ] + } + ], + "reference": [ + { + "title": "Process Step Reference" + }, + { + "title": "Another Process Step Reference" + } + ], + "stepSource": [ + { + "description": "My step source description", + "sourceCitation": { + "title": "title" + } + }, + { + "description": "My other step source description" + } + ], + "stepProduct": [ + { + "description": "My step intermediate product description", + "sourceCitation": { + "title": "title" + } + }, + { + "description": "My other step intermediate product description" + } + ], + "scope": { + "scopeCode": "scopeCode" + }, + "output": [ + { + "description": "description one", + "resolution": { + "scanningResolution": { + "value": 999.9, + "unitOfMeasure": "units" + } + } + }, + { + "description": "description two" + } + ], + "processingInformation": { + "identifier": { + "identifier": "processing info identifier" + }, + "softwareReference": { + "title": "software reference title" + }, + "procedureDescription": "procedure description", + "documentation": [ + { + "title": "documentation title one" + }, + { + "title": "documentation title two" + } + ], + "runtimeParameters": "runtime parameters", + "algorithm": [ + { + "citation": { + "title": "algorithm one citation title" + }, + "description": "algorithm one" + }, + { + "citation": { + "title": "algorithm two citation title" + }, + "description": "algorithm tow" + } + ] + }, + "report": [ + { + "type": "Confidence", + "qualityMeasure": { + "name": ["example name", "test"], + "description": "example description", + "identifier": { + "identifier": "example identifier", + "namespace": "example namespace", + "description": "example description" } - ], - "generalScope": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "identificationReference": [ + }, + "conformanceResult": [ { - "title": "Non-Authoritative reference one", - "date": [ + "dateTime": "2017-10-13", + "specification": { + "title": "example specification title", + "date": [ { - "date": "2015-02-14", - "dateType": "revision" + "date": "2017-10-13", + "dateType": "publication" } - ], - "edition": "3rd Edition" - }, - { - "title": "Non-Authoritative reference two", - "date": [ + ], + "responsibleParty": [ { - "date": "1927-10-23", - "dateType": "publication" + "role": "originator", + "party": [ + { + "contactId": "CID004" + } + ] } - ] + ] + }, + "explanation": "example explanation", + "pass": true } - ], - "observer": [ - { - "role": "coPrincipalInvestigator", - "party": [ - { - "contactId": "CID006" - }, - { - "contactId": "CID004" + ], + "coverageResult": [ + { + "spatialRepresentationType": "grid", + "spatialRepresentation": { + "gridRepresentation": { + "numberOfDimensions": 2, + "dimension": [ + { + "dimensionType": "type", + "dimensionSize": 1 + } + ], + "cellGeometry": "area" + } + }, + "resourceFormat": { + "formatSpecification": { + "title": "title" + }, + "amendmentNumber": "amendmentNumber", + "compressionMethod": "compressionMethod", + "technicalPrerequisite": "technicalPrerequisite" + }, + "resultFile": { + "fileName": "filename.xml", + "fileDescription": "FGDC CSDGM Metadata", + "fileType": "FGDC CSDGM", + "fileFormat": { + "formatSpecification": { + "title": "FGDC CSDGM", + "identifier": [ + { + "identifier": "FGDC CSDGM" + } + ], + "otherCitationDetails": [ + "Federal Geographic Data Committee Content Standard for Digital\n Geospatial Metadata" + ] } - ] - }, - { - "role": "editor", - "party": [ + } + }, + "resultContentDescription": { + "coverageName": "name", + "coverageDescription": "description", + "processingLevelCode": { + "identifier": "identifier", + "namespace": "namespace", + "version": "version", + "description": "description", + "authority": { + "title": "title" + } + }, + "attributeGroup": [ { - "contactId": "CID001" + "attributeContentType": ["attributeContentType"] + } + ], + "imageDescription": { + "illuminationElevationAngle": 9.9, + "illuminationAzimuthAngle": 9.9, + "imagingCondition": "imagingCondition", + "imageQualityCode": { + "identifier": "identifier" } - ] + } + } } - ], - "identificationProcedure": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "identificationCompleteness": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "voucher": [ + ], + "descriptiveResult": [ + { + "dateTime": "2017-10-13", + "scope": { + "scopeCode": "scopeCode" + }, + "statement": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." + } + ], + "evaluationMethod": { + "type": "DQ_EvaluationMethod", + "dateTime": ["2019-06-11T08:35:00"], + "methodDescription": "evaluation method description", + "evaluationProcedure": { + "title": "title" + }, + "referenceDocument": [], + "evaluationMethodType": "DQ_EvaluationMethodTypeCode", + "deductiveSource": "deductive source", + "samplingScheme": "sampling scheme", + "lotDescription": "lot description", + "samplingRatio": "sampling ratio" + }, + "quantitativeResult": [ + { + "dateTime": "2017-10-13", + "scope": { + "scopeCode": "scopeCode" + }, + "valueRecordType": "valueType", + "valueUnit": "valueUnit", + "value": [1.2] + } + ] + } + ] + }, + { + "stepId": "stepId 002", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore." + } + ] + }, + { + "statement": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." + } + ], + "resourceDistribution": [ + { + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", + "liabilityStatement": "Accuracy of this data is absolutely guaranteed.", + "distributor": [ + { + "contact": { + "role": "distributor", + "party": [ + { + "contactId": "CID002" + } + ] + }, + "orderProcess": [ + { + "fees": "10.00USD", + "plannedAvailability": "2016-10-21T00:00:00", + "orderingInstructions": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "turnaround": "turnaround" + }, + { + "fees": "2.00USD" + } + ], + "transferOption": [ + { + "unitsOfDistribution": "units of distribution", + "transferSize": 9.9, + "onlineOption": [ { - "specimen": "bear claw", - "repository": { - "role": "custodian", - "party": [ - { - "contactId": "CID002" - } - ] - } + "uri": "http://ISO.uri/adiwg/0" }, { - "specimen": "moose tooth", - "repository": { - "role": "custodian", - "party": [ - { - "contactId": "CID002" - } - ] - } + "uri": "http://ISO.uri/adiwg/1" + } + ], + "offlineOption": [ + { + "mediumSpecification": { + "title": "My Medium Specification Title" + }, + "density": 9.9, + "units": "units", + "numberOfVolumes": 9, + "mediumFormat": ["mediumFormat0", "mediumFormat1"], + "note": "note", + "identifier": { + "identifier": "Medium Identifier" + } + }, + { + "mediumSpecification": { + "title": "dium specification title 1" + } } - ], - "taxonomicClassification": [ + ], + "transferFrequency": { + "months": 9 + }, + "distributionFormat": [ { - "taxonomicSystemId": "taxon id", - "taxonomicLevel": "taxon rank", - "taxonomicName": "taxon name", - "commonName": ["common one", "common two"], - "subClassification": [ - { - "taxonomicSystemId": "taxon id", - "taxonomicLevel": "level two", - "taxonomicName": "name two", - "commonName": ["common one", "common two"], - "subClassification": [ - { - "taxonomicSystemId": "taxon id", - "taxonomicLevel": "level three", - "taxonomicName": "name three", - "commonName": ["common one", "common two"], - "subClassification": [ - { - "taxonomicSystemId": "taxon id", - "taxonomicLevel": "level four 1", - "taxonomicName": "name four 1", - "commonName": ["common one", "common two"], - "subClassification": [ - { - "taxonomicSystemId": "taxon id", - "taxonomicLevel": "level five 1", - "taxonomicName": "name five 1", - "commonName": ["common five 1A", "common five 1B"] - } - ] - }, - { - "taxonomicSystemId": "taxon id", - "taxonomicLevel": "level four 2", - "taxonomicName": "name four 2", - "commonName": ["common four 2A"], - "subClassification": [ - { - "taxonomicSystemId": "taxon id", - "taxonomicLevel": "level five 2", - "taxonomicName": "name five 2", - "commonName": ["common one", "common two"] - } - ] - } - ] - } - ] - } - ] + "formatSpecification": { + "title": "CSV" + }, + "amendmentNumber": "2.0.8-beta", + "compressionMethod": "7ZipUp", + "technicalPrerequisite": "Must have ArcGIS 10.x or higher installed." }, { - "taxonomicSystemId": "taxon id", - "taxonomicLevel": "taxon rank", - "taxonomicName": "taxon name", - "commonName": [ - "common one", - "common two" - ], - "subClassification": [ - { - "taxonomicSystemId": "taxon id", - "taxonomicLevel": "level two", - "taxonomicName": "name two", - "commonName": [ - "common one", - "common two" - ], - "subClassification": [ - { - "taxonomicSystemId": "taxon id", - "taxonomicLevel": "level three", - "taxonomicName": "name three", - "commonName": [ - "common one", - "common two" - ], - "subClassification": [ - { - "taxonomicSystemId": "taxon id", - "taxonomicLevel": "level four 1", - "taxonomicName": "name four 1", - "commonName": [ - "common one", - "common two" - ], - "subClassification": [ - { - "taxonomicSystemId": "taxon id", - "taxonomicLevel": "level five 1", - "taxonomicName": "name five 1", - "commonName": [ - "common five 1A", - "common five 1B" - ] - } - ] - }, - { - "taxonomicSystemId": "taxon id", - "taxonomicLevel": "level four 2", - "taxonomicName": "name four 2", - "commonName": [ - "common four 2A" - ], - "subClassification": [ - { - "taxonomicSystemId": "taxon id", - "taxonomicLevel": "level five 2", - "taxonomicName": "name five 2", - "commonName": [ - "common one", - "common two" - ] - } - ] - } - ] - } - ] - } - ] + "formatSpecification": { + "title": "format specification title 1" + } } - ] - }, - { - "taxonomicSystem": [ + ] + }, + { + "onlineOption": [ { - "citation": { - "title": "NCBI - National Center for Biotechnology Information", - "alternateTitle": [ - "Citation for NCBI" - ] - } + "uri": "http://ISO.uri/adiwg/3" } - ], - "generalScope": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "identificationReference": [ + ], + "transferSize": 10.9 + } + ] + }, + { + "contact": { + "role": "distributor", + "party": [ + { + "contactId": "CID003" + } + ] + } + } + ] + } + ], + "associatedResource": [ + { + "resourceType": [ + { + "type": "modelHardcopy", + "name": "Hardcopy of Model" + }, + { + "type": "videoDigital", + "name": "Video of the Making" + } + ], + "associationType": "partOfSeamlessDatabase", + "initiativeType": "investigation", + "resourceCitation": { + "title": "Resource Citation Title" + }, + "metadataCitation": { + "title": "Metadata Citation Title" + } + }, + { + "resourceType": [ + { + "type": "type0", + "name": "name0" + }, + { + "type": "type1", + "name": "name1" + } + ], + "associationType": "associationType", + "initiativeType": "initiativeType", + "resourceCitation": { + "title": "title" + }, + "metadataCitation": { + "title": "title" + } + } + ], + "additionalDocumentation": [ + { + "resourceType": [ + { + "type": "webService", + "name": "ADIwg API" + }, + { + "type": "databaseDigital", + "name": "DMV Data" + } + ], + "citation": [ + { + "title": "A Good Additional Document" + }, + { + "title": "A More Better Additional Document" + } + ] + }, + { + "resourceType": [ + { + "type": "multimediaHardcopy", + "name": "Multi-Media Hard-Copy" + }, + { + "type": "physicalObject", + "name": "Lab Specimen" + } + ], + "citation": [ + { + "title": "A Much Mo Betha Additional Document" + } + ] + } + ], + "funding": [ + { + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", + "allocation": [ + { + "sourceAllocationID": "A999999X1", + "amount": 9999.99, + "currency": "USD", + "sourceId": "CID005", + "recipientId": "CID006", + "responsibleParty": [ + { + "role": "use", + "party": [ { - "title": "Non-Authoritative reference three", - "date": [ - { - "date": "1984-01-15", - "dateType": "publication" - } - ] + "contactId": "CID001" } - ], - "observer": [ + ] + }, + { + "role": "audit", + "party": [ { - "role": "coPrincipalInvestigator", - "party": [ - { - "contactId": "CID006" - } - ] + "contactId": "CID002" } - ], - "identificationProcedure": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "identificationCompleteness": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "voucher": [ - { - "specimen": "bear claw", - "repository": { - "role": "custodian", - "party": [ - { - "contactId": "CID002" - } - ] - } - } - ], - "taxonomicClassification": { - "taxonomicRank": "taxonomicRank0", - "latinName": "latinName", - "commonName": [ - "commonName0", - "commonName1" - ], - "subClassification": [ - { - "taxonomicSystemId": "taxonomicSystemId00", - "taxonomicRank": "taxonomicRank00", - "latinName": "latinName", - "commonName": [ - "commonName0", - "commonName1" - ], - "subClassification": [] - } - ] - } - } - ], - "graphicOverview": [ - { - "fileName": "fileName 0", - "fileDescription": "fileDescription 0", - "fileType": "fileType 0", - "fileConstraint": [ - { - "type": "use", - "useLimitation": [ - "useLimitation0", - "useLimitation1" - ] - }, - { - "type": "legal", - "legal": { - "useConstraint": [ - "useConstraint0", - "useConstraint1" - ], - "accessConstraint": [ - "accessConstraint0", - "accessConstraint1" - ], - "otherConstraint": [ - "otherConstraint0", - "otherConstraint1" - ] - } - } - ], - "fileUri": [ - { - "uri": "http://ISO.uri/adiwg/0" - } - ] + ] + } + ], + "matching": true, + "onlineResource": [ + { + "uri": "http://ISO.uri/adiwg/8" + }, + { + "uri": "http://ISO.uri/adiwg/9" + } + ], + "comment": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." + }, + { + "sourceAllocationID": "A999999X2", + "amount": 999.99, + "currency": "CAD" + } + ], + "timePeriod": { + "startDateTime": "2016-10-14T11:10:15.2-10:00", + "endDateTime": "2016-12-31", + "id": "TimePeriod001", + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "identifier": { + "identifier": "TimePeriod Identifier", + "namespace": "namespace" + }, + "periodName": ["periodName0", "periodName1"], + "timeInterval": { + "interval": 5, + "units": "year" + }, + "duration": { + "months": 9 + } + } + }, + { + "allocation": [ + { + "amount": 9999.99, + "currency": "EUR" + } + ], + "timePeriod": { + "startDateTime": "2016-10-14" + } + } + ] + }, + "dataDictionary": [ + { + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "subject": ["subject0", "subject1"], + "citation": { + "title": "title" + }, + "recommendedUse": ["use0", "use1"], + "locale": [ + { + "language": "language0", + "country": "country0", + "characterSet": "characterSet0" + }, + { + "language": "language1", + "country": "country1", + "characterSet": "characterSet1" + } + ], + "responsibleParty": { + "role": "author", + "party": [ + { + "contactId": "CID001" + } + ] + }, + "dictionaryFunctionalLanguage": "SQL", + "dictionaryIncludedWithResource": true, + "domain": [ + { + "domainId": "domainId0", + "commonName": "country", + "codeName": "country", + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "domainItem": [ + { + "name": "Canada", + "value": "CAN", + "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", + "reference": { + "title": "author defined" + } }, { - "fileName": "fileName 1", - "fileDescription": "fileDescription 1", - "fileType": "fileType 1", - "fileUri": [ - { - "uri": "http://ISO.uri/adiwg/1" - } - ] - } - ], - "constraint": [ - { - "type": "use", - "useLimitation": [ - "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore." - ], - "scope": { - "scopeCode": "scopeCode" - }, - "graphic": [ - { - "fileName": "fileName0" - }, - { - "fileName": "fileName1" - } - ], - "reference": [ - { - "title": "title0" - }, - { - "title": "title1" - } - ], - "releasability": { - "statement": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "addressee": [ - { - "role": "client", - "party": [ - { - "contactId": "CID001" - } - ] - }, - { - "role": "stakeholder", - "party": [ - { - "contactId": "CID002" - }, - { - "contactId": "CID003" - } - ] - } - ], - "disseminationConstraint": [ - "restricted", - "unrestricted" - ] - }, - "responsibleParty": [ - { - "role": "coAuthor", - "party": [ - { - "contactId": "CID006" - }, - { - "contactId": "CID004" - } - ] - }, - { - "role": "rightsHolder", - "party": [ - { - "contactId": "CID005" - } - ] - } - ] - }, - { - "type": "legal", - "useLimitation": [ - "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore." - ], - "scope": { - "scopeCode": "scopeCode" - }, - "graphic": [ - { - "fileName": "fileName0" - }, - { - "fileName": "fileName1" - } - ], - "legal": { - "useConstraint": [ - "threatenedOrEndangered", - "otherRestrictions" - ], - "accessConstraint": [ - "otherRestrictions", - "in-confidence" - ], - "otherConstraint": [ - "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure." - ] - } + "name": "United States of America", + "value": "USA", + "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", + "reference": { + "title": "GCMD version 8.3" + } }, { - "type": "security", - "security": { - "classification": "secret", - "classificationSystem": "Classification System Name", - "userNote": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "handlingDescription": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." - } + "name": "United States of Mexico", + "value": "MEX", + "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore." } - ], - "coverageDescription": [ - { - "coverageName": "My First Coverage", - "coverageDescription": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "processingLevelCode": { - "identifier": "processing level code" - }, - "attributeGroup": [ - { - "attributeContentType": [ - "thematicClassification", - "physicalMeasurement" - ], - "attribute": [ - { - "sequenceIdentifier": "sequenceIdentifier 1", - "sequenceIdentifierType": "sequenceIdentifierType", - "attributeDescription": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "attributeIdentifier": [ - { - "identifier": "identifier 1" - }, - { - "identifier": "identifier 2" - } - ], - "minValue": 9.9, - "maxValue": 9.9, - "units": "units", - "scaleFactor": 999, - "offset": 999, - "meanValue": 9.9, - "numberOfValues": 999, - "standardDeviation": 9.9, - "bitsPerValue": 999, - "boundMin": 9.9, - "boundMax": 9.9, - "boundUnits": "boundUnits", - "peakResponse": 9.9, - "toneGradations": 999, - "bandBoundaryDefinition": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "nominalSpatialResolution": 9.9, - "transferFunctionType": "transferFunctionType", - "transmittedPolarization": "transmittedPolarization", - "detectedPolarization": "detectedPolarization" - }, - { - "sequenceIdentifier": "sequenceIdentifier 2", - "sequenceIdentifierType": "sequenceIdentifierType", - "attributeDescription": "attributeDescription", - "attributeIdentifier": [ - { - "identifier": "identifier" - } - ], - "minValue": 9.9, - "maxValue": 9.9, - "units": "units", - "scaleFactor": 999, - "offset": 999, - "meanValue": 9.9, - "numberOfValues": 999, - "standardDeviation": 9.9, - "bitsPerValue": 999 - } - ] - }, - { - "attributeContentType": [ - "modelResult" - ] - } - ], - "imageDescription": { - "illuminationElevationAngle": 9.9, - "illuminationAzimuthAngle": 9.9, - "imagingCondition": "imagingCondition", - "imageQualityCode": { - "identifier": "identifier" - }, - "cloudCoverPercent": 9.9, - "compressionQuantity": 9, - "triangulationIndicator": true, - "radiometricCalibrationAvailable": true, - "cameraCalibrationAvailable": true, - "filmDistortionAvailable": true, - "lensDistortionAvailable": true - } - }, - { - "coverageName": "My Second Coverage", - "coverageDescription": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "processingLevelCode": { - "identifier": "identifier" - }, - "attributeGroup": [ - { - "attributeContentType": [ - "attributeContentType" - ] - }, - { - "attributeContentType": [ - "attributeContentType" - ] - } - ], - "imageDescription": { - "illuminationElevationAngle": 60.0 - } - } - ], - "resourceFormat": [ - { - "formatSpecification": { - "title": "specification 1" - }, - "amendmentNumber": "amendmentNumber", - "compressionMethod": "compressionMethod" + ] + }, + { + "domainId": "domainId1", + "commonName": "administrative area", + "codeName": "province", + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "domainItem": [ + { + "name": "Alberta, CA", + "value": "Alberta", + "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore." }, { - "formatSpecification": { - "title": "specification 2" - }, - "amendmentNumber": "amendmentNumber", - "compressionMethod": "compressionMethod" - } - ], - "resourceMaintenance": [ - { - "frequency": "semi-annually", - "date": [ - { - "date": "2016-10-12", - "dateType": "dateType" - }, - { - "date": "2016-10-12", - "dateType": "dateType" - } - ], - "scope": [ - { - "scopeCode": "scopeCode" - }, - { - "scopeCode": "scopeCode" - } - ], - "note": [ - "note0", - "note1" - ], - "contact": [ - { - "role": "custodian", - "party": [ - { - "contactId": "CID005" - } - ] - } - ] + "name": "California, USA", + "value": "California", + "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore." }, { - "frequency": "frequency1" + "name": "Jalisco, MEX", + "value": "Jalisco", + "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore." } - ], - "environmentDescription": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", - "supplementalInfo": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "extent": [ - { - "description": "Extent 1: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "geographicExtent": [ - { - "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", - "containsData": false, - "identifier": { - "identifier": "identifier" - }, - "boundingBox": { - "westLongitude": -140.0, - "eastLongitude": -120.0, - "southLatitude": 49.0, - "northLatitude": 70.0, - "minimumAltitude": 250.0, - "maximumAltitude": 1500.0, - "unitsOfAltitude": "meters" - }, - "geographicElement": [ - { - "type": "Point", - "coordinates": [100.0, 0.0] - }, - { - "type": "LineString", - "coordinates": [ - [100.0, 0.0], - [101.0, 1.0] - ] - }, - { - "type": "Polygon", - "coordinates": [ - [ - [-161.74223, 67.663378], - [-161.440345, 67.630173], - [-161.294611, 67.656257], - [-161.228063, 67.625736], - [-161.247712, 67.585909], - [-161.334662, 67.591324], - [-161.566245, 67.491263], - [-161.812338, 67.455299], - [-161.825019, 67.40123], - [-162.128301, 67.414364], - [-162.167825, 67.363047], - [-162.383403, 67.293329], - [-162.633432, 67.272237], - [-162.645587, 67.356665], - [-162.369023, 67.455264], - [-162.287324, 67.551235], - [-162.171139, 67.559356], - [-161.99344, 67.646806], - [-161.857964, 67.620329], - [-161.769431, 67.629407], - [-161.74223, 67.663378] - ] - ] - } - ] - }, - { - "description": "Polygon spans prime meridian", - "containsData": true, - "geographicElement": [ - { - "type": "Polygon", - "coordinates": [ - [ - [-10.0, 50.0], - [90.0, 50.0], - [90.0, 25.0], - [-10.0, 25.0], - [-10.0, 50.0] - ] - ] - } - ] - }, - { - "containsData": true, - "geographicElement": [ - { - "type": "Polygon", - "coordinates": [ - [ - [140, 65], - [-170, 65], - [-170, 55], - [140, 55], - [140, 65] - ] - ] - } - ] - }, - { - "containsData": false, - "identifier": { - "identifier": "identifier" - }, - "geographicElement": [ - { - "type": "Polygon", - "coordinates": [ - [ - [-162, 65], - [-161, 65], - [-161, 60], - [-162, 60], - [-162, 65] - ] - ] - }, - { - "type": "Polygon", - "coordinates": [ - [ - [100, 55], - [102, 55], - [102, 50], - [100, 50], - [100, 55] - ] - ] - } - ] - } - ], - "temporalExtent": [ - { - "timeInstant": { - "id": "instant_002", - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "identifier": { - "identifier": "LowTide", - "namespace": "namespace", - "version": "version", - "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt," - }, - "instantName": [ - "instantName 20", - "instantName 21" - ], - "dateTime": "2016-10-24T11:10:15.200-10:00" - } - }, - { - "timeInstant": { - "id": "instant_002", - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "instantName": [ - "instantName 50" - ], - "geologicAge": { - "ageTimeScale": "geologic age time scale", - "ageEstimate": "geologic age estimate", - "ageUncertainty": "geologic age uncertainty", - "ageExplanation": "geologic age explanation", - "ageReference": [ - { - "title": "geologic age reference title 1" - }, - { - "title": "geologic age reference title 2" - } - ] - } - } - }, - { - "timePeriod": { - "startDateTime": "2016-10-14T11:10:15.2-10:00", - "endDateTime": "2016-12-31", - "id": "TimePeriod101", - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "identifier": { - "identifier": "TimePeriod Identifier", - "namespace": "namespace" - }, - "periodName": [ - "periodName0", - "periodName1" - ], - "timeInterval": { - "interval": 9, - "units": "year" - }, - "duration": { - "months": 9 - } - } - }, - { - "timePeriod": { - "id": "TimePeriod101", - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "startGeologicAge": { - "ageTimeScale": "geologic age time scale", - "ageEstimate": "start geologic age", - "ageUncertainty": "geologic age uncertainty", - "ageExplanation": "geologic age explanation", - "ageReference": [ - { - "title": "geologic age reference title 1" - }, - { - "title": "geologic age reference title 2" - } - ] - }, - "endGeologicAge": { - "ageTimeScale": "geologic age time scale", - "ageEstimate": "end geologic age" - }, - "identifier": { - "identifier": "TimePeriod Identifier", - "namespace": "namespace" - }, - "periodName": [ - "periodName0", - "periodName1" - ] - } - } - ], - "verticalExtent": [ - { - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "minValue": 9.9, - "maxValue": 9.9, - "crsId": { - "referenceSystemType": "referenceSystemType0", - "referenceSystemIdentifier": { - "identifier": "identifier0" - } - } - }, - { - "minValue": 99.99, - "maxValue": 99.99, - "crsId": { - "referenceSystemType": "referenceSystemType1", - "referenceSystemIdentifier": { - "identifier": "identifier1" - } - } - } - ] - }, - { - "description": "Extent 1m: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "geographicExtent": [ - { - "containsData": false, - "identifier": { - "identifier": "identifier" - }, - "boundingBox": { - "westLongitude": -140.0, - "eastLongitude": -120.0, - "southLatitude": 49.0, - "northLatitude": 70.0 - }, - "geographicElement": [ - { - "type": "MultiPoint", - "coordinates": [ - [100.0, 0.0], - [100.0, 10.0], - [100.0, 20.0] - ] - }, - { - "type": "MultiLineString", - "coordinates": [ - [ - [100.0, 0.0], - [101.0, 1.0] - ], - [ - [110.0, 0.0], - [111.0, 1.0] - ], - [ - [120.0, 0.0], - [121.0, 1.0] - ] - ] - }, - { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-161.74223, 67.663378], - [-161.440345, 67.630173], - [-161.294611, 67.656257], - [-161.228063, 67.625736], - [-161.247712, 67.585909], - [-161.334662, 67.591324], - [-161.566245, 67.491263], - [-161.812338, 67.455299], - [-161.825019, 67.40123], - [-162.128301, 67.414364], - [-162.167825, 67.363047], - [-162.383403, 67.293329], - [-162.633432, 67.272237], - [-162.645587, 67.356665], - [-162.369023, 67.455264], - [-162.287324, 67.551235], - [-162.171139, 67.559356], - [-161.99344, 67.646806], - [-161.857964, 67.620329], - [-161.769431, 67.629407], - [-161.74223, 67.663378] - ] - ], - [ - [ - [-150, 65], - [-151, 66], - [-152, 67], - [-153, 68] - ] - ] - ] - } - ] - } - ], - "temporalExtent": [ - { - "timeInstant": { - "dateTime": "2016-10-24T11:10:15.200-10:00" - } - }, - { - "timePeriod": { - "startDateTime": "2016-10-24T11:10:15.200-10:00" - } - } - ], - "verticalExtent": [ - { - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "minValue": 9.9, - "maxValue": 9.9, - "crsId": { - "referenceSystemType": "referenceSystemType0", - "referenceSystemIdentifier": { - "identifier": "identifier0" - } - } - }, - { - "minValue": 99.99, - "maxValue": 99.99, - "crsId": { - "referenceSystemType": "referenceSystemType1", - "referenceSystemIdentifier": { - "identifier": "identifier1" - } - } - } - ] - }, - { - "description": "Extent 2: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "geographicExtent": [ - { - "containsData": false, - "identifier": { - "identifier": "identifier" - }, - "geographicElement": [ - { - "type": "Polygon", - "coordinates": [ - [ - [-30, 25], - [-20, 25], - [-20, 20], - [-30, 20], - [-30, 25] - ] - ] - }, - { - "type": "Polygon", - "coordinates": [ - [ - [10, 40], - [15, 35], - [15, 30], - [10, 30], - [10, 40] - ] - ] - } - ] - }, - { - "containsData": true, - "geographicElement": [ - { - "type": "GeometryCollection", - "bbox": [-10.0, -10.0, 10.0, 10.0], - "geometries": [ - { - "type": "Point", - "coordinates": [100.0, 0.0] - }, - { - "type": "LineString", - "coordinates": [ - [101.0, 0.0], - [102.0, 1.0] - ] - } - ] - }, - { - "type": "Polygon", - "coordinates": [ - [ - [10, 40], - [15, 35], - [15, 30], - [10, 30], - [10, 40] - ] - ] - } - ] - }, - { - "containsData": true, - "geographicElement": [ - { - "type": "Feature", - "id": "polygon-75", - "bbox": [-10.0, -10.0, 10.0, 10.0], - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-161.74223, 67.663378], - [-161.440345, 67.630173], - [-161.294611, 67.656257], - [-161.228063, 67.625736], - [-161.247712, 67.585909], - [-161.334662, 67.591324], - [-161.566245, 67.491263], - [-161.812338, 67.455299], - [-161.825019, 67.40123], - [-162.128301, 67.414364], - [-162.167825, 67.363047], - [-162.383403, 67.293329], - [-162.633432, 67.272237], - [-162.645587, 67.356665], - [-162.369023, 67.455264], - [-162.287324, 67.551235], - [-162.171139, 67.559356], - [-161.99344, 67.646806], - [-161.857964, 67.620329], - [-161.769431, 67.629407], - [-161.74223, 67.663378] - ] - ] - }, - "properties": { - "description": "Agashashok River site", - "featureName": [ - "Agashashok River", - "Camp Mosquito" - ], - "identifier": [ - { - "identifier": "AGAR" - }, - { - "identifier": "Kup25" - } - ], - "featureScope": "collectionSite", - "acquisitionMethod": "butterfly net", - "customField": "not in schema", - "customArray": [ - "string 1", - "string 2" - ] - } - } - ] - }, - { - "containsData": true, - "geographicElement": [ - { - "type": "FeatureCollection", - "bbox": [-10.0, -10.0, 10.0, 10.0], - "features": [ - { - "type": "Feature", - "id": "ALCC-BH55", - "bbox": [-10.0, -10.0, 10.0, 10.0], - "geometry": { - "type": "Point", - "coordinates": [102.0, 0.5] - }, - "properties": { - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "featureName": [ - "fake name" - ] - } - }, - { - "type": "Feature", - "id": "ALCC-BH56", - "bbox": [-10.0, -10.0, 10.0, 10.0], - "geometry": { - "type": "LineString", - "coordinates": [ - [102.0, 0.0], - [103.0, 1.0], - [104.0, 0.0], - [105.0, 1.0] - ] - }, - "properties": { - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." - } - }, - { - "type": "Feature", - "id": "ALCC-Co81", - "bbox": [-10.0, -10.0, 10.0, 10.0], - "geometry": { - "type": "GeometryCollection", - "bbox": [-10.0, -10.0, 10.0, 10.0], - "geometries": [ - { - "type": "Point", - "coordinates": [100.0, 0.0] - }, - { - "type": "LineString", - "coordinates": [ - [101.0, 0.0], - [102.0, 1.0] - ] - } - ] - }, - "properties": { - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." - } - } - ] - } - ] - } - ] - }, - { - "description": "Extent 3: Other world coordinates.", - "geographicExtent": [ - { - "containsData": false, - "identifier": { - "identifier": "identifier" - }, - "geographicElement": [ - { - "type": "Polygon", - "coordinates": [ - [ - [-265, 65], - [-260, 65], - [-260, 63], - [-265, 63], - [-265, 65] - ] - ] - }, - { - "type": "Polygon", - "coordinates": [ - [ - [200, 55], - [202, 55], - [202, 50], - [200, 50], - [200, 55] - ] - ] - }, - { - "type": "MultiPoint", - "coordinates": [ - [-150, 61], - [150, 61] - ] - } - ] - }, - { - "containsData": false, - "identifier": { - "identifier": "identifier" - }, - "geographicElement": [ - { - "type": "MultiPoint", - "coordinates": [ - [-150, 61], - [-122, 47], - [-112, 33], - [-105, 39], - [-97, 32], - [-82, 41], - [-81, 39], - [-76, 38], - [-66, 18], - [-118, 34], - [11, 43], - [8, 46], - [98, 8], - [178, -19], - [-157, 21], - [-147, 65], - [-145, 60], - [-148, 70], - [-132, 56] - ] - } - ] - }, - { - "containsData": false, - "identifier": { - "identifier": "identifier" - }, - "geographicElement": [ - { - "type": "MultiPoint", - "coordinates": [ - [-150, 61], - [-122, 47], - [-112, 33], - [-105, 39], - [-97, 32], - [-82, 41], - [-81, 39], - [-76, 38], - [-66, 18], - [-118, 34], - [11, 43], - [8, 46], - [98, 8], - [-147, 65], - [-145, 60], - [-148, 70], - [-132, 56] - ] - } - ] - }, - { - "containsData": false, - "identifier": { - "identifier": "identifier" - }, - "geographicElement": [ - { - "type": "Polygon", - "coordinates": [ - [ - [-100, 30], - [-95, 40], - [-100, 50], - [0, 45], - [100, 50], - [95, 40], - [100, 30], - [0, 35], - [-100, 30] - ] - ] - } - ] - }, - { - "containsData": false, - "identifier": { - "identifier": "identifier" - }, - "geographicElement": [ - { - "type": "Polygon", - "coordinates": [ - [ - [-100, 30], - [-95, 40], - [-100, 50], - [0, 45], - [200, 50], - [195, 40], - [200, 30], - [0, 35], - [-100, 30] - ] - ] - } - ] - }, - { - "containsData": false, - "identifier": { - "identifier": "identifier" - }, - "geographicElement": [ - { - "type": "Polygon", - "coordinates": [ - [ - [40, 30], - [45, 40], - [40, 50], - [180, 45], - [250, 50], - [245, 40], - [250, 30], - [180, 35], - [40, 30] - ] - ] - } - ] - }, - { - "containsData": false, - "identifier": { - "identifier": "identifier" - }, - "geographicElement": [ - { - "type": "Polygon", - "coordinates": [ - [ - [-250, 30], - [-245, 40], - [-250, 50], - [-180, 45], - [-50, 50], - [-55, 40], - [-50, 30], - [-180, 35], - [-250, 30] - ] - ] - } - ] - }, - { - "containsData": false, - "identifier": { - "identifier": "identifier" - }, - "geographicElement": [ - { - "type": "Polygon", - "coordinates": [ - [ - [-200, 40], - [-200, 55], - [-170, 55], - [-170, 40], - [-200, 40] - ] - ] - }, - { - "type": "Polygon", - "coordinates": [ - [ - [220, -40], - [220, -55], - [150, -55], - [150, -40], - [220, -40] - ] - ] - } - ] - } - ] - } - ] - }, - "resourceLineage": [ - { - "statement": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "scope": { - "scopeCode": "scopeCode" - }, - "citation": [ - { - "title": "Lineage Title 1" - }, - { - "title": "Lineage Title 2" - } - ], - "source": [ - { - "sourceId": "Source ID 15", - "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", - "sourceCitation": { - "title": "Source Citation Title" - }, - "metadataCitation": [ - { - "title": "First Source Metadata Citation" - }, - { - "title": "Next Source Metadata Citation" - } - ], - "spatialResolution": { - "scaleFactor": 99999 - }, - "referenceSystem": { - "referenceSystemType": "referenceSystemType", - "referenceSystemIdentifier": { - "identifier": "identifier" - } - }, - "sourceProcessStep": [ - { - "description": "description" - }, - { - "description": "description" - } - ], - "scope": { - "scopeCode": "scopeCode" - }, - "processedLevel": { - "identifier": "identifier" - }, - "resolution": { - "groundResolution": { - "value": 999.9, - "unitOfMeasure": "units" - } - } - }, - { - "description": "description" - } - ], - "processStep": [ - { - "stepId": "stepId 001", - "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", - "rationale": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", - "timePeriod": { - "startDateTime": "2016-10-14T11:10:15.2-10:00", - "endDateTime": "2016-12-31", - "id": "TimePeriod001", - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "identifier": { - "identifier": "TimePeriod Identifier", - "namespace": "namespace" - }, - "periodName": [ - "periodName0", - "periodName1" - ], - "timeInterval": { - "interval": 7, - "units": "year" - }, - "duration": { - "months": 9 - } - }, - "processor": [ - { - "role": "processor", - "party": [ - { - "contactId": "CID006" - } - ] - }, - { - "role": "reviewer", - "party": [ - { - "contactId": "CID004" - } - ] - } - ], - "reference": [ - { - "title": "Process Step Reference" - }, - { - "title": "Another Process Step Reference" - } - ], - "stepSource": [ - { - "description": "My step source description", - "sourceCitation": { - "title": "title" - } - }, - { - "description": "My other step source description" - } - ], - "stepProduct": [ - { - "description": "My step intermediate product description", - "sourceCitation": { - "title": "title" - } - }, - { - "description": "My other step intermediate product description" - } - ], - "scope": { - "scopeCode": "scopeCode" - }, - "output": [ - { - "description": "description one", - "resolution": { - "scanningResolution": { - "value": 999.9, - "unitOfMeasure": "units" - } - } - }, - { - "description": "description two" - } - ], - "processingInformation": { - "identifier": { - "identifier": "processing info identifier" - }, - "softwareReference": { - "title": "software reference title" - }, - "procedureDescription": "procedure description", - "documentation": [ - { - "title": "documentation title one" - }, - { - "title": "documentation title two" - } - ], - "runtimeParameters": "runtime parameters", - "algorithm": [ - { - "citation": { - "title": "algorithm one citation title" - }, - "description": "algorithm one" - }, - { - "citation": { - "title": "algorithm two citation title" - }, - "description": "algorithm tow" - } - ] - }, - "report": [ - { - "type": "DQ_Confidence", - "qualityMeasure": { - "name": ["example name","test"], - "description": "example description", - "identifier": { - "identifier": "example identifier", - "namespace": "example namespace", - "description": "example description" - } - }, - "conformanceResult": [ - { - "dateTime": "2017-10-13", - "specification": { - "title": "example specification title", - "date": [ - { - "date": "2017-10-13", - "dateType": "publication" - } - ], - "responsibleParty": [ - { - "role": "originator", - "party": [ - { - "contactId": "CID004" - } - ] - } - ] - }, - "explanation": "example explanation", - "pass": true - } - ], - "coverageResult": [ - { - "spatialRepresentationType": "grid", - "spatialRepresentation": { - "gridRepresentation": { - "numberOfDimensions": 2, - "dimension": [ - { - "dimensionType": "type", - "dimensionSize": 1 - } - ], - "cellGeometry": "area" - } - }, - "resourceFormat": { - "formatSpecification": { - "title": "title" - }, - "amendmentNumber": "amendmentNumber", - "compressionMethod": "compressionMethod", - "technicalPrerequisite": "technicalPrerequisite" - }, - "resultFile": { - "fileName": "filename.xml", - "fileDescription": "FGDC CSDGM Metadata", - "fileType": "FGDC CSDGM", - "fileFormat": { - "formatSpecification": { - "title": "FGDC CSDGM", - "identifier": [ - { - "identifier": "FGDC CSDGM" - } - ], - "otherCitationDetails": [ - "Federal Geographic Data Committee Content Standard for Digital\n Geospatial Metadata" - ] - } - } - }, - "resultContentDescription": { - "coverageName": "name", - "coverageDescription": "description", - "processingLevelCode": { - "identifier": "identifier", - "namespace": "namespace", - "version": "version", - "description": "description", - "authority": { - "title": "title" - } - }, - "attributeGroup": [ - { - "attributeContentType": [ - "attributeContentType" - ] - } - ], - "imageDescription": { - "illuminationElevationAngle": 9.9, - "illuminationAzimuthAngle": 9.9, - "imagingCondition": "imagingCondition", - "imageQualityCode": { - "identifier": "identifier" - } - } - } - } - ], - "descriptiveResult": [ - { - "dateTime": "2017-10-13", - "scope": { - "scopeCode": "scopeCode" - }, - "statement": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." - } - ], - "evaluationMethod": { - "type": "DQ_EvaluationMethod", - "dateTime": ["2019-06-11T08:35:00"], - "methodDescription": "evaluation method description", - "evaluationProcedure": { - "title": "title" - }, - "referenceDocument": [], - "evaluationMethodType": "DQ_EvaluationMethodTypeCode", - "deductiveSource": "deductive source", - "samplingScheme": "sampling scheme", - "lotDescription": "lot description", - "samplingRatio": "sampling ratio" - }, - "quantitativeResult": [ - { - "dateTime": "2017-10-13", - "scope": { - "scopeCode": "scopeCode" - }, - "valueRecordType": "valueType", - "valueUnit": "valueUnit", - "value": [1.2] - } - ] - } - ] - }, - { - "stepId": "stepId 002", - "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore." - } - ] - }, - { - "statement": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." - } - ], - "resourceDistribution": [ - { - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", - "liabilityStatement": "Accuracy of this data is absolutely guaranteed.", - "distributor": [ - { - "contact": { - "role": "distributor", - "party": [ - { - "contactId": "CID002" - } - ] - }, - "orderProcess": [ - { - "fees": "10.00USD", - "plannedAvailability": "2016-10-21T00:00:00", - "orderingInstructions": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "turnaround": "turnaround" - }, - { - "fees": "2.00USD" - } - ], - "transferOption": [ - { - "unitsOfDistribution": "units of distribution", - "transferSize": 9.9, - "onlineOption": [ - { - "uri": "http://ISO.uri/adiwg/0" - }, - { - "uri": "http://ISO.uri/adiwg/1" - } - ], - "offlineOption": [ - { - "mediumSpecification": { - "title": "My Medium Specification Title" - }, - "density": 9.9, - "units": "units", - "numberOfVolumes": 9, - "mediumFormat": [ - "mediumFormat0", - "mediumFormat1" - ], - "note": "note", - "identifier": { - "identifier": "Medium Identifier" - } - }, - { - "mediumSpecification": { - "title": "dium specification title 1" - } - } - ], - "transferFrequency": { - "months": 9 - }, - "distributionFormat": [ - { - "formatSpecification": { - "title": "CSV" - }, - "amendmentNumber": "2.0.8-beta", - "compressionMethod": "7ZipUp", - "technicalPrerequisite": "Must have ArcGIS 10.x or higher installed." - }, - { - "formatSpecification": { - "title": "format specification title 1" - } - } - ] - }, - { - "onlineOption": [ - { - "uri": "http://ISO.uri/adiwg/3" - } - ], - "transferSize": 10.9 - } - ] - }, - { - "contact": { - "role": "distributor", - "party": [ - { - "contactId": "CID003" - } - ] - } - } + ] + }, + { + "domainId": "domainId2", + "commonName": "time zones", + "codeName": "timezone", + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", + "domainReference": { + "title": "World Time Zone Reference", + "onlineResource": [ + { + "uri": "https://www.worldtimezone.com" + } ] - } + } + }, + { + "domainId": "domainId3", + "commonName": "ID type", + "codeName": "type", + "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." + } ], - "associatedResource": [ - { - "resourceType": [ - { - "type": "modelHardcopy", - "name": "Hardcopy of Model" - }, - { - "type": "videoDigital", - "name": "Video of the Making" - } - ], - "associationType": "partOfSeamlessDatabase", - "initiativeType": "investigation", - "resourceCitation": { - "title": "Resource Citation Title" + "entity": [ + { + "entityId": "entityId0", + "commonName": "country", + "codeName": "country", + "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", + "entityReference": [ + { + "title": "entity reference title 1" }, - "metadataCitation": { - "title": "Metadata Citation Title" + { + "title": "entity reference title 2" } - }, - { - "resourceType": [ - { - "type": "type0", - "name": "name0" - }, - { - "type": "type1", - "name": "name1" - } - ], - "associationType": "associationType", - "initiativeType": "initiativeType", - "resourceCitation": { - "title": "title" + ], + "primaryKeyAttributeCodeName": [ + "primaryAttribute0", + "primaryAttribute1" + ], + "index": [ + { + "codeName": "codeName0", + "allowDuplicates": false, + "attributeCodeName": [ + "attributeCodeName00", + "attributeCodeName01" + ] }, - "metadataCitation": { - "title": "title" - } - } - ], - "additionalDocumentation": [ - { - "resourceType": [ - { - "type": "webService", - "name": "ADIwg API" - }, - { - "type": "databaseDigital", - "name": "DMV Data" - } - ], - "citation": [ - { - "title": "A Good Additional Document" - }, - { - "title": "A More Better Additional Document" - } - ] - }, - { - "resourceType": [ - { - "type": "multimediaHardcopy", - "name": "Multi-Media Hard-Copy" - }, - { - "type": "physicalObject", - "name": "Lab Specimen" - } - ], - "citation": [ - { - "title": "A Much Mo Betha Additional Document" - } - ] - } - ], - "funding": [ - { - "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", - "allocation": [ - { - "sourceAllocationID": "A999999X1", - "amount": 9999.99, - "currency": "USD", - "sourceId": "CID005", - "recipientId": "CID006", - "responsibleParty": [ - { - "role": "use", - "party": [ - { - "contactId": "CID001" - } - ] - }, - { - "role": "audit", - "party": [ - { - "contactId": "CID002" - } - ] - } - ], - "matching": true, - "onlineResource": [ - { - "uri": "http://ISO.uri/adiwg/8" - }, - { - "uri": "http://ISO.uri/adiwg/9" - } - ], - "comment": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." - }, - { - "sourceAllocationID": "A999999X2", - "amount": 999.99, - "currency": "CAD" - } - ], - "timePeriod": { - "startDateTime": "2016-10-14T11:10:15.2-10:00", - "endDateTime": "2016-12-31", - "id": "TimePeriod001", - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "identifier": { - "identifier": "TimePeriod Identifier", - "namespace": "namespace" - }, - "periodName": [ - "periodName0", - "periodName1" - ], - "timeInterval": { - "interval": 5, - "units": "year" - }, - "duration": { - "months": 9 - } - } - }, - { - "allocation": [ - { - "amount": 9999.99, - "currency": "EUR" - } - ], - "timePeriod": { - "startDateTime": "2016-10-14" - } - } - ] - }, - "dataDictionary": [ - { - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "subject": [ - "subject0", - "subject1" - ], - "citation": { - "title": "title" - }, - "recommendedUse": [ - "use0", - "use1" - ], - "locale": [ - { - "language": "language0", - "country": "country0", - "characterSet": "characterSet0" - }, - { - "language": "language1", - "country": "country1", - "characterSet": "characterSet1" + { + "codeName": "codeName1", + "allowDuplicates": true, + "attributeCodeName": ["attributeCodeName1"] } - ], - "responsibleParty": { - "role": "author", - "party": [ - { - "contactId": "CID001" - } - ] - }, - "dictionaryFunctionalLanguage": "SQL", - "dictionaryIncludedWithResource": true, - "domain": [ - { - "domainId": "domainId0", - "commonName": "country", - "codeName": "country", - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "domainItem": [ - { - "name": "Canada", - "value": "CAN", - "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", - "reference": { - "title": "author defined" - } - }, - { - "name": "United States of America", - "value": "USA", - "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", - "reference": { - "title": "GCMD version 8.3" - } - }, - { - "name": "United States of Mexico", - "value": "MEX", - "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore." - } - ] + ], + "attribute": [ + { + "commonName": "Common Name for Attribute", + "codeName": "codeName", + "alias": ["alias0", "alias1"], + "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", + "dataType": "dataType", + "allowNull": true, + "mustBeUnique": false, + "units": "units", + "domainId": "domainId", + "minValue": "minValue", + "maxValue": "maxValue" }, { - "domainId": "domainId1", - "commonName": "administrative area", - "codeName": "province", - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "domainItem": [ - { - "name": "Alberta, CA", - "value": "Alberta", - "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore." - }, - { - "name": "California, USA", - "value": "California", - "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore." - }, - { - "name": "Jalisco, MEX", - "value": "Jalisco", - "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore." - } - ] - }, - { - "domainId": "domainId2", - "commonName": "time zones", - "codeName": "timezone", - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", - "domainReference": { - "title": "World Time Zone Reference", - "onlineResource": [ - { - "uri": "https://www.worldtimezone.com" - } - ] - } + "commonName": "Employee ID", + "codeName": "empId", + "alias": ["employeeId", "employeeNumber"], + "definition": "Numeric code to uniquely identify an employee of Acme Oil", + "dataType": "numeric", + "allowNull": false, + "mustBeUnique": true, + "units": "meters", + "domainId": "dom042", + "minValue": "1000000", + "maxValue": "5000000" + } + ], + "foreignKey": [ + { + "localAttributeCodeName": [ + "localAttributeCodeName0", + "localAttributeCodeName1" + ], + "referencedEntityCodeName": "referencedEntityCodeName", + "referencedAttributeCodeName": [ + "referencedAttributeCodeName0", + "referencedAttributeCodeName1" + ] }, { - "domainId": "domainId3", - "commonName": "ID type", - "codeName": "type", - "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur." + "localAttributeCodeName": ["employeeID"], + "referencedEntityCodeName": "EMPLOYEE", + "referencedAttributeCodeName": ["employeeID"] } - ], - "entity": [ - { - "entityId": "entityId0", - "commonName": "country", - "codeName": "country", - "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", - "entityReference": [ - { - "title": "entity reference title 1" - }, - { - "title": "entity reference title 2" - } - ], - "primaryKeyAttributeCodeName": [ - "primaryAttribute0", - "primaryAttribute1" - ], - "index": [ - { - "codeName": "codeName0", - "allowDuplicates": false, - "attributeCodeName": [ - "attributeCodeName00", - "attributeCodeName01" - ] - }, - { - "codeName": "codeName1", - "allowDuplicates": true, - "attributeCodeName": [ - "attributeCodeName1" - ] - } - ], - "attribute": [ - { - "commonName": "Common Name for Attribute", - "codeName": "codeName", - "alias": [ - "alias0", - "alias1" - ], - "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", - "dataType": "dataType", - "allowNull": true, - "mustBeUnique": false, - "units": "units", - "domainId": "domainId", - "minValue": "minValue", - "maxValue": "maxValue" - }, - { - "commonName": "Employee ID", - "codeName": "empId", - "alias": [ - "employeeId", - "employeeNumber" - ], - "definition": "Numeric code to uniquely identify an employee of Acme Oil", - "dataType": "numeric", - "allowNull": false, - "mustBeUnique": true, - "units": "meters", - "domainId": "dom042", - "minValue": "1000000", - "maxValue": "5000000" - } - ], - "foreignKey": [ - { - "localAttributeCodeName": [ - "localAttributeCodeName0", - "localAttributeCodeName1" - ], - "referencedEntityCodeName": "referencedEntityCodeName", - "referencedAttributeCodeName": [ - "referencedAttributeCodeName0", - "referencedAttributeCodeName1" - ] - }, - { - "localAttributeCodeName": [ - "employeeID" - ], - "referencedEntityCodeName": "EMPLOYEE", - "referencedAttributeCodeName": [ - "employeeID" - ] - } - ], - "fieldSeparatorCharacter": "tab", - "numberOfHeaderLines": 4, - "quoteCharacter": "double" - }, - { - "entityId": "entityId1", - "commonName": "administrative area", - "codeName": "province", - "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", - "primaryKeyAttributeCodeName": [ - "primaryAttribute" - ], - "attribute": [ - { - "commonName": "commonName", - "codeName": "codeName", - "alias": [ - "alias0", - "alias1" - ], - "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", - "attributeReference": { - "title": "attribute reference title" - }, - "dataType": "dataType", - "allowNull": true, - "mustBeUnique": false, - "units": "units", - "unitsResolution": 9.9, - "isCaseSensitive": true, - "fieldWidth": 4, - "missingValue": "-", - "domainId": "domainId", - "minValue": "minValue", - "maxValue": "maxValue", - "valueRange": [ - { - "minRangeValue": "0", - "maxRangeValue": "9" - }, - { - "minRangeValue": "20", - "maxRangeValue": "40" - } - ], - "timePeriod": [ - { - "startDateTime": "2016-10-14", - "endDateTime": "2016-12-31" - }, - { - "startDateTime": "2017-05-22", - "endDateTime": "2017-06-15" - } - ] - }, - { - "commonName": "Employee ID", - "codeName": "empId", - "alias": [ - "employeeId", - "employeeNumber" - ], - "definition": "Numeric code to uniquely identify an employee of Acme Oil", - "dataType": "numeric", - "allowNull": false, - "mustBeUnique": true, - "units": "meters", - "domainId": "dom042", - "minValue": "1000000", - "maxValue": "5000000" - } - ] + ], + "fieldSeparatorCharacter": "tab", + "numberOfHeaderLines": 4, + "quoteCharacter": "double" + }, + { + "entityId": "entityId1", + "commonName": "administrative area", + "codeName": "province", + "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", + "primaryKeyAttributeCodeName": ["primaryAttribute"], + "attribute": [ + { + "commonName": "commonName", + "codeName": "codeName", + "alias": ["alias0", "alias1"], + "definition": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.", + "attributeReference": { + "title": "attribute reference title" + }, + "dataType": "dataType", + "allowNull": true, + "mustBeUnique": false, + "units": "units", + "unitsResolution": 9.9, + "isCaseSensitive": true, + "fieldWidth": 4, + "missingValue": "-", + "domainId": "domainId", + "minValue": "minValue", + "maxValue": "maxValue", + "valueRange": [ + { + "minRangeValue": "0", + "maxRangeValue": "9" + }, + { + "minRangeValue": "20", + "maxRangeValue": "40" + } + ], + "timePeriod": [ + { + "startDateTime": "2016-10-14", + "endDateTime": "2016-12-31" + }, + { + "startDateTime": "2017-05-22", + "endDateTime": "2017-06-15" + } + ] + }, + { + "commonName": "Employee ID", + "codeName": "empId", + "alias": ["employeeId", "employeeNumber"], + "definition": "Numeric code to uniquely identify an employee of Acme Oil", + "dataType": "numeric", + "allowNull": false, + "mustBeUnique": true, + "units": "meters", + "domainId": "dom042", + "minValue": "1000000", + "maxValue": "5000000" } - ] + ] + } + ] + }, + { + "citation": { + "title": "My Dictionary Title" }, - { - "citation": { - "title": "My Dictionary Title" - }, - "subject": [ - "birds", - "loons" - ], - "recommendedUse": [ - "Reconstruct database" - ], - "locale": [ - { - "language": "eng", - "country": "USA", - "characterSet": "UTF-8" - } - ], - "responsibleParty": { - "role": "author", - "party": [ - { - "contactId": "CID006" - } - ] - }, - "dictionaryFunctionalLanguage": "MSSQL", - "dictionaryIncludedWithResource": false - } - ], - "metadataRepository": [ - { - "repository": "data.gov", - "citation": { - "title": "My Repository Citation Title", - "alternateTitle": [ - "alternateTitle0", - "alternateTitle1" - ], - "identifier": [ - { - "identifier": "identifier 0" - }, - { - "identifier": "identifier 1" - } - ] - }, - "metadataStandard": "FGDC" + "subject": ["birds", "loons"], + "recommendedUse": ["Reconstruct database"], + "locale": [ + { + "language": "eng", + "country": "USA", + "characterSet": "UTF-8" + } + ], + "responsibleParty": { + "role": "author", + "party": [ + { + "contactId": "CID006" + } + ] }, - { - "repository": "dataOne", - "metadataStandard": "iso19115_2" - } - ] + "dictionaryFunctionalLanguage": "MSSQL", + "dictionaryIncludedWithResource": false + } + ], + "metadataRepository": [ + { + "repository": "data.gov", + "citation": { + "title": "My Repository Citation Title", + "alternateTitle": ["alternateTitle0", "alternateTitle1"], + "identifier": [ + { + "identifier": "identifier 0" + }, + { + "identifier": "identifier 1" + } + ] + }, + "metadataStandard": "FGDC" + }, + { + "repository": "dataOne", + "metadataStandard": "iso19115_2" + } + ] }