-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathadapt-root-schema.json
More file actions
5124 lines (5124 loc) · 151 KB
/
adapt-root-schema.json
File metadata and controls
5124 lines (5124 loc) · 151 KB
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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://adaptstandard.org/root/2.0.2",
"type": "object",
"description": "When ADAPT data is consolidated into a single dataset (usually as physical files), the Root component acts as the top level entity that contains all available data. It is serialized as \"adapt.json.\" Note that it is also possible to use json representations of individual ADAPT components in a distributed service architecture without the container entities (Root, Catalog, Documents, etc.)",
"properties": {
"catalog": {
"allOf": [
{
"$ref": "#/$defs/catalog"
},
{
"description": "Container for data types that are fixed, infrequently changing, or otherwise prerequisite to transactional data. Master or Reference data, often called Setup or Coding data in agricultural applications."
}
]
},
"documents": {
"allOf": [
{
"$ref": "#/$defs/documents"
},
{
"description": "Container for transactional, frequently changing data. Documents will necessarily reference master data defined in the Catalog."
}
]
},
"rootSchemaVersion": {
"allOf": [
{
"$ref": "#/$defs/rootSchemaVersion"
},
{
"description": "The version of the ADAPT root schema governing the serialized dataset, of format major.minor.patch (e.g., 2.0.0). Required."
}
]
},
"dataTypeDefinitionVersion": {
"allOf": [
{
"$ref": "#/$defs/dataTypeDefinitionVersion"
},
{
"description": "Version of the Standard Data Type Definitions used. If omitted, the current version is assumed."
}
]
},
"unitSystemVersion": {
"allOf": [
{
"$ref": "#/$defs/unitSystemVersion"
},
{
"description": "Version identifier describing the ADAPT Unit System used throughout the model. If omitted, the current version is assumed."
}
]
}
},
"required": [
"catalog",
"rootSchemaVersion"
],
"$defs": {
"a": {
"type": "string",
"description": "The A point (WKT) of an AB or A+ Line"
},
"activeBoundaryId": {
"type": "string",
"description": "An id mapping to the Reference Id of a Field Boundary, representing the one boundary that is current"
},
"addressContactTypeCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Address Contact Type data type definition"
},
"addressLine": {
"type": "string",
"description": "A single Address line, composing part of the section before the City, Country, etc."
},
"b": {
"type": "string",
"description": "The B point (WKT) of an AB Line"
},
"baseStationPosition": {
"type": "string",
"description": "WKT of physical point defining the location of the base station."
},
"boundaryCreationMethodCode": {
"type": "string",
"description": "Code identifying the Creation Method from the BoundaryCreationMethod enumerated Data Type Definition"
},
"brandId": {
"type": "string",
"description": "An id mapping to the Reference Id of a Brand"
},
"centerPoint": {
"type": "string",
"description": "WKT Coordinates for the center of an object."
},
"city": {
"type": "string",
"description": "The city for the purposes of defining an Address"
},
"code": {
"type": "string",
"description": "A code is a character string of letters, numbers, special characters (except escape sequences); and symbols. It represents a definitive value,\na method, or a property description in an abbreviated or language-independent form that is part of a finite list of allowed values."
},
"country": {
"type": "string",
"description": "The country defined within an Address"
},
"countryCode": {
"type": "string",
"description": "An ISO 3166 alpha-2 code for a Country"
},
"countrySubdivision": {
"type": "string",
"description": "Subdivision or region of a country such as a state or province."
},
"cropId": {
"type": "string",
"description": "An id mapping to the Reference Id of a Crop"
},
"cropZoneId": {
"type": "string",
"description": "An id mapping to the Reference Id of a Crop Zone"
},
"dataDefinitionBaseTypeCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Data Definition Base Type data type definition"
},
"dataDefinitionStatusCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Data Definition Status data type definition"
},
"dataTypeDefinitionVersion": {
"type": "string",
"description": "Version of a Data Type Definition. Uses Semantic Versioning to identify updates to the entirety of the standard Data Types Definition list."
},
"dateContextCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Date Context data type definition"
},
"default": {
"type": "number",
"description": "A numeric default."
},
"defaultRate": {
"type": "number",
"description": "The default rate for a Prescribed Rate."
},
"definitionCode": {
"type": "string",
"description": "Code identifying a Data Type Definition, either in the standard Adapt list or within the Custom Data Type \nDefinitions in this Adapt instance."
},
"description": {
"type": "string",
"description": "A string that describes an object, likely containing more contextual information than a Name."
},
"deviceId": {
"type": "string",
"description": "An id mapping to the Reference Id of a Device"
},
"deviceModelId": {
"type": "string",
"description": "An id mapping to the Reference Id of a Device Model"
},
"deviceSeries": {
"type": "string",
"description": "The name of any formal Series in which the Device Model is included."
},
"documentRelationshipTypeCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Document Relationship Type data type definition"
},
"duration": {
"type": "number",
"description": "in seconds"
},
"end": {
"type": "string",
"format": "date-time",
"description": "The date and time (UTC) at the end of an event."
},
"endPoint": {
"type": "string",
"description": "WKT coordinates for the end point of an object"
},
"enumerationItemStatusCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Data Definition Status data type definition"
},
"farmId": {
"type": "string",
"description": "An id mapping to the Reference Id of a Farm"
},
"fieldId": {
"type": "string",
"description": "An id mapping to the Reference Id of a Field"
},
"geoNamesId": {
"type": "string",
"description": "Geopolitical Ontology Id from GeoNames.org"
},
"geometry": {
"type": "string",
"description": "The geometry of an object in Well Known Text in WGS84 coordinates."
},
"geoParquetColumnName": {
"type": "string",
"description": "Name of the column in the GeoParquet file. Required for vector geospatial data."
},
"geoTIFFBandIndex": {
"type": "integer",
"minimum": 1,
"description": "Band Index for this data. Required for raster geospatial data."
},
"gNSSBaseStationTypeCode": {
"type": "string",
"description": "Code from the GNSS Base Station Type enumeration"
},
"gNSSBaseSurveyTypeCode": {
"type": "string",
"description": "Code from the GNSS Base Survey Type Enumeration"
},
"gNSSCorrectionNetworkBrand": {
"type": "string",
"description": "The name or identifier of the company, organization, or service provider that operates a specific network of reference stations delivering correction data to GNSS receivers."
},
"gNSSCorrectionNetworkName": {
"type": "string",
"description": "The identifier for a specific network of base stations that provide correction data to improve the accuracy of GNSS positioning."
},
"growerId": {
"type": "string",
"description": "An id mapping to the Reference Id of a Grower"
},
"guidanceGroupId": {
"type": "string",
"description": "An id mapping to the Reference Id of a Guidance Group"
},
"guidancePatternExtensionCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Guidance Pattern Extension data type definition"
},
"guidancePatternId": {
"type": "string",
"description": "An id mapping to the Reference Id of a Guidance Pattern"
},
"guidancePatternPropagationDirectionCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Guidance Pattern Propagation Direction data type definition"
},
"guidancePatternTypeCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Guidance Pattern Type data type definition"
},
"harvestLoadIdentifier": {
"type": "string",
"description": "The textual identifier of a harvest load. E.g., \"Load 1\""
},
"heading": {
"type": "number",
"description": "Direction of heading, in arc degrees from north"
},
"highDefinitionSourceLayerId": {
"type": "string",
"description": "Mapping to a Reference Layer referencing an associated Geoparquet file containing point-by-point attributes for a simple geometry. The projection of the layer should be specified in the Geoparquet file metadata and it may vary from the associated simple geometry that must be in WGS84."
},
"idSource": {
"type": "string",
"description": "The source of the Unique Id"
},
"idSourceTypeCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Id Source Type data type definition"
},
"idText": {
"type": "string",
"description": "The actual ID of a Unique ID within a Compound ID"
},
"idTypeCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Id Type data type definition"
},
"ingredientCode": {
"type": "string",
"description": "For product components that are ingredients (i.e., no further subdivision of product component is possible), a meaningful code defining the ingredient such as a chemical formula or code from a defined vocabulary."
},
"ingredientCodeSource": {
"type": "string",
"description": "The vocabulary that defines the Ingredient Code."
},
"isActiveIngredient": {
"type": "boolean",
"description": "True for active ingredients, false for inert ingredients"
},
"isCarrier": {
"type": "boolean",
"description": "True if this component represents the primary (generally liquid) contents of a mix"
},
"isClockwise": {
"type": "boolean",
"description": "True if clockwise, false if counter-clockwise"
},
"isPassable": {
"type": "boolean",
"description": "Whether the boundary may be crossed with a vehicle, e.g., a grass waterway (true) vs. a rock pile (false)"
},
"iSO3166-2Code": {
"type": "string",
"description": "Code for a geographic region, as defined by ISO 3166-2. I.e., a two-digit code for the country, followed by a code for the subdivision. E.g., US-CA for California."
},
"keywords": {
"type": "string",
"description": "Textual strings used for identification in searches"
},
"languageCode": {
"type": "string",
"description": "A language as defined by the code in ISO 639-1, with an optional identifier for the ISO 3166-1 Alpha 2 Code for the geography. E.g. \"pt\", \"pt-BR\""
},
"layerTypeCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Layer Type data type definition"
},
"lineStrings": {
"type": "string",
"description": "One or more Line Strings in Well Known Text as a Line String or Multi Line String in WGS84 coordinates"
},
"loggingRate": {
"type": "number",
"description": "The logging rate (or sampling rate) refers to the frequency in Hertz at which the device records position data. Use 0 if the boundary was defined in a system that does not have a logging rate"
},
"lossOfGNSSRate": {
"type": "number",
"description": "A default prescribed rate for a Product should the implement lose its position signal"
},
"manufacturerId": {
"type": "string",
"description": "An id mapping to the Reference Id of a Manufacturer."
},
"maximum": {
"type": "number",
"description": "A numeric maximum"
},
"minimum": {
"type": "number",
"description": "A numeric minimum"
},
"mixOrder": {
"type": "integer",
"minimum": 1,
"description": "In what order was this component added to the mix? (1 = First).\nCan have duplicate numbers, representing a situation where two or more components are added simultaneously."
},
"name": {
"type": "string",
"description": "A short textual string by which an item is known."
},
"note": {
"type": "string",
"description": "A textual comment associated to a particular object adding contextual information."
},
"numberOfSegments": {
"type": "integer",
"description": "For an ABCurve, the number of segments in the curve"
},
"numberOfSwathsLeft": {
"type": "integer",
"description": "How many swaths a guidance pattern extends left"
},
"numberOfSwathsRight": {
"type": "integer",
"description": "How many swaths a guidance pattern extends right"
},
"numericDataTypeCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Numeric Data Type data type definition"
},
"numericValue": {
"type": "number",
"description": "A numeric value"
},
"operationTypeCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Operation Type data type definition"
},
"originatingDocumentId": {
"type": "string",
"description": "An id mapping to the Reference Id of another document from which this document results"
},
"outOfFieldRate": {
"type": "number",
"description": "Prescribed rate for the product when the implement is determined to be outside of the targeted area. Optional."
},
"parentId": {
"type": "string",
"description": "A mapping id to the Reference ID of an object of the same type defined as the logical parent of the current object."
},
"parentPartyId": {
"type": "string",
"description": "An id mapping to the Reference Id of another Party that represents the logical parent to this Party within a hierarchy."
},
"partyId": {
"type": "string",
"description": "An id mapping to the Reference Id of a Party"
},
"partyTypeCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Party Type data type definition"
},
"postalCode": {
"type": "string",
"description": "A postal code within an Address"
},
"prescribingOperationId": {
"type": "string",
"description": "Id mapping to the Reference ID of another Operation defined in this dataset representing the preliminary Operation that prescribed this Operation."
},
"productFormCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Product Form data type definition"
},
"productId": {
"type": "string",
"description": "An id mapping to the Reference Id of a Product"
},
"productStatusCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Product Status data type definition"
},
"productTypeCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Product Type data type definition"
},
"referenceId": {
"type": "string",
"description": "A string that uniquely identifies an object with a single data instance."
},
"referenceLayerId": {
"type": "string",
"description": "An id mapping to the Reference Id of a Reference Layer"
},
"roleCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Role data type definition"
},
"rootSchemaVersion": {
"type": "string",
"description": "The version of the ADAPT root schema."
},
"scope": {
"type": "string",
"description": "Name of an ADAPT Standard component to which a Data Type Definition may be applied."
},
"seasonId": {
"type": "string",
"description": "An id mapping to the Reference Id of a Season"
},
"serialNumber": {
"type": "string",
"description": "The serial number of a manufactured product"
},
"spatialRecordsFile": {
"type": "string",
"description": "A reference to the file/URL containing specific Spatial Records for this Operation, Prescription or Reference Layer. When the model is serialized to disk, this file must reside within the same directory as the ApplicationDataModel itself. Vector data must be in GeoParquet format and raster data in GeoTiff format with columns/bands ordered as specified by the File Data Index on the variable definitions."
},
"specificGravity": {
"type": "number",
"description": "A unitless specific gravity ratio"
},
"start": {
"type": "string",
"format": "date-time",
"description": "The date and time (UTC) at the start of an event."
},
"startPoint": {
"type": "string",
"description": "WKT coordinates for the start point of an object."
},
"supersededByCode": {
"type": "string",
"description": "Code identifying a different Data Type Definition or Enumeration Item that supersedes this item. Required and relevant only when the status of the current item is SUPERSEDED."
},
"telecommunicationContactTypeCode": {
"type": "string",
"description": "The code that identifies the enumeration item value from the Telecommunication Contact Type data type definition"
},
"timeZone": {
"type": "string",
"description": "Time zone identifier from the IANA/tz database, defining the local time zone at a location. May be used to interpret ADAPT's required UTC timestamps into a local times for that location."
},
"traitCode": {
"type": "string",
"description": "Code that identifies this trait"
},
"unitOfMeasureCode": {
"type": "string",
"description": "A code defining a Unit of Measure in the Adapt Unit Of Measure system"
},
"unitSystemVersion": {
"type": "string",
"description": "Version of a Unit System. Uses Semantic Versioning to identify updates to the entirety of the unit list."
},
"validationRegularExpression": {
"type": "string",
"description": "Regular Expression to be used for validation."
},
"valueText": {
"type": "string",
"description": "The value of a data element, expressed as a text string"
},
"variableId": {
"type": "string",
"description": "Mapping to a Variable"
},
"version": {
"type": "string",
"description": "A version number"
},
"aPlusAttributes": {
"description": "Relevant attributes for APlus Guidance Patterns",
"type": "object",
"properties": {
"a": {
"allOf": [
{
"$ref": "#/$defs/a"
},
{
"description": "The start (A) point. Required."
}
]
},
"heading": {
"allOf": [
{
"$ref": "#/$defs/heading"
},
{
"description": "Required."
}
]
}
},
"required": [
"a",
"heading"
]
},
"aBCurveAttributes": {
"description": "Relevant attributes for an ABCurve Guidance Pattern",
"type": "object",
"properties": {
"numberOfSegments": {
"allOf": [
{
"$ref": "#/$defs/numberOfSegments"
},
{
"description": "For an ABCurve, the number of segments in the curve"
}
]
},
"lineStrings": {
"allOf": [
{
"$ref": "#/$defs/lineStrings"
},
{
"description": "One or more line strings that compose the curve. Required."
}
]
},
"heading": {
"allOf": [
{
"$ref": "#/$defs/heading"
},
{
"description": "Optional"
}
]
}
},
"required": [
"numberOfSegments",
"lineStrings"
]
},
"aBLineAttributes": {
"description": "Relevant attributes for the ABLine guidance pattern",
"type": "object",
"properties": {
"a": {
"allOf": [
{
"$ref": "#/$defs/a"
},
{
"description": "The Start (A) point. Required."
}
]
},
"b": {
"allOf": [
{
"$ref": "#/$defs/b"
},
{
"description": "The end (B) point. Required."
}
]
},
"heading": {
"allOf": [
{
"$ref": "#/$defs/heading"
},
{
"description": "Optional"
}
]
}
},
"required": [
"a",
"b"
]
},
"addressContactMethod": {
"description": "An address for someone or something.",
"type": "object",
"properties": {
"addressLines": {
"description": "Address lines that precede the City. Street address, PO Box, etc.",
"type": "array",
"items": {
"$ref": "#/$defs/addressLine"
},
"minItems": 0
},
"city": {
"allOf": [
{
"$ref": "#/$defs/city"
},
{
"description": "The city within the Address"
}
]
},
"postalCode": {
"allOf": [
{
"$ref": "#/$defs/postalCode"
},
{
"description": "The postal code within the Address"
}
]
},
"countrySubdivision": {
"allOf": [
{
"$ref": "#/$defs/countrySubdivision"
},
{
"description": "Subdivision or region of a country such as a state or province, including entries in ISO-3166."
}
]
},
"country": {
"allOf": [
{
"$ref": "#/$defs/country"
},
{
"description": "The country defined within the Address"
}
]
},
"countryCode": {
"allOf": [
{
"$ref": "#/$defs/countryCode"
},
{
"description": "ISO 3166 alpha-2 code. Optional."
}
]
},
"addressContactTypeCode": {
"allOf": [
{
"$ref": "#/$defs/addressContactTypeCode"
},
{
"description": "The code that identifies the enumeration item value from the Address Contact Type Representation"
}
]
}
},
"required": [
"addressContactTypeCode"
]
},
"amount": {
"description": "Amount of a product component within the parent product. Valid amounts are in volume or mass per volume or mass. E.g.s, 3 floz1gal-1, 0.26 lb1lb-1, 1oz1gal-1. For ingredients, amounts may be expressed as percentages.",
"type": "object",
"properties": {
"numericValue": {
"allOf": [
{
"$ref": "#/$defs/numericValue"
},
{
"description": "The actual value of the Measurement"
}
]
},
"unitOfMeasureCode": {
"allOf": [
{
"$ref": "#/$defs/unitOfMeasureCode"
},
{
"description": "The unit of measure for the given value. Required."
}
]
}
},
"required": [
"numericValue",
"unitOfMeasureCode"
]
},
"appliedOffsets": {
"description": "For informational purposes, spatial offsets from a source point such as a GNSS receiver that have been applied by the data producer. ADAPT requires all offsets to be applied in mapped data, and this property is to be used only for geospatial data quality assessments and data provenance. In no circumstances will the data consumer need to apply these data to any geometry.",
"type": "object",
"properties": {
"xOffset": {
"allOf": [
{
"$ref": "#/$defs/xOffset"
},
{
"description": "Offset in the X (inline) direction. Positive values are forward, negative values are backward."
}
]
},
"yOffset": {
"allOf": [
{
"$ref": "#/$defs/yOffset"
},
{
"description": "Offset in the Y (lateral) direction. Positive values are right, negative values are left."
}
]
},
"zOffset": {
"allOf": [
{
"$ref": "#/$defs/zOffset"
},
{
"description": "Offset in the Z (Vertical) direction. Positive values are upward."
}
]
}
}
},
"arableArea": {
"description": "Total area of the Field that is cultivated, excluding areas such as waterways",
"type": "object",
"properties": {
"numericValue": {
"allOf": [
{
"$ref": "#/$defs/numericValue"
},
{
"description": "The actual value of the Measurement"
}
]
},
"unitOfMeasureCode": {
"allOf": [
{
"$ref": "#/$defs/unitOfMeasureCode"
},
{
"description": "The unit of measure for the given value. Required."
}
]
}
},
"required": [
"numericValue",
"unitOfMeasureCode"
]
},
"boundary": {
"description": "An unattributed geospatial definition of an enclosed region, optionally including source metadata.",
"type": "object",
"properties": {
"geometry": {
"allOf": [
{
"$ref": "#/$defs/geometry"
},
{
"description": "WKT of Polygon or Multi Polygon describing the enclosed region. Must be in EPSG 4326 (WGS84) projection. Required."
}
]
},
"boundaryCreationMethodCode": {
"allOf": [
{
"$ref": "#/$defs/boundaryCreationMethodCode"
},
{
"description": "Method used to create the boundary. Taken from BoundaryCreationMethod enumerated Data Type Definition."
}
]
},
"highDefinitionSourceLayerId": {
"allOf": [
{
"$ref": "#/$defs/highDefinitionSourceLayerId"
},
{
"description": "Mapping to a Reference Layer referencing an associated Geoparquet file containing point-by-point attributes for the source of the Geometry. The projection of the layer should be specified in the Geoparquet file metadata and it may vary from the Geometry property that must be in WGS84."
}
]
},
"gNSSBaseStationTypeCode": {
"allOf": [
{
"$ref": "#/$defs/gNSSBaseStationTypeCode"
},
{
"description": "Code from the GNSS Base Station Type enumeration"
}
]
},
"gNSSBaseSurveyTypeCode": {
"allOf": [
{
"$ref": "#/$defs/gNSSBaseSurveyTypeCode"
},
{
"description": "Code from the GNSS Base Survey Type Enumeration"
}
]
},
"gNSSCorrectionNetworkName": {
"allOf": [
{
"$ref": "#/$defs/gNSSCorrectionNetworkName"
},
{
"description": "The identifier for a specific network of base stations that provide correction data to improve the accuracy of GNSS positioning."
}
]
},
"gNSSCorrectionNetworkBrand": {
"allOf": [
{
"$ref": "#/$defs/gNSSCorrectionNetworkBrand"
},
{
"description": "The name or identifier of the company, organization, or service provider that operates a specific network of reference stations delivering correction data to GNSS receivers."
}
]
},
"gNSSReceiverMetadata": {
"allOf": [
{
"$ref": "#/$defs/gNSSReceiverMetadata"
},
{
"description": "Information about the GNSS receiver used to record spatial data."
}
]
},
"gNSSMobileBaseStationMetadata": {
"allOf": [
{
"$ref": "#/$defs/gNSSMobileBaseStationMetadata"
},
{
"description": "Information about the GNSS Base Station used in the collection of spatial data"
}
]
},
"gNSSDataQualityMetrics": {
"description": "Collection of metrics supplied to document the quality of a GNSS dataset. Comprised of Data Types scoped at the GNSS Data Quality Metrics component.",
"type": "array",
"items": {
"$ref": "#/$defs/gNSSDataQualityMetric"
},
"minItems": 0
},
"partyRoles": {
"description": "Definition of parties involved in the boundary creation. PartyRole code COLLECTOR is intended to define the party that drove or \"collected\" the data for the boundary.",
"type": "array",
"items": {
"$ref": "#/$defs/partyRole"
},
"minItems": 0
}
},
"required": [
"geometry"
]
},
"brand": {
"description": "A trade name under which a Manufacturer markets a good. Also known as Make in vehicles/equipment.",
"type": "object",
"properties": {
"id": {
"allOf": [
{
"$ref": "#/$defs/id"
},
{
"description": "Identification entity that defines both an integer instance id (as a primary key) and a collection of persistent identifiers"
}
]
},
"name": {
"allOf": [
{
"$ref": "#/$defs/name"
},
{
"description": "The name of this item. Required."
}
]
},
"description": {
"allOf": [
{
"$ref": "#/$defs/description"
},
{
"description": "A string that describes an object, likely containing more contextual information than a Name. Optional."
}
]
},
"contextItems": {
"description": "List of supplemental information for this data element",
"type": "array",
"items": {
"$ref": "#/$defs/contextItem"
},
"minItems": 0
},
"manufacturerId": {
"allOf": [
{
"$ref": "#/$defs/manufacturerId"
},
{
"description": "Optional mapping to Manufacturer"
}
]
}
},
"required": [
"id",
"name"
]
},
"catalog": {
"description": "Container for data types that are fixed, infrequently changing, or otherwise prerequisite to transactional data. Master or Reference data, often called Setup or Coding data in agricultural applications.",
"type": "object",
"properties": {
"description": {
"allOf": [
{
"$ref": "#/$defs/description"
},
{
"description": "A string that describes an object, likely containing more contextual information than a Name. Optional."
}
]
},
"brands": {
"description": "All Brands in the data",
"type": "array",
"items": {
"$ref": "#/$defs/brand"
},
"minItems": 0
},
"crops": {
"description": "All Crops in the data",
"type": "array",
"items": {