-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.yaml
3452 lines (3446 loc) · 111 KB
/
swagger.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
components:
parameters:
dbidQuery:
description: |
Unique constituent database identifier from the `ndb.constituentdatabases` table. Each of the Neotoma constituent databases is identified uniquely with an integer primary key.
in: query
name: dbid
required: false
schema:
type: integer
minimum: 1
maximum: 35
ageQuery:
description: |
Icesheet age (in calibrated radiocarbon years before present, with 0 at 1950CE). Ages range from 0 to 18000.
in: query
name: age
required: false
schema:
example: 6700
format: int64
maximum: 18000
minimum: 1000
type: integer
ageOfQuery:
description: Dataset age ranges must span this age (in calibrated years before present, with 0 at 1950CE)
in: query
name: ageof
required: false
schema:
example: 6700
format: int64
maximum: 23900000
minimum: -100
type: integer
scinameQuery:
description: The scientific name for a mammal taxon. May be the complete name or use the `%` wildcard for the name.
in: query
name: sciname
required: true
schema:
example: canis%
type: string
projQuery:
in: query
name: proj
required: false
schema:
type: integer
minimum: 2000
maximum: 32767
default: 4326
example: 3857
description: |
A valid integer [spatial reference identifier](https://en.wikipedia.org/wiki/Spatial_reference_system#Identifier) value. By default Neotoma returns all data with the SRID 4326 (standard lat/long), representing the [WSG84](https://en.wikipedia.org/wiki/World_Geodetic_System#WGS84) model of the planet. For web mapping users may choose SRID *3857* if using projected features.
precQuery:
description: |
Precision of points within a rendered polygon. Many spatial objects are generated statistically and may have overly precise point coordinates. Often precisions to 100m is sufficient for rendering to map.<br>
**NOTE**: the precision is dependent on the projected units. For the default SRID=4326 projection, precision units are in decimal degrees, where 0.1 degrees latitude = 11.1km and 0.0001 degrees latitude = 11.1m. For metric precision, units will be in meters.<br>
The default value of *0.0001* represents a metric distance of 11.1m in the default 4326 projection.
in: query
name: prec
required: false
schema:
example: 100
minimum: 0
maximum: 1000
exclusiveMinimum: true
type: number
default: 0.0001
ageOldQuery:
description: Oldest age that intercepts with the dataset (in calibrated years before present, with 0 at 1950CE)
in: query
name: ageold
required: false
schema:
example: 11430
format: int64
maximum: 23900000
minimum: -100
type: integer
ageYoungQuery:
description: Youngest age that intercepts with the dataset (in calibrated years before present, with 0 at 1950CE)
in: query
name: ageyoung
required: false
schema:
example: -60
format: int64
maximum: 23900000
minimum: -100
type: integer
altMaxQuery:
description: Maximum altitude of the dataset site location (in meters)
in: query
name: altmax
required: false
schema:
example: 300
format: int64
maximum: 8900
minimum: -500
type: integer
altMinQuery:
description: Minimum altitude of the dataset site location (in meters)
in: query
name: altmin
required: false
schema:
example: 200
format: int64
maximum: 8900
minimum: -500
type: integer
chronidPath:
description: Unique chronology identifier.
in: path
name: chronid
required: true
schema:
format: int64
maximum: 40000
minimum: 0
exclusiveMinimum: true
type: integer
contactNameQuery:
description: Last name of the researcher (may use the % wildcard)
in: query
name: contactname
required: false
schema:
example: Grimm, Eric Christopher
type: string
countQuery:
description: Should we return the row count for the table?
in: query
name: count
required: false
schema:
type: boolean
default: false
contactStatusQuery:
description: Current employment status
in: query
name: contactstatus
required: false
schema:
enum:
- active
- deceased
- defunct
- extant
- inactive
- retired
- unknown
example: active
type: string
contactidPath:
description: Unique contact identifier within the Neotoma Database, alone or comma separated.
in: path
name: contactid
required: true
schema:
example: 44
format: int64
maximum: 20000
minimum: 1
type: integer
contactidQuery:
description: Unique contact identifier within the Neotoma Database, alone or comma separated.
in: query
name: contactid
required: false
schema:
example: 44
format: int64
maximum: 20000
minimum: 1
type: integer
databaseQuery:
description: One of the constituent databases within Neotoma
in: query
name: database
required: true
schema:
enum:
- Cooperative Holocene Mapping Project
- African Pollen Database
- European Pollen Database
- Indo-Pacific Pollen Database
- Latin American Pollen Database
- North American Pollen Database
- Pollen Database of Siberia and the Russian Far East
- Canadian Pollen Database
- FAUNMAP
- Neotoma
- North American Plant Macrofossil Database
- Academy of Natural Sciences of Drexel University
- NDSU Insect Database
- North American Non-Marine Ostracode Database Project (NANODe)
- MioMap
- Alaskan Archaeofaunas
- French Institute of Pondicherry Palynology and Paleoecology Database
- Japanese Pollen Database
- Neotoma Midden Database
- Chinese Pollen Database
- Holocene Perspective on Peatland Biogeochemistry
- ANTIGUA
- Neotoma Testate Amoebae Database
- Deep-Time Palynology Database
- Neotoma Biomarker Database
- Alpine Pollen Database
- Canadian Museum of Nature-Delorme Ostracoda-Surface Samples
- Diatom Paleolimnology Data Cooperative (DPDC)
- Neotoma Ostracode Database
- Faunal Isotope Database
- Neotoma Charcoal Data
- Pollen Monitoring Programme
- PaleoVertebrates of Latin America
- St. Croix Watershed Research Station of the Science Museum of Minnesota
type: string
datasetidPath:
description: Valid Neotoma dataset identifier (integer), either singly or in a comma separated list.
in: path
name: datasetid
required: true
schema:
example: 100
format: int32
maximum: 60000
minimum: 1
type: integer
datasetidQuery:
description: Valid Neotoma dataset identifier (integer), either singly or in a comma separated list.
in: query
name: datasetid
required: false
schema:
format: int32
minimum: 0
exclusiveMinimum: true
type: integer
doiQuery:
description: A valid DOI in the form 10.XXXX/XXXXX (i.e., excluding 'https://doi.org').
in: query
name: doi
required: false
schema:
type: string
pattern: ^10.\d{4,9}/[-._;()/:A-Z0-9]+$
example: 10.21233/J8P9-G487
datasettypeQuery:
description: Neotoma contains data for a number of dataset types (see /dbtables/datasettypes. This returns a subset of data types.
in: query
name: datasettype
required: false
schema:
type: string
nullable: true
enum:
- geochronologic
- loss-on-ignition
- pollen
- plant macrofossil
- vertebrate fauna
- macroinvertebrate
- pollen surface sample
- insect
- ostracode
- water chemistry
- diatom
- ostracode surface sample
- diatom surface sample
- geochemistry
- physical sedimentology
- charcoal
- testate amoebae
- X-ray fluorescence (XRF)
- X-ray diffraction (XRD)
- energy dispersive X-ray spectroscopy (EDS/EDX)
- biomarker
- modern plant biomarker
- phytolith
- specimen stable isotope
- paleomagnetic,biochemistry
- modern biochemistry
- organic carbon
- insect modern
- chironomid
- stable isotope
- testate amoebae surface sample
- charcoal surface sample
- cladocera
- diatom top-bottom
- microcharcoal
- macrocharcoal
- pollen trap
- dinoflagellates
- diatom bottom sample
- Metabarcoding aeDNA
ecolGroupQuery:
description: The ecological group of interest for the Neotoma taxon (from the Neotoma ecolgrouptypes table)
in: query
name: ecolgroup
required: false
schema:
type: string
example: Charcoal
familyNameQuery:
description: Family name (last name) of the the researcher (may use the % wildcard)
in: query
name: familyname
required: false
schema:
type: string
gpidPath:
description: Numeric ID for the geopolitical unit.
in: path
name: gpid
required: true
schema:
format: int32
maximum: 11000
minimum: 1
type: integer
gpidQuery:
description: Numeric ID for the geopolitical unit from the Neotoma geopoliticalunits table.
in: query
name: gpid
required: false
schema:
format: int32
maximum: 11000
minimum: 1
type: integer
examples:
gpid:
value: 756
summary: A valid unique identifier for geopolitical units from Neotoma's geopoliticalunits table.
gpids:
value: 2155,313,5414
summary: A set of unique identifiers, separated by commas.
gpnameQuery:
description: Name for a geopolitical unit.
in: query
name: gpname
required: false
schema:
type: string
examples:
countryname:
value: Canada
summary: The name of a country, state or other region.
countrynames:
value: Italy, austria, switzerland
summary: The name of a set of locations, separated by commas.
keywordQuery:
description: A valid keyword for samples within Neotoma. The list of valid names can be obtained through a call to the dbtables API call.
in: query
name: keyword
required: false
schema:
format: string
enum:
- modern
- pre-European
- interglacial
- bottom
- beyond radiocarbon
limitParam:
description: The maximum number of records to be returned, default is 25.
in: query
name: limit
required: false
schema:
default: 25
format: int32
maximum: 10000
minimum: 1
type: integer
locQuery:
description: |
The geographic region of interest for the site, as a GeoJSON string or valid Well Known Text (WKT). Assumed projection of EPSG:4376 unless otherwise defined.
in: query
name: loc
required: false
schema:
type: string
examples:
SouthAmericangeoJSON:
value: "{'type':'FeatureCollection','features':[{'type':'Feature','properties':{},'geometry':{'coordinates':[[[-73.300,-35.768],[-75.442,-43.787],[-64.059,-43.533],[-53.572,-38.844],[-55.043,-34.302],[-61.150,-33.904],[-68.248,-34.407],[-73.300,-35.768]]],'type':'Polygon'}}]}"
summary: A geoJSON representation of a polygon that includes Argentina and Chile.
EuropeanWKT:
value: POLYGON ((12.49 45.53, 9.847 42.879, 16.982 40.812, 20.549 44.03, 14.736 46.266, 12.49 45.53))
summary: A WKT formatted spatial polygon that includes land adjacent to the Adriatic sea.
lowergpQuery:
description: Should all lower ranked units below the target unit be returned?
in: query
name: lower
required: false
schema:
default: false
type: boolean
occurrenceidPath:
description: Valid Neotoma occurrence identifier (integer), either singly or in a comma separated list.
in: path
name: occurrenceid
required: true
schema:
format: int32
maximum: 10000000
minimum: 1
type: integer
occurrenceidQuery:
description: Valid Neotoma occurrence identifier (integer), either singly or in a comma separated list.
in: query
name: occurrenceid
required: false
schema:
format: int32
maximum: 10000000
minimum: 0
type: integer
offsetParam:
description: The offset for returned records when a limit is present. Default is 0.
in: query
name: offset
required: false
schema:
default: 0
format: int32
minimum: 0
type: integer
pollenidPath:
description: |
Unique pollen taxon identifier (from the Neotoma taxa table).
in: path
name: id
required: true
schema:
format: int32
maximum: 50000
minimum: 1
type: integer
publicationidPath:
description: |
Unique publication identifier (from the Neotoma publication table).
in: path
name: publicationid
required: true
schema:
format: int32
maximum: 20000
minimum: 1
type: integer
publicationidQuery:
description: |
Unique publication identifier (from the Neotoma publication table).
in: query
name: publicationid
required: false
schema:
format: int32
maximum: 20000
minimum: 0
exclusiveMinimum: true
type: integer
pubsearchQuery:
description: A fulltext search string. Either a literal portion of the article name, or keywords.
in: query
name: search
required: false
schema:
type: string
pubtypeQuery:
description: The type of publication requested.
in: query
name: pubtype
required: false
schema:
enum:
- Legacy
- Journal Article
- Book Chapter
- Authored Book
- Edited Book
- Master's Thesis
- Doctoral Dissertation
- Authored Report
- Edited Report
- Other Authored
- Other Edited
- Website
- Undergraduate thesis
type: string
pubyearQuery:
description: The year of publication, either as a single value or comma separated string.
in: query
name: year
required: false
schema:
format: int32
maximum: 2100
minimum: 1500
type: integer
rankQuery:
description: The unit rank. Ranges from 1 (country) - 4 (e.g., parks).
in: query
name: rank
required: false
schema:
maximum: 4
minimum: 1
type: integer
taxaQuery:
description: |
The name of a taxon, or a unique taxon identifier within Neotoma (obtained from a call to tables). May be a comma separated list of taxonomic names or numeric identifiers. As elsewhere, the `%` sign can be used as a wildcard.
name: taxa
in: query
required: false
schema:
type: string
sitenameQuery:
description: Name of the study site (may use the % wildcard). Note that Neotoma study site names are not unique. For example there are more than 15 sites in Neotoma named *Clear Lake*.
in: query
name: sitename
required: false
schema:
example: Stern Excavation Site
type: string
siteidPath:
description: Valid Neotoma site identifier (integer), either singly or in a comma separated list.
in: path
name: siteid
required: true
schema:
format: int32
maximum: 30000
minimum: 1
type: integer
bufferQuery:
description: Buffer distance for point of polygon in meters.
in: query
name: buffer
required: false
schema:
format: int64
minimum: 0
maximum: 10000
default: 10000
type: integer
siteidQuery:
description: Valid Neotoma site identifier (integer), either singly or in a comma separated list.
in: query
name: siteid
required: false
schema:
format: int32
maximum: 30000
minimum: 1
type: integer
tableQuery:
description: Valid name for a Neotoma Table
in: query
name: table
required: false
schema:
example: agetypes
type: string
tablePath:
description: Valid name for a Neotoma Table
in: path
name: table
required: true
schema:
example: agetypes
type: string
taxonNameQuery:
description: |
Taxon name or partial name. You can pass wildcard characters using `%`. For example, `%anis` will match
with *Canis* as well as the plant taxon *Triodanis*. It will not match `Canis lupus` because there is no terminal wildcard. This can be accompished using `%anis%`.
in: query
name: taxonname
required: false
schema:
example: Canis
type: string
taxaGroupQuery:
description: |
The taxonomic grouping the taxon belongs to, from the Neotoma taxagrouptypes table. You can get the list of acceptable taxa group types using the [dbtables API call](https://api.neotomadb.org/api-docs/#/Database%20tables/get_v2_0_data_dbtables) and passing *taxagrouptypes* as the table.
in: query
name: taxagroup
required: false
schema:
example: Algae
type: string
taxastatusQuery:
description: |
The taxonomic extinction status of the taxon, either extinct (1, True) or extant (0, False).
in: query
name: status
required: false
schema:
example: 1
type: string
enum: [0, 1, True, False]
taxonidPath:
description: |
Unique taxonomic identifier (from the Neotoma taxon table).
in: path
name: taxonid
required: true
schema:
format: int32
maximum: 50000
minimum: 1
type: integer
taxonidQuery:
description: Unique taxonomic identifier (from the Neotoma taxon table).
in: query
name: taxonid
required: false
schema:
maximum: 50000
minimum: 1
type: integer
taxonnameQuery:
description: Unique taxonomic name (from the Neotoma taxon table).
in: query
name: taxonname
required: false
schema:
type: string
schemas:
constdbdescription:
type: string
nullable: true
description: |
A description provided by the stewards for the constituent database describing the database and its intended use.
constdbresponse:
type: object
properties:
status:
type: string
message:
type: string
query:
type: object
nullable: true
data:
type: array
items:
type: object
properties:
description:
$ref: '#/components/schemas/constdbdescription'
url:
$ref: "#/components/schemas/url"
contactname:
$ref: "#/components/schemas/contactname"
email:
$ref: "#/components/schemas/email"
datasettypes:
description: |
An array of the unique dataset types for all datasets within the constituent database.
type: array
items:
type: string
nullable: true
older:
$ref: '#/components/schemas/ageold'
younger:
$ref: '#/components/schemas/ageyoung'
datasets:
description: |
A count of the number of unique datasets within the constituent database.
type: integer
datasetagerangeresponse:
description: |
The age bounds of a dataset, as defined by the chronology, generally the oldest and youngest sample ages for the dataset, for a given age type (<sup>14</sup>C years, calibrated radiocarbon, calendar years, etc.)
properties:
status:
type: string
message:
type: string
query:
type: object
data:
type: array
items:
properties:
older:
$ref: '#/components/schemas/ageold'
younger:
$ref: '#/components/schemas/ageyoung'
agetype:
$ref: '#/components/schemas/agetype'
datasetsShort:
description: |
A data response primarily for rapid access to site/dataset locations, providing only limited metadata.
properties:
status:
type: string
message:
type: string
data:
type: array
items:
properties:
siteid:
$ref: '#/components/schemas/siteid'
sitename:
$ref: '#/components/schemas/sitename'
datasetid:
$ref: '#/components/schemas/datasetid'
datasettype:
$ref: '#/components/schemas/datasetid'
coords:
type: array
items:
type: string
lakesPoly:
properties:
status:
type: string
message:
type: string
data:
type: array
items:
properties:
hydrolakeid:
type: integer
description: |
Unique lake identifier in the [HydroLakes10k](https://www.hydrosheds.org/products/hydrolakes) database.
lakename:
type: string
description: |
Name of lake or reservoir.<br>
This field is currently only populated for lakes with an area of at least 500km^2^; for large reservoirs where a name was available in the GRanD database; and for smaller lakes where a name was available in the GLWD database. [source PDF](https://data.hydrosheds.org/file/technical-documentation/HydroLAKES_TechDoc_v10.pdf)
lakearea:
description: Lake area in square kilometers.
type: integer
shorelen:
description: Shore length/lake perimeter in kilometers.
type: integer
volume:
type: number
description: |
Total lake or reservoir volume, in million cubic meters (1*mcm* = 0.001 km^3^).<br>
For most polygons, this value represents the total lake volume as estimated using the geostatistical modeling approach by Messager et al. (2016). However, where either a reported lake volume (for lakes ≥ 500 km^2^) or a reported reservoir volume (from GRanD database) existed, the total volume represents this reported value. In cases of regulated lakes, the total volume represents the larger value between reported reservoir and modeled or reported lake volume. [source PDF](https://data.hydrosheds.org/file/technical-documentation/HydroLAKES_TechDoc_v10.pdf)
avgdepth:
type: number
description: |
Average lake depth, in meters.
Average lake depth is defined as the ratio between total lake volume (`volume`) and lake area (`lakearea`).
watershedarea:
type: number
description: |
Area of the watershed associated with the lake, in square kilometers.<br>
The watershed area is calculated by deriving and measuring the upstream contribution area to the lake pour point using the HydroSHEDS drainage network map at 15 arc-second resolution.<br>
**-9999**: no data as lake pour point is not on HydroSHEDS landmask
wkt_shape:
type: string
description: |
A Well-Known-Text representation of the lake, resolved to the appropriate precision.
faunalPoly:
properties:
message:
type: string
data:
type: array
items:
properties:
gid:
type: array
items:
type: integer
format: int32
nullable: true
spid:
type: array
items:
type: integer
format: int32
nullable: true
sciname:
type: array
items:
type: string
nullable: true
geom:
type: string
nullable: true
icesheetPoly:
properties:
message:
type: string
data:
type: object
properties:
gid:
type: array
items:
type: integer
format: int32
age:
type: integer
format: int32
calibrated:
type: integer
format: int32
geom:
type: string
address:
description: A physical address, as a single string.
example: 550 N Park St, Madison WI, USA
type: string
nullable: true
ageold:
example: 1000
nullable: true
type: number
agerange:
description: |
The set of ages describing a sample age measured with uncertainty. Often described as the accepted age of the sample and then a younger and older age defined by ±1SD. The age range may be further defined in chronology or dataset notes.
properties:
ageold:
$ref: '#/components/schemas/ageold'
agetype:
$ref: '#/components/schemas/agetype'
ageyoung:
$ref: '#/components/schemas/ageyoung'
type: object
agetype:
enum:
- Calendar years AD/BC
- Calendar years BP
- Calibrated radiocarbon years BP
- Radiocarbon years BP
- Varve years BP
type: string
ageyoung:
example: -35
nullable: true
type: number
altitude:
example: 0
format: int32
maximum: 9000
minimum: -500
type: integer
pollenresponse:
type: object
datasetelcresponse:
type: object
publicationsresponse:
type: object
authorpiresponse:
properties:
data:
items:
properties:
getpeople:
type: string
type: object
type: array
message:
$ref: '#/components/schemas/message'
status:
$ref: '#/components/schemas/status'
type: object
chronology:
properties:
agetype:
$ref: '#/components/schemas/agetype'
chronologyName:
example: NAPD 1
type: string
chronologyid:
example: 1
type: integer
controls:
properties:
age:
example: -45
type: number
chroncontrolid:
example: 5645
type: integer
controllimits:
properties:
ageolder:
$ref: '#/components/schemas/ageold'
ageyounger:
$ref: '#/components/schemas/ageyoung'
type: object
controltype:
example: Core top
type: string
depth:
example: 0.5
type: number
thickness:
example: 2
type: number
type: object
dataset:
properties:
datasetid:
$ref: '#/components/schemas/datasetid'
datasettype:
type: string
type: object
datePrepared:
$ref: '#/components/schemas/date'
default:
example: true
type: boolean
modelType:
example: linear interpolation
type: string
preparedby:
properties:
contactid:
example: 44
type: integer
contactname:
example: Grimm, Eric Christopher
type: string
familyname:
example: Grimm
type: string
firstname:
example: Eric
type: string
initials:
example: E.C.
type: string
type: object
reliableagespan:
properties:
older:
example: 6490
type: integer
younger:
example: -30
type: integer
type: object
type: object
chronologyv2_0:
properties:
agetype:
example: Calibrated radiocarbon years BP
type: string
chronologyName:
example: NAPD 1
type: string
chronologyid:
example: 1
type: integer
controls:
properties:
age:
example: -45
type: number
chroncontrolid:
example: 5645
type: integer
controllimits:
properties:
ageolder:
$ref: '#/components/schemas/ageold'
ageyounger:
$ref: '#/components/schemas/ageyoung'
type: object
controltype:
example: Core top
type: string
depth:
example: 0.5
type: number
thickness:
example: 2
type: number
type: object
dataset:
properties:
datasetid:
$ref: '#/components/schemas/datasetid'
datasettype:
type: string
type: object
datePrepared:
$ref: '#/components/schemas/date'
default:
example: true
type: boolean
modelType: