hestia-earth-models 0.64.7__py3-none-any.whl → 0.64.9__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of hestia-earth-models might be problematic. Click here for more details.

Files changed (58) hide show
  1. hestia_earth/models/cycle/animal/milkYield.py +10 -22
  2. hestia_earth/models/cycle/siteArea.py +2 -1
  3. hestia_earth/models/cycle/unknownPreSeasonWaterRegime.py +0 -1
  4. hestia_earth/models/environmentalFootprintV3/soilQualityIndexLandOccupation.py +73 -82
  5. hestia_earth/models/environmentalFootprintV3/soilQualityIndexLandTransformation.py +168 -0
  6. hestia_earth/models/environmentalFootprintV3/soilQualityIndexTotalLandUseEffects.py +77 -0
  7. hestia_earth/models/environmentalFootprintV3/utils.py +1 -1
  8. hestia_earth/models/faostat2018/landTransformationFromCropland100YearAverage.py +3 -2
  9. hestia_earth/models/faostat2018/landTransformationFromCropland20YearAverage.py +3 -2
  10. hestia_earth/models/frischknechtEtAl2000/ionisingRadiationKbqU235Eq.py +69 -37
  11. hestia_earth/models/hyde32/utils.py +4 -0
  12. hestia_earth/models/ipcc2019/animal/fatContent.py +38 -0
  13. hestia_earth/models/ipcc2019/animal/liveweightGain.py +3 -54
  14. hestia_earth/models/ipcc2019/animal/liveweightPerHead.py +3 -54
  15. hestia_earth/models/ipcc2019/animal/pastureGrass.py +3 -1
  16. hestia_earth/models/ipcc2019/animal/pregnancyRateTotal.py +38 -0
  17. hestia_earth/models/ipcc2019/animal/trueProteinContent.py +38 -0
  18. hestia_earth/models/ipcc2019/animal/utils.py +87 -3
  19. hestia_earth/models/ipcc2019/animal/weightAtMaturity.py +4 -10
  20. hestia_earth/models/ipcc2019/co2ToAirAboveGroundBiomassStockChangeLandUseChange.py +191 -0
  21. hestia_earth/models/ipcc2019/co2ToAirBelowGroundBiomassStockChangeLandUseChange.py +204 -0
  22. hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py +255 -35
  23. hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChangeManagementChange.py +63 -149
  24. hestia_earth/models/ipcc2019/pastureGrass.py +3 -1
  25. hestia_earth/models/mocking/search-results.json +2026 -26
  26. hestia_earth/models/pooreNemecek2018/landOccupationDuringCycle.py +1 -1
  27. hestia_earth/models/poschEtAl2008/terrestrialAcidificationPotentialAccumulatedExceedance.py +4 -1
  28. hestia_earth/models/poschEtAl2008/terrestrialEutrophicationPotentialAccumulatedExceedance.py +4 -1
  29. hestia_earth/models/site/management.py +3 -5
  30. hestia_earth/models/utils/__init__.py +5 -4
  31. hestia_earth/models/utils/impact_assessment.py +13 -4
  32. hestia_earth/models/utils/input.py +5 -2
  33. hestia_earth/models/utils/site.py +4 -2
  34. hestia_earth/models/version.py +1 -1
  35. {hestia_earth_models-0.64.7.dist-info → hestia_earth_models-0.64.9.dist-info}/METADATA +2 -2
  36. {hestia_earth_models-0.64.7.dist-info → hestia_earth_models-0.64.9.dist-info}/RECORD +58 -44
  37. tests/models/cycle/animal/test_milkYield.py +1 -14
  38. tests/models/environmentalFootprintV3/test_soilQualityIndexLandOccupation.py +97 -66
  39. tests/models/environmentalFootprintV3/test_soilQualityIndexLandTransformation.py +176 -0
  40. tests/models/environmentalFootprintV3/test_soilQualityIndexTotalLandUseEffects.py +55 -0
  41. tests/models/frischknechtEtAl2000/test_ionisingRadiationKbqU235Eq.py +67 -44
  42. tests/models/ipcc2019/animal/test_fatContent.py +22 -0
  43. tests/models/ipcc2019/animal/test_liveweightGain.py +4 -2
  44. tests/models/ipcc2019/animal/test_liveweightPerHead.py +4 -2
  45. tests/models/ipcc2019/animal/test_pregnancyRateTotal.py +22 -0
  46. tests/models/ipcc2019/animal/test_trueProteinContent.py +22 -0
  47. tests/models/ipcc2019/animal/test_weightAtMaturity.py +2 -1
  48. tests/models/ipcc2019/test_co2ToAirAboveGroundBiomassStockChangeLandUseChange.py +83 -0
  49. tests/models/ipcc2019/test_co2ToAirBelowGroundBiomassStockChangeLandUseChange.py +83 -0
  50. tests/models/ipcc2019/test_co2ToAirCarbonStockChange_utils.py +6 -6
  51. tests/models/ipcc2019/test_co2ToAirSoilOrganicCarbonStockChangeManagementChange.py +5 -4
  52. tests/models/poschEtAl2008/test_terrestrialAcidificationPotentialAccumulatedExceedance.py +30 -17
  53. tests/models/poschEtAl2008/test_terrestrialEutrophicationPotentialAccumulatedExceedance.py +28 -14
  54. tests/models/site/test_management.py +4 -1
  55. tests/models/utils/test_input.py +65 -1
  56. {hestia_earth_models-0.64.7.dist-info → hestia_earth_models-0.64.9.dist-info}/LICENSE +0 -0
  57. {hestia_earth_models-0.64.7.dist-info → hestia_earth_models-0.64.9.dist-info}/WHEEL +0 -0
  58. {hestia_earth_models-0.64.7.dist-info → hestia_earth_models-0.64.9.dist-info}/top_level.txt +0 -0
@@ -4,7 +4,1164 @@
4
4
  "query": {
5
5
  "termType.keyword": "emission"
6
6
  },
7
- "results": []
7
+ "results": [
8
+ {
9
+ "@type": "Term",
10
+ "@id": "trichlorofluoromethaneToAirIndustrialProcesses"
11
+ },
12
+ {
13
+ "@type": "Term",
14
+ "@id": "chloropentafluoroethaneToAirInputsProduction"
15
+ },
16
+ {
17
+ "@type": "Term",
18
+ "@id": "po43ToSurfaceWaterInputsProduction"
19
+ },
20
+ {
21
+ "@type": "Term",
22
+ "@id": "nitriteToAirInputsProduction"
23
+ },
24
+ {
25
+ "@type": "Term",
26
+ "@id": "pm25ToAirAnimalHousing"
27
+ },
28
+ {
29
+ "@type": "Term",
30
+ "@id": "12DibromotetrafluoroethaneToAirIndustrialProcesses"
31
+ },
32
+ {
33
+ "@type": "Term",
34
+ "@id": "22Dichloro111TrifluoroethaneToAirInputsProduction"
35
+ },
36
+ {
37
+ "@type": "Term",
38
+ "@id": "33Dichloro11122PentafluoropropaneToAirIndustrialProcesses"
39
+ },
40
+ {
41
+ "@type": "Term",
42
+ "@id": "po43ToSurfaceWaterSoilFlux"
43
+ },
44
+ {
45
+ "@type": "Term",
46
+ "@id": "22Dichloro111TrifluoroethaneToAirIndustrialProcesses"
47
+ },
48
+ {
49
+ "@type": "Term",
50
+ "@id": "noToAirWasteTreatment"
51
+ },
52
+ {
53
+ "@type": "Term",
54
+ "@id": "nmvocToAirAnimalHousing"
55
+ },
56
+ {
57
+ "@type": "Term",
58
+ "@id": "pesticideToWaterPesticideApplication"
59
+ },
60
+ {
61
+ "@type": "Term",
62
+ "@id": "so2ToAirIndustrialProcesses"
63
+ },
64
+ {
65
+ "@type": "Term",
66
+ "@id": "no3ToAirIndustrialProcesses"
67
+ },
68
+ {
69
+ "@type": "Term",
70
+ "@id": "pesticideToWaterInputsProduction"
71
+ },
72
+ {
73
+ "@type": "Term",
74
+ "@id": "nmvocToAirExcreta"
75
+ },
76
+ {
77
+ "@type": "Term",
78
+ "@id": "nmvocToAirSilageStorage"
79
+ },
80
+ {
81
+ "@type": "Term",
82
+ "@id": "n2OToAirCropResidueDecompositionDirect"
83
+ },
84
+ {
85
+ "@type": "Term",
86
+ "@id": "so3ToAirIndustrialProcesses"
87
+ },
88
+ {
89
+ "@type": "Term",
90
+ "@id": "pesticideToHarvestedCropInputsProduction"
91
+ },
92
+ {
93
+ "@type": "Term",
94
+ "@id": "nh4ToGroundwaterOrganicFertiliser"
95
+ },
96
+ {
97
+ "@type": "Term",
98
+ "@id": "pToGroundwaterSoilFlux"
99
+ },
100
+ {
101
+ "@type": "Term",
102
+ "@id": "dibromodifluoromethaneToAirInputsProduction"
103
+ },
104
+ {
105
+ "@type": "Term",
106
+ "@id": "noxToAirInorganicFertiliser"
107
+ },
108
+ {
109
+ "@type": "Term",
110
+ "@id": "bromomethaneToAirIndustrialProcesses"
111
+ },
112
+ {
113
+ "@type": "Term",
114
+ "@id": "bromomethaneToAirInputsProduction"
115
+ },
116
+ {
117
+ "@type": "Term",
118
+ "@id": "pToSurfaceWaterSoilFlux"
119
+ },
120
+ {
121
+ "@type": "Term",
122
+ "@id": "nh3ToAirInputsProduction"
123
+ },
124
+ {
125
+ "@type": "Term",
126
+ "@id": "noxToAirFuelCombustion"
127
+ },
128
+ {
129
+ "@type": "Term",
130
+ "@id": "co2ToAirSoilOrganicCarbonStockChangeLandUseChange"
131
+ },
132
+ {
133
+ "@type": "Term",
134
+ "@id": "ch4ToAirIndustrialProcessesNonFossil"
135
+ },
136
+ {
137
+ "@type": "Term",
138
+ "@id": "co2ToAirSoilInorganicCarbonStockChangeLandUseChange"
139
+ },
140
+ {
141
+ "@type": "Term",
142
+ "@id": "co2ToAirSoilFlux"
143
+ },
144
+ {
145
+ "@type": "Term",
146
+ "@id": "n2ToAirOrganicFertiliser"
147
+ },
148
+ {
149
+ "@type": "Term",
150
+ "@id": "ch4ToAirOrganicSoilCultivation"
151
+ },
152
+ {
153
+ "@type": "Term",
154
+ "@id": "ch4ToAirWasteTreatment"
155
+ },
156
+ {
157
+ "@type": "Term",
158
+ "@id": "ch4ToAirFuelCombustion"
159
+ },
160
+ {
161
+ "@type": "Term",
162
+ "@id": "n2ToAirExcreta"
163
+ },
164
+ {
165
+ "@type": "Term",
166
+ "@id": "co2ToAirAboveGroundBiomassStockChangeLandUseChange"
167
+ },
168
+ {
169
+ "@type": "Term",
170
+ "@id": "n2OToAirCropResidueBurningIndirect"
171
+ },
172
+ {
173
+ "@type": "Term",
174
+ "@id": "co2ToAirDeadOrganicMatterStockChangeLandUseChange"
175
+ },
176
+ {
177
+ "@type": "Term",
178
+ "@id": "nh3ToAirFuelCombustion"
179
+ },
180
+ {
181
+ "@type": "Term",
182
+ "@id": "noToAirSoilFlux"
183
+ },
184
+ {
185
+ "@type": "Term",
186
+ "@id": "co2ToAirSoilOrganicCarbonStockChangeManagementChange"
187
+ },
188
+ {
189
+ "@type": "Term",
190
+ "@id": "noxToAirOrganicSoilCultivation"
191
+ },
192
+ {
193
+ "@type": "Term",
194
+ "@id": "n2OToAirFuelCombustionDirect"
195
+ },
196
+ {
197
+ "@type": "Term",
198
+ "@id": "nh4ToGroundwaterInorganicFertiliser"
199
+ },
200
+ {
201
+ "@type": "Term",
202
+ "@id": "noxToAirCropResidueDecomposition"
203
+ },
204
+ {
205
+ "@type": "Term",
206
+ "@id": "nToSurfaceWaterAquacultureSystems"
207
+ },
208
+ {
209
+ "@type": "Term",
210
+ "@id": "noToAirAquacultureSystems"
211
+ },
212
+ {
213
+ "@type": "Term",
214
+ "@id": "n2OToAirInputsProduction"
215
+ },
216
+ {
217
+ "@type": "Term",
218
+ "@id": "n2OToAirExcretaDirect"
219
+ },
220
+ {
221
+ "@type": "Term",
222
+ "@id": "1Chloro11DifluoroethaneToAirInputsProduction"
223
+ },
224
+ {
225
+ "@type": "Term",
226
+ "@id": "112TrichlorotrifluoroethaneToAirIndustrialProcesses"
227
+ },
228
+ {
229
+ "@type": "Term",
230
+ "@id": "chloromethaneToAirInputsProduction"
231
+ },
232
+ {
233
+ "@type": "Term",
234
+ "@id": "n2OToAirIndustrialProcessesDirect"
235
+ },
236
+ {
237
+ "@type": "Term",
238
+ "@id": "noToAirInorganicFertiliser"
239
+ },
240
+ {
241
+ "@type": "Term",
242
+ "@id": "n2OToAirWasteTreatmentIndirect"
243
+ },
244
+ {
245
+ "@type": "Term",
246
+ "@id": "trichlorofluoromethaneToAirInputsProduction"
247
+ },
248
+ {
249
+ "@type": "Term",
250
+ "@id": "n2OToAirDiminishingSoilCarbonStocksManagementChangeDirect"
251
+ },
252
+ {
253
+ "@type": "Term",
254
+ "@id": "nitriteToWaterIndustrialProcesses"
255
+ },
256
+ {
257
+ "@type": "Term",
258
+ "@id": "po43ToSurfaceWaterInorganicFertiliser"
259
+ },
260
+ {
261
+ "@type": "Term",
262
+ "@id": "hydroxylamineToAirInputsProduction"
263
+ },
264
+ {
265
+ "@type": "Term",
266
+ "@id": "no3ToGroundwaterIndustrialProcesses"
267
+ },
268
+ {
269
+ "@type": "Term",
270
+ "@id": "no3ToGroundwaterInorganicFertiliser"
271
+ },
272
+ {
273
+ "@type": "Term",
274
+ "@id": "pToGroundwaterIndustrialProcesses"
275
+ },
276
+ {
277
+ "@type": "Term",
278
+ "@id": "bod5ToWaterInputsProduction"
279
+ },
280
+ {
281
+ "@type": "Term",
282
+ "@id": "pesticideToAirInputsProduction"
283
+ },
284
+ {
285
+ "@type": "Term",
286
+ "@id": "11DichlorotetrafluoroethaneToAirIndustrialProcesses"
287
+ },
288
+ {
289
+ "@type": "Term",
290
+ "@id": "pesticideToSoilPesticideApplication"
291
+ },
292
+ {
293
+ "@type": "Term",
294
+ "@id": "33Dichloro11122PentafluoropropaneToAirInputsProduction"
295
+ },
296
+ {
297
+ "@type": "Term",
298
+ "@id": "codToWaterIndustrialProcesses"
299
+ },
300
+ {
301
+ "@type": "Term",
302
+ "@id": "nitriteToAirIndustrialProcesses"
303
+ },
304
+ {
305
+ "@type": "Term",
306
+ "@id": "hcfc124ToAirIndustrialProcesses"
307
+ },
308
+ {
309
+ "@type": "Term",
310
+ "@id": "pm10ToAirIndustrialProcesses"
311
+ },
312
+ {
313
+ "@type": "Term",
314
+ "@id": "sf6ToAirInputsProduction"
315
+ },
316
+ {
317
+ "@type": "Term",
318
+ "@id": "nf3ToAirIndustrialProcesses"
319
+ },
320
+ {
321
+ "@type": "Term",
322
+ "@id": "nh3ToAirCropResidueDecomposition"
323
+ },
324
+ {
325
+ "@type": "Term",
326
+ "@id": "dichlorodifluoromethaneToAirInputsProduction"
327
+ },
328
+ {
329
+ "@type": "Term",
330
+ "@id": "blackCarbonToAirInputsProduction"
331
+ },
332
+ {
333
+ "@type": "Term",
334
+ "@id": "bromochlorodifluoromethaneToAirInputsProduction"
335
+ },
336
+ {
337
+ "@type": "Term",
338
+ "@id": "chloropentafluoroethaneToAirIndustrialProcesses"
339
+ },
340
+ {
341
+ "@type": "Term",
342
+ "@id": "nh4ToGroundwaterExcreta"
343
+ },
344
+ {
345
+ "@type": "Term",
346
+ "@id": "nh3ToAirOrganicSoilCultivation"
347
+ },
348
+ {
349
+ "@type": "Term",
350
+ "@id": "nToSurfaceWaterSoilFlux"
351
+ },
352
+ {
353
+ "@type": "Term",
354
+ "@id": "noToAirExcreta"
355
+ },
356
+ {
357
+ "@type": "Term",
358
+ "@id": "pToDrainageWaterSoilFlux"
359
+ },
360
+ {
361
+ "@type": "Term",
362
+ "@id": "n2OToAirDiminishingSoilCarbonStocksLandUseChangeDirect"
363
+ },
364
+ {
365
+ "@type": "Term",
366
+ "@id": "n2OToAirCropResidueDecompositionIndirect"
367
+ },
368
+ {
369
+ "@type": "Term",
370
+ "@id": "ionisingCompoundsToSaltwaterInputsProduction"
371
+ },
372
+ {
373
+ "@type": "Term",
374
+ "@id": "n2ToAirWasteTreatment"
375
+ },
376
+ {
377
+ "@type": "Term",
378
+ "@id": "co2ToAirUreaHydrolysis"
379
+ },
380
+ {
381
+ "@type": "Term",
382
+ "@id": "co2ToAirBelowGroundBiomassStockChangeManagementChange"
383
+ },
384
+ {
385
+ "@type": "Term",
386
+ "@id": "po43ToGroundwaterInorganicFertiliser"
387
+ },
388
+ {
389
+ "@type": "Term",
390
+ "@id": "pm02ToAirInputsProduction"
391
+ },
392
+ {
393
+ "@type": "Term",
394
+ "@id": "tspToAirInputsProduction"
395
+ },
396
+ {
397
+ "@type": "Term",
398
+ "@id": "pErosionSoilFlux"
399
+ },
400
+ {
401
+ "@type": "Term",
402
+ "@id": "n2OToAirNaturalVegetationBurningIndirect"
403
+ },
404
+ {
405
+ "@type": "Term",
406
+ "@id": "halothaneToAirIndustrialProcesses"
407
+ },
408
+ {
409
+ "@type": "Term",
410
+ "@id": "1112TetrafluoroethaneToAirIndustrialProcesses"
411
+ },
412
+ {
413
+ "@type": "Term",
414
+ "@id": "no3ToGroundwaterInputsProduction"
415
+ },
416
+ {
417
+ "@type": "Term",
418
+ "@id": "pesticideToHarvestedCropPesticideApplication"
419
+ },
420
+ {
421
+ "@type": "Term",
422
+ "@id": "dibromodifluoromethaneToAirIndustrialProcesses"
423
+ },
424
+ {
425
+ "@type": "Term",
426
+ "@id": "112TrichloroethaneToAirInputsProduction"
427
+ },
428
+ {
429
+ "@type": "Term",
430
+ "@id": "blackCarbonToAirIndustrialProcesses"
431
+ },
432
+ {
433
+ "@type": "Term",
434
+ "@id": "tspToAirIndustrialProcesses"
435
+ },
436
+ {
437
+ "@type": "Term",
438
+ "@id": "nh3ToAirSoilFlux"
439
+ },
440
+ {
441
+ "@type": "Term",
442
+ "@id": "chloromethaneToAirIndustrialProcesses"
443
+ },
444
+ {
445
+ "@type": "Term",
446
+ "@id": "11Dichloro1FluoroethaneToAirIndustrialProcesses"
447
+ },
448
+ {
449
+ "@type": "Term",
450
+ "@id": "nmvocToAirSilageFeeding"
451
+ },
452
+ {
453
+ "@type": "Term",
454
+ "@id": "tspToAirFuelCombustion"
455
+ },
456
+ {
457
+ "@type": "Term",
458
+ "@id": "pm10ToAirAnimalHousing"
459
+ },
460
+ {
461
+ "@type": "Term",
462
+ "@id": "noxToAirInputsProduction"
463
+ },
464
+ {
465
+ "@type": "Term",
466
+ "@id": "pm0225ToAirIndustrialProcesses"
467
+ },
468
+ {
469
+ "@type": "Term",
470
+ "@id": "pToSurfaceWaterAquacultureSystems"
471
+ },
472
+ {
473
+ "@type": "Term",
474
+ "@id": "n2OToAirInorganicFertiliserDirect"
475
+ },
476
+ {
477
+ "@type": "Term",
478
+ "@id": "12DibromotetrafluoroethaneToAirInputsProduction"
479
+ },
480
+ {
481
+ "@type": "Term",
482
+ "@id": "nToSurfaceWaterExcreta"
483
+ },
484
+ {
485
+ "@type": "Term",
486
+ "@id": "no3ToGroundwaterOrganicFertiliser"
487
+ },
488
+ {
489
+ "@type": "Term",
490
+ "@id": "pm10ToAirInputsProduction"
491
+ },
492
+ {
493
+ "@type": "Term",
494
+ "@id": "blackCarbonToAirFuelCombustion"
495
+ },
496
+ {
497
+ "@type": "Term",
498
+ "@id": "nf3ToAirInputsProduction"
499
+ },
500
+ {
501
+ "@type": "Term",
502
+ "@id": "hexaneToAirInputsProduction"
503
+ },
504
+ {
505
+ "@type": "Term",
506
+ "@id": "co2ToAirCropResidueDecomposition"
507
+ },
508
+ {
509
+ "@type": "Term",
510
+ "@id": "po43ToGroundwaterInputsProduction"
511
+ },
512
+ {
513
+ "@type": "Term",
514
+ "@id": "noxToAirOrganicSoilBurning"
515
+ },
516
+ {
517
+ "@type": "Term",
518
+ "@id": "nmvocToAirWasteTreatment"
519
+ },
520
+ {
521
+ "@type": "Term",
522
+ "@id": "n2OToAirOrganicFertiliserDirect"
523
+ },
524
+ {
525
+ "@type": "Term",
526
+ "@id": "nh3ToAirOrganicFertiliser"
527
+ },
528
+ {
529
+ "@type": "Term",
530
+ "@id": "h2SToAirInputsProduction"
531
+ },
532
+ {
533
+ "@type": "Term",
534
+ "@id": "noxToAirExcreta"
535
+ },
536
+ {
537
+ "@type": "Term",
538
+ "@id": "co2ToAirWasteTreatment"
539
+ },
540
+ {
541
+ "@type": "Term",
542
+ "@id": "n2OToAirExcretaIndirect"
543
+ },
544
+ {
545
+ "@type": "Term",
546
+ "@id": "pToGroundwaterInputsProduction"
547
+ },
548
+ {
549
+ "@type": "Term",
550
+ "@id": "nh3ToAirWasteTreatment"
551
+ },
552
+ {
553
+ "@type": "Term",
554
+ "@id": "po43ToSurfaceWaterAquacultureSystems"
555
+ },
556
+ {
557
+ "@type": "Term",
558
+ "@id": "nh4ToSurfaceWaterInputsProduction"
559
+ },
560
+ {
561
+ "@type": "Term",
562
+ "@id": "pesticideToSoilInputsProduction"
563
+ },
564
+ {
565
+ "@type": "Term",
566
+ "@id": "112TrichlorotrifluoroethaneToAirInputsProduction"
567
+ },
568
+ {
569
+ "@type": "Term",
570
+ "@id": "po43ToSurfaceWaterIndustrialProcesses"
571
+ },
572
+ {
573
+ "@type": "Term",
574
+ "@id": "bromodifluoromethaneToAirIndustrialProcesses"
575
+ },
576
+ {
577
+ "@type": "Term",
578
+ "@id": "dichlorotetrafluoroethaneToAirInputsProduction"
579
+ },
580
+ {
581
+ "@type": "Term",
582
+ "@id": "nh4ToGroundwaterSoilFlux"
583
+ },
584
+ {
585
+ "@type": "Term",
586
+ "@id": "n2OToAirNaturalVegetationBurningDirect"
587
+ },
588
+ {
589
+ "@type": "Term",
590
+ "@id": "soxToAirInputsProduction"
591
+ },
592
+ {
593
+ "@type": "Term",
594
+ "@id": "no3ToSurfaceWaterInputsProduction"
595
+ },
596
+ {
597
+ "@type": "Term",
598
+ "@id": "pm25ToAirCropResidueBurning"
599
+ },
600
+ {
601
+ "@type": "Term",
602
+ "@id": "ch4ToAirEntericFermentation"
603
+ },
604
+ {
605
+ "@type": "Term",
606
+ "@id": "co2ToAirFuelCombustion"
607
+ },
608
+ {
609
+ "@type": "Term",
610
+ "@id": "ch4ToAirReservoirs"
611
+ },
612
+ {
613
+ "@type": "Term",
614
+ "@id": "ch4ToAirInputsProductionNonFossil"
615
+ },
616
+ {
617
+ "@type": "Term",
618
+ "@id": "co2ToAirOrganicSoilCultivation"
619
+ },
620
+ {
621
+ "@type": "Term",
622
+ "@id": "ch4ToAirCropResidueDecomposition"
623
+ },
624
+ {
625
+ "@type": "Term",
626
+ "@id": "ch4ToAirFloodedRice"
627
+ },
628
+ {
629
+ "@type": "Term",
630
+ "@id": "ch4ToAirInputsProductionFossil"
631
+ },
632
+ {
633
+ "@type": "Term",
634
+ "@id": "n2ToAirCropResidueDecomposition"
635
+ },
636
+ {
637
+ "@type": "Term",
638
+ "@id": "co2ToAirAboveGroundBiomassStockChangeManagementChange"
639
+ },
640
+ {
641
+ "@type": "Term",
642
+ "@id": "n2ToAirInorganicFertiliser"
643
+ },
644
+ {
645
+ "@type": "Term",
646
+ "@id": "pToDrainageWaterIndustrialProcesses"
647
+ },
648
+ {
649
+ "@type": "Term",
650
+ "@id": "co2ToAirBelowGroundBiomassStockChangeLandUseChange"
651
+ },
652
+ {
653
+ "@type": "Term",
654
+ "@id": "nh3ToAirAquacultureSystems"
655
+ },
656
+ {
657
+ "@type": "Term",
658
+ "@id": "n2OToAirInorganicFertiliserIndirect"
659
+ },
660
+ {
661
+ "@type": "Term",
662
+ "@id": "noToAirCropResidueDecomposition"
663
+ },
664
+ {
665
+ "@type": "Term",
666
+ "@id": "nh4ToGroundwaterCropResidueDecomposition"
667
+ },
668
+ {
669
+ "@type": "Term",
670
+ "@id": "nh4ToGroundwaterInputsProduction"
671
+ },
672
+ {
673
+ "@type": "Term",
674
+ "@id": "nh3ToAirExcreta"
675
+ },
676
+ {
677
+ "@type": "Term",
678
+ "@id": "po43ToGroundwaterOrganicFertiliser"
679
+ },
680
+ {
681
+ "@type": "Term",
682
+ "@id": "po43ToGroundwaterSoilFlux"
683
+ },
684
+ {
685
+ "@type": "Term",
686
+ "@id": "nh3ToAirInorganicFertiliser"
687
+ },
688
+ {
689
+ "@type": "Term",
690
+ "@id": "nToSurfaceWaterIndustrialProcesses"
691
+ },
692
+ {
693
+ "@type": "Term",
694
+ "@id": "no3ToSurfaceWaterAquacultureSystems"
695
+ },
696
+ {
697
+ "@type": "Term",
698
+ "@id": "noxToAirSoilFlux"
699
+ },
700
+ {
701
+ "@type": "Term",
702
+ "@id": "nh3ToAirCropResidueBurning"
703
+ },
704
+ {
705
+ "@type": "Term",
706
+ "@id": "dichlorodifluoromethaneToAirIndustrialProcesses"
707
+ },
708
+ {
709
+ "@type": "Term",
710
+ "@id": "noxToAirWasteTreatment"
711
+ },
712
+ {
713
+ "@type": "Term",
714
+ "@id": "co2ToAirNaturalVegetationBurning"
715
+ },
716
+ {
717
+ "@type": "Term",
718
+ "@id": "pToSurfaceWaterInputsProduction"
719
+ },
720
+ {
721
+ "@type": "Term",
722
+ "@id": "11Dichloro1FluoroethaneToAirInputsProduction"
723
+ },
724
+ {
725
+ "@type": "Term",
726
+ "@id": "pm0225ToAirInputsProduction"
727
+ },
728
+ {
729
+ "@type": "Term",
730
+ "@id": "po43ToSurfaceWaterOrganicFertiliser"
731
+ },
732
+ {
733
+ "@type": "Term",
734
+ "@id": "n2OToAirFuelCombustionIndirect"
735
+ },
736
+ {
737
+ "@type": "Term",
738
+ "@id": "noxToAirIndustrialProcesses"
739
+ },
740
+ {
741
+ "@type": "Term",
742
+ "@id": "tefluraneToAirIndustrialProcesses"
743
+ },
744
+ {
745
+ "@type": "Term",
746
+ "@id": "n2OToAirOrganicSoilBurningDirect"
747
+ },
748
+ {
749
+ "@type": "Term",
750
+ "@id": "chlorodifluoromethaneToAirIndustrialProcesses"
751
+ },
752
+ {
753
+ "@type": "Term",
754
+ "@id": "codToWaterInputsProduction"
755
+ },
756
+ {
757
+ "@type": "Term",
758
+ "@id": "co2ToAirDeadOrganicMatterStockChangeManagementChange"
759
+ },
760
+ {
761
+ "@type": "Term",
762
+ "@id": "ch4ToAirAquacultureSystems"
763
+ },
764
+ {
765
+ "@type": "Term",
766
+ "@id": "ch4ToAirOrganicSoilBurning"
767
+ },
768
+ {
769
+ "@type": "Term",
770
+ "@id": "h2SToAirIndustrialProcesses"
771
+ },
772
+ {
773
+ "@type": "Term",
774
+ "@id": "co2ToAirLimeHydrolysis"
775
+ },
776
+ {
777
+ "@type": "Term",
778
+ "@id": "n2OToAirAquacultureSystemsIndirect"
779
+ },
780
+ {
781
+ "@type": "Term",
782
+ "@id": "ionisingCompoundsToWaterInputsProduction"
783
+ },
784
+ {
785
+ "@type": "Term",
786
+ "@id": "coToAirIndustrialProcesses"
787
+ },
788
+ {
789
+ "@type": "Term",
790
+ "@id": "n2OToAirCropResidueBurningDirect"
791
+ },
792
+ {
793
+ "@type": "Term",
794
+ "@id": "h2SToAirWasteTreatment"
795
+ },
796
+ {
797
+ "@type": "Term",
798
+ "@id": "ch4ToAirCropResidueBurning"
799
+ },
800
+ {
801
+ "@type": "Term",
802
+ "@id": "co2ToAirOrganicSoilBurning"
803
+ },
804
+ {
805
+ "@type": "Term",
806
+ "@id": "ch4ToAirNaturalVegetationBurning"
807
+ },
808
+ {
809
+ "@type": "Term",
810
+ "@id": "co2ToAirInputsProduction"
811
+ },
812
+ {
813
+ "@type": "Term",
814
+ "@id": "bromofluoroformToAirInputsProduction"
815
+ },
816
+ {
817
+ "@type": "Term",
818
+ "@id": "nitriteToWaterInputsProduction"
819
+ },
820
+ {
821
+ "@type": "Term",
822
+ "@id": "po43ToGroundwaterIndustrialProcesses"
823
+ },
824
+ {
825
+ "@type": "Term",
826
+ "@id": "n2OToAirOrganicFertiliserIndirect"
827
+ },
828
+ {
829
+ "@type": "Term",
830
+ "@id": "soxToAirFuelCombustion"
831
+ },
832
+ {
833
+ "@type": "Term",
834
+ "@id": "11DichlorotetrafluoroethaneToAirInputsProduction"
835
+ },
836
+ {
837
+ "@type": "Term",
838
+ "@id": "noToAirCropResidueBurning"
839
+ },
840
+ {
841
+ "@type": "Term",
842
+ "@id": "halothaneToAirInputsProduction"
843
+ },
844
+ {
845
+ "@type": "Term",
846
+ "@id": "nmvocToAirInputsProduction"
847
+ },
848
+ {
849
+ "@type": "Term",
850
+ "@id": "bromochlorodifluoromethaneToAirIndustrialProcesses"
851
+ },
852
+ {
853
+ "@type": "Term",
854
+ "@id": "bromofluoroformToAirIndustrialProcesses"
855
+ },
856
+ {
857
+ "@type": "Term",
858
+ "@id": "n2OToAirWasteTreatmentDirect"
859
+ },
860
+ {
861
+ "@type": "Term",
862
+ "@id": "carbonTetrachlorideToAirIndustrialProcesses"
863
+ },
864
+ {
865
+ "@type": "Term",
866
+ "@id": "pToDrainageWaterInputsProduction"
867
+ },
868
+ {
869
+ "@type": "Term",
870
+ "@id": "pm25ToAirIndustrialProcesses"
871
+ },
872
+ {
873
+ "@type": "Term",
874
+ "@id": "pm25ToAirInputsProduction"
875
+ },
876
+ {
877
+ "@type": "Term",
878
+ "@id": "13Dichloro11223PentafluoropropaneToAirInputsProduction"
879
+ },
880
+ {
881
+ "@type": "Term",
882
+ "@id": "bod5ToWaterIndustrialProcesses"
883
+ },
884
+ {
885
+ "@type": "Term",
886
+ "@id": "noToAirInputsProduction"
887
+ },
888
+ {
889
+ "@type": "Term",
890
+ "@id": "bromodifluoromethaneToAirInputsProduction"
891
+ },
892
+ {
893
+ "@type": "Term",
894
+ "@id": "pm10ToAirCropResidueBurning"
895
+ },
896
+ {
897
+ "@type": "Term",
898
+ "@id": "nErosionInputsProduction"
899
+ },
900
+ {
901
+ "@type": "Term",
902
+ "@id": "hydroxylamineToAirIndustrialProcesses"
903
+ },
904
+ {
905
+ "@type": "Term",
906
+ "@id": "so3ToAirInputsProduction"
907
+ },
908
+ {
909
+ "@type": "Term",
910
+ "@id": "so2ToAirCropResidueBurning"
911
+ },
912
+ {
913
+ "@type": "Term",
914
+ "@id": "pErosionInputsProduction"
915
+ },
916
+ {
917
+ "@type": "Term",
918
+ "@id": "pm25ToAirFuelCombustion"
919
+ },
920
+ {
921
+ "@type": "Term",
922
+ "@id": "112TrichloroethaneToAirIndustrialProcesses"
923
+ },
924
+ {
925
+ "@type": "Term",
926
+ "@id": "pm02ToAirIndustrialProcesses"
927
+ },
928
+ {
929
+ "@type": "Term",
930
+ "@id": "nh4ToAirIndustrialProcesses"
931
+ },
932
+ {
933
+ "@type": "Term",
934
+ "@id": "hexaneToAirIndustrialProcesses"
935
+ },
936
+ {
937
+ "@type": "Term",
938
+ "@id": "so2ToAirInputsProduction"
939
+ },
940
+ {
941
+ "@type": "Term",
942
+ "@id": "soxToAirCropResidueBurning"
943
+ },
944
+ {
945
+ "@type": "Term",
946
+ "@id": "nh4ToSurfaceWaterAquacultureSystems"
947
+ },
948
+ {
949
+ "@type": "Term",
950
+ "@id": "n2OToAirOrganicSoilCultivationIndirect"
951
+ },
952
+ {
953
+ "@type": "Term",
954
+ "@id": "no3ToSurfaceWaterIndustrialProcesses"
955
+ },
956
+ {
957
+ "@type": "Term",
958
+ "@id": "nErosionSoilFlux"
959
+ },
960
+ {
961
+ "@type": "Term",
962
+ "@id": "n2OToAirOrganicSoilCultivationDirect"
963
+ },
964
+ {
965
+ "@type": "Term",
966
+ "@id": "n2OToAirSoilFlux"
967
+ },
968
+ {
969
+ "@type": "Term",
970
+ "@id": "nh4ToGroundwaterWasteTreatment"
971
+ },
972
+ {
973
+ "@type": "Term",
974
+ "@id": "no3ToGroundwaterSoilFlux"
975
+ },
976
+ {
977
+ "@type": "Term",
978
+ "@id": "n2ToAirAquacultureSystems"
979
+ },
980
+ {
981
+ "@type": "Term",
982
+ "@id": "nh3ToAirOrganicSoilBurning"
983
+ },
984
+ {
985
+ "@type": "Term",
986
+ "@id": "noxToAirOrganicFertiliser"
987
+ },
988
+ {
989
+ "@type": "Term",
990
+ "@id": "pesticideToAirPesticideApplication"
991
+ },
992
+ {
993
+ "@type": "Term",
994
+ "@id": "nh3ToAirIndustrialProcesses"
995
+ },
996
+ {
997
+ "@type": "Term",
998
+ "@id": "no2ToAirIndustrialProcesses"
999
+ },
1000
+ {
1001
+ "@type": "Term",
1002
+ "@id": "tspToAirAnimalHousing"
1003
+ },
1004
+ {
1005
+ "@type": "Term",
1006
+ "@id": "nh4ToAirInputsProduction"
1007
+ },
1008
+ {
1009
+ "@type": "Term",
1010
+ "@id": "n2OToAirOrganicSoilBurningIndirect"
1011
+ },
1012
+ {
1013
+ "@type": "Term",
1014
+ "@id": "1112TetrafluoroethaneToAirInputsProduction"
1015
+ },
1016
+ {
1017
+ "@type": "Term",
1018
+ "@id": "ionisingCompoundsToAirInputsProduction"
1019
+ },
1020
+ {
1021
+ "@type": "Term",
1022
+ "@id": "n2OToAirAquacultureSystemsDirect"
1023
+ },
1024
+ {
1025
+ "@type": "Term",
1026
+ "@id": "ch4ToAirExcreta"
1027
+ },
1028
+ {
1029
+ "@type": "Term",
1030
+ "@id": "n2ToAirSoilFlux"
1031
+ },
1032
+ {
1033
+ "@type": "Term",
1034
+ "@id": "coToAirInputsProduction"
1035
+ },
1036
+ {
1037
+ "@type": "Term",
1038
+ "@id": "ch4ToAirSoilFlux"
1039
+ },
1040
+ {
1041
+ "@type": "Term",
1042
+ "@id": "co2ToAirSoilInorganicCarbonStockChangeManagementChange"
1043
+ },
1044
+ {
1045
+ "@type": "Term",
1046
+ "@id": "n2OToAirBackgroundSoilFluxDirect"
1047
+ },
1048
+ {
1049
+ "@type": "Term",
1050
+ "@id": "coToAirFuelCombustion"
1051
+ },
1052
+ {
1053
+ "@type": "Term",
1054
+ "@id": "noxToAirNaturalVegetationBurning"
1055
+ },
1056
+ {
1057
+ "@type": "Term",
1058
+ "@id": "nToSurfaceWaterInputsProduction"
1059
+ },
1060
+ {
1061
+ "@type": "Term",
1062
+ "@id": "carbonTetrachlorideToAirInputsProduction"
1063
+ },
1064
+ {
1065
+ "@type": "Term",
1066
+ "@id": "no3ToAirInputsProduction"
1067
+ },
1068
+ {
1069
+ "@type": "Term",
1070
+ "@id": "chlorodifluoromethaneToAirInputsProduction"
1071
+ },
1072
+ {
1073
+ "@type": "Term",
1074
+ "@id": "no3ToSurfaceWaterExcreta"
1075
+ },
1076
+ {
1077
+ "@type": "Term",
1078
+ "@id": "dichlorotetrafluoroethaneToAirIndustrialProcesses"
1079
+ },
1080
+ {
1081
+ "@type": "Term",
1082
+ "@id": "so2ToAirFuelCombustion"
1083
+ },
1084
+ {
1085
+ "@type": "Term",
1086
+ "@id": "pm10ToAirFuelCombustion"
1087
+ },
1088
+ {
1089
+ "@type": "Term",
1090
+ "@id": "soxToAirIndustrialProcesses"
1091
+ },
1092
+ {
1093
+ "@type": "Term",
1094
+ "@id": "tefluraneToAirInputsProduction"
1095
+ },
1096
+ {
1097
+ "@type": "Term",
1098
+ "@id": "no3ToGroundwaterWasteTreatment"
1099
+ },
1100
+ {
1101
+ "@type": "Term",
1102
+ "@id": "nh4ToGroundwaterIndustrialProcesses"
1103
+ },
1104
+ {
1105
+ "@type": "Term",
1106
+ "@id": "sf6ToAirIndustrialProcesses"
1107
+ },
1108
+ {
1109
+ "@type": "Term",
1110
+ "@id": "noToAirIndustrialProcesses"
1111
+ },
1112
+ {
1113
+ "@type": "Term",
1114
+ "@id": "no3ToGroundwaterExcreta"
1115
+ },
1116
+ {
1117
+ "@type": "Term",
1118
+ "@id": "noToAirOrganicFertiliser"
1119
+ },
1120
+ {
1121
+ "@type": "Term",
1122
+ "@id": "nmvocToAirFuelCombustion"
1123
+ },
1124
+ {
1125
+ "@type": "Term",
1126
+ "@id": "pToSurfaceWaterExcreta"
1127
+ },
1128
+ {
1129
+ "@type": "Term",
1130
+ "@id": "nh3ToAirNaturalVegetationBurning"
1131
+ },
1132
+ {
1133
+ "@type": "Term",
1134
+ "@id": "no3ToGroundwaterCropResidueDecomposition"
1135
+ },
1136
+ {
1137
+ "@type": "Term",
1138
+ "@id": "1Chloro11DifluoroethaneToAirIndustrialProcesses"
1139
+ },
1140
+ {
1141
+ "@type": "Term",
1142
+ "@id": "noxToAirAquacultureSystems"
1143
+ },
1144
+ {
1145
+ "@type": "Term",
1146
+ "@id": "no2ToAirInputsProduction"
1147
+ },
1148
+ {
1149
+ "@type": "Term",
1150
+ "@id": "13Dichloro11223PentafluoropropaneToAirIndustrialProcesses"
1151
+ },
1152
+ {
1153
+ "@type": "Term",
1154
+ "@id": "hcfc124ToAirInputsProduction"
1155
+ },
1156
+ {
1157
+ "@type": "Term",
1158
+ "@id": "pToSurfaceWaterIndustrialProcesses"
1159
+ },
1160
+ {
1161
+ "@type": "Term",
1162
+ "@id": "noxToAirCropResidueBurning"
1163
+ }
1164
+ ]
8
1165
  },
9
1166
  {
10
1167
  "name": "get_cover_crop_property_terms",
@@ -47,7 +1204,28 @@
47
1204
  "minimum_should_match": 1
48
1205
  }
49
1206
  },
50
- "results": []
1207
+ "results": [
1208
+ {
1209
+ "@type": "Term",
1210
+ "@id": "groundCover"
1211
+ },
1212
+ {
1213
+ "@type": "Term",
1214
+ "@id": "catchCrop"
1215
+ },
1216
+ {
1217
+ "@type": "Term",
1218
+ "@id": "coverCrop"
1219
+ },
1220
+ {
1221
+ "@type": "Term",
1222
+ "@id": "longFallowCrop"
1223
+ },
1224
+ {
1225
+ "@type": "Term",
1226
+ "@id": "shortFallowCrop"
1227
+ }
1228
+ ]
51
1229
  },
52
1230
  {
53
1231
  "name": "get_crop_residue_incorporated_or_left_on_field_terms",
@@ -85,21 +1263,116 @@
85
1263
  "minimum_should_match": 1
86
1264
  }
87
1265
  },
88
- "results": []
1266
+ "results": [
1267
+ {
1268
+ "@type": "Term",
1269
+ "@id": "discardedCropLeftOnField"
1270
+ },
1271
+ {
1272
+ "@type": "Term",
1273
+ "@id": "belowGroundCropResidue"
1274
+ },
1275
+ {
1276
+ "@type": "Term",
1277
+ "@id": "aboveGroundCropResidueLeftOnField"
1278
+ },
1279
+ {
1280
+ "@type": "Term",
1281
+ "@id": "discardedCropIncorporated"
1282
+ },
1283
+ {
1284
+ "@type": "Term",
1285
+ "@id": "aboveGroundCropResidueIncorporated"
1286
+ }
1287
+ ]
89
1288
  },
90
1289
  {
91
1290
  "name": "get_crop_residue_management_terms",
92
1291
  "query": {
93
1292
  "termType.keyword": "cropResidueManagement"
94
1293
  },
95
- "results": []
1294
+ "results": [
1295
+ {
1296
+ "@type": "Term",
1297
+ "@id": "residueIncorporatedLessThan30DaysBeforeCultivation"
1298
+ },
1299
+ {
1300
+ "@type": "Term",
1301
+ "@id": "residueIncorporatedMoreThan30DaysBeforeCultivation"
1302
+ },
1303
+ {
1304
+ "@type": "Term",
1305
+ "@id": "residueIncorporated"
1306
+ },
1307
+ {
1308
+ "@type": "Term",
1309
+ "@id": "residueRemoved"
1310
+ },
1311
+ {
1312
+ "@type": "Term",
1313
+ "@id": "pastureRenewed"
1314
+ },
1315
+ {
1316
+ "@type": "Term",
1317
+ "@id": "residueLeftOnField"
1318
+ },
1319
+ {
1320
+ "@type": "Term",
1321
+ "@id": "residueBurnt"
1322
+ }
1323
+ ]
96
1324
  },
97
1325
  {
98
1326
  "name": "get_crop_residue_terms",
99
1327
  "query": {
100
1328
  "termType.keyword": "cropResidue"
101
1329
  },
102
- "results": []
1330
+ "results": [
1331
+ {
1332
+ "@type": "Term",
1333
+ "@id": "discardedCropBurnt"
1334
+ },
1335
+ {
1336
+ "@type": "Term",
1337
+ "@id": "discardedCropLeftOnField"
1338
+ },
1339
+ {
1340
+ "@type": "Term",
1341
+ "@id": "discardedCropTotal"
1342
+ },
1343
+ {
1344
+ "@type": "Term",
1345
+ "@id": "discardedCropIncorporated"
1346
+ },
1347
+ {
1348
+ "@type": "Term",
1349
+ "@id": "aboveGroundCropResidueRemoved"
1350
+ },
1351
+ {
1352
+ "@type": "Term",
1353
+ "@id": "aboveGroundCropResidueBurnt"
1354
+ },
1355
+ {
1356
+ "@type": "Term",
1357
+ "@id": "belowGroundCropResidue"
1358
+ },
1359
+ {
1360
+ "@type": "Term",
1361
+ "@id": "aboveGroundCropResidueLeftOnField"
1362
+ },
1363
+ {
1364
+ "@type": "Term",
1365
+ "@id": "discardedCropRemoved"
1366
+ },
1367
+ {
1368
+ "@type": "Term",
1369
+ "@id": "aboveGroundCropResidueTotal"
1370
+ },
1371
+ {
1372
+ "@type": "Term",
1373
+ "@id": "aboveGroundCropResidueIncorporated"
1374
+ }
1375
+ ]
103
1376
  },
104
1377
  {
105
1378
  "name": "get_digestible_energy_terms",
@@ -124,7 +1397,36 @@
124
1397
  ]
125
1398
  }
126
1399
  },
127
- "results": []
1400
+ "results": [
1401
+ {
1402
+ "@type": "Term",
1403
+ "@id": "digestibleEnergyRabbits"
1404
+ },
1405
+ {
1406
+ "@type": "Term",
1407
+ "@id": "digestibleEnergyRuminants"
1408
+ },
1409
+ {
1410
+ "@type": "Term",
1411
+ "@id": "digestibleEnergyPigs"
1412
+ },
1413
+ {
1414
+ "@type": "Term",
1415
+ "@id": "digestibleEnergySalmonids"
1416
+ },
1417
+ {
1418
+ "@type": "Term",
1419
+ "@id": "digestibleEnergyPoultry"
1420
+ },
1421
+ {
1422
+ "@type": "Term",
1423
+ "@id": "digestibleEnergyAquaticSpecies"
1424
+ },
1425
+ {
1426
+ "@type": "Term",
1427
+ "@id": "digestibleEnergyOtherAnimals"
1428
+ }
1429
+ ]
128
1430
  },
129
1431
  {
130
1432
  "name": "get_electricity_grid_mix_terms",
@@ -154,7 +1456,16 @@
154
1456
  ]
155
1457
  }
156
1458
  },
157
- "results": []
1459
+ "results": [
1460
+ {
1461
+ "@type": "Term",
1462
+ "@id": "electricityGridMarketMix"
1463
+ },
1464
+ {
1465
+ "@type": "Term",
1466
+ "@id": "electricityGridRenewableMix"
1467
+ }
1468
+ ]
158
1469
  },
159
1470
  {
160
1471
  "name": "get_energy_digestibility_terms",
@@ -179,7 +1490,36 @@
179
1490
  ]
180
1491
  }
181
1492
  },
182
- "results": []
1493
+ "results": [
1494
+ {
1495
+ "@type": "Term",
1496
+ "@id": "energyDigestibilityPoultry"
1497
+ },
1498
+ {
1499
+ "@type": "Term",
1500
+ "@id": "energyDigestibilityRabbits"
1501
+ },
1502
+ {
1503
+ "@type": "Term",
1504
+ "@id": "energyDigestibilityPigs"
1505
+ },
1506
+ {
1507
+ "@type": "Term",
1508
+ "@id": "energyDigestibilitySalmonids"
1509
+ },
1510
+ {
1511
+ "@type": "Term",
1512
+ "@id": "energyDigestibilityRuminants"
1513
+ },
1514
+ {
1515
+ "@type": "Term",
1516
+ "@id": "energyDigestibilityOtherAnimals"
1517
+ },
1518
+ {
1519
+ "@type": "Term",
1520
+ "@id": "energyDigestibilityAquaticSpecies"
1521
+ }
1522
+ ]
183
1523
  },
184
1524
  {
185
1525
  "name": "get_excreta_N_terms",
@@ -187,7 +1527,96 @@
187
1527
  "termType.keyword": "excreta",
188
1528
  "units.keyword": "kg N"
189
1529
  },
190
- "results": []
1530
+ "results": [
1531
+ {
1532
+ "@type": "Term",
1533
+ "@id": "excretaDeerKgN"
1534
+ },
1535
+ {
1536
+ "@type": "Term",
1537
+ "@id": "excretaGoatsKgN"
1538
+ },
1539
+ {
1540
+ "@type": "Term",
1541
+ "@id": "excretaBeefCattleExceptFeedlotFedKgN"
1542
+ },
1543
+ {
1544
+ "@type": "Term",
1545
+ "@id": "excretaDucksKgN"
1546
+ },
1547
+ {
1548
+ "@type": "Term",
1549
+ "@id": "excretaSolidFishCrustaceansKgN"
1550
+ },
1551
+ {
1552
+ "@type": "Term",
1553
+ "@id": "excretaPoultryKgN"
1554
+ },
1555
+ {
1556
+ "@type": "Term",
1557
+ "@id": "excretaBuffaloKgN"
1558
+ },
1559
+ {
1560
+ "@type": "Term",
1561
+ "@id": "excretaSolidAndLiquidFishCrustaceansKgN"
1562
+ },
1563
+ {
1564
+ "@type": "Term",
1565
+ "@id": "excretaInsectsKgN"
1566
+ },
1567
+ {
1568
+ "@type": "Term",
1569
+ "@id": "excretaBeefCattleFeedlotFedKgN"
1570
+ },
1571
+ {
1572
+ "@type": "Term",
1573
+ "@id": "excretaKgN"
1574
+ },
1575
+ {
1576
+ "@type": "Term",
1577
+ "@id": "excretaGeeseKgN"
1578
+ },
1579
+ {
1580
+ "@type": "Term",
1581
+ "@id": "excretaRabbitsKgN"
1582
+ },
1583
+ {
1584
+ "@type": "Term",
1585
+ "@id": "excretaTurkeysKgN"
1586
+ },
1587
+ {
1588
+ "@type": "Term",
1589
+ "@id": "excretaLiquidFishCrustaceansKgN"
1590
+ },
1591
+ {
1592
+ "@type": "Term",
1593
+ "@id": "processedExcretaKgN"
1594
+ },
1595
+ {
1596
+ "@type": "Term",
1597
+ "@id": "excretaMixturesKgN"
1598
+ },
1599
+ {
1600
+ "@type": "Term",
1601
+ "@id": "excretaDairyCattleKgN"
1602
+ },
1603
+ {
1604
+ "@type": "Term",
1605
+ "@id": "excretaPigsKgN"
1606
+ },
1607
+ {
1608
+ "@type": "Term",
1609
+ "@id": "excretaSheepKgN"
1610
+ },
1611
+ {
1612
+ "@type": "Term",
1613
+ "@id": "excretaHorsesMulesAndAssesKgN"
1614
+ },
1615
+ {
1616
+ "@type": "Term",
1617
+ "@id": "excretaCamelsKgN"
1618
+ }
1619
+ ]
191
1620
  },
192
1621
  {
193
1622
  "name": "get_excreta_VS_terms",
@@ -195,7 +1624,96 @@
195
1624
  "termType.keyword": "excreta",
196
1625
  "units.keyword": "kg VS"
197
1626
  },
198
- "results": []
1627
+ "results": [
1628
+ {
1629
+ "@type": "Term",
1630
+ "@id": "excretaRabbitsKgVs"
1631
+ },
1632
+ {
1633
+ "@type": "Term",
1634
+ "@id": "excretaInsectsKgVs"
1635
+ },
1636
+ {
1637
+ "@type": "Term",
1638
+ "@id": "excretaSolidFishCrustaceansKgVs"
1639
+ },
1640
+ {
1641
+ "@type": "Term",
1642
+ "@id": "excretaGeeseKgVs"
1643
+ },
1644
+ {
1645
+ "@type": "Term",
1646
+ "@id": "excretaDairyCattleKgVs"
1647
+ },
1648
+ {
1649
+ "@type": "Term",
1650
+ "@id": "excretaSolidAndLiquidFishCrustaceansKgVs"
1651
+ },
1652
+ {
1653
+ "@type": "Term",
1654
+ "@id": "excretaLiquidFishCrustaceansKgVs"
1655
+ },
1656
+ {
1657
+ "@type": "Term",
1658
+ "@id": "excretaDucksKgVs"
1659
+ },
1660
+ {
1661
+ "@type": "Term",
1662
+ "@id": "excretaCamelsKgVs"
1663
+ },
1664
+ {
1665
+ "@type": "Term",
1666
+ "@id": "excretaPigsKgVs"
1667
+ },
1668
+ {
1669
+ "@type": "Term",
1670
+ "@id": "excretaBuffaloKgVs"
1671
+ },
1672
+ {
1673
+ "@type": "Term",
1674
+ "@id": "processedExcretaKgVs"
1675
+ },
1676
+ {
1677
+ "@type": "Term",
1678
+ "@id": "excretaHorsesMulesAndAssesKgVs"
1679
+ },
1680
+ {
1681
+ "@type": "Term",
1682
+ "@id": "excretaTurkeysKgVs"
1683
+ },
1684
+ {
1685
+ "@type": "Term",
1686
+ "@id": "excretaSheepKgVs"
1687
+ },
1688
+ {
1689
+ "@type": "Term",
1690
+ "@id": "excretaGoatsKgVs"
1691
+ },
1692
+ {
1693
+ "@type": "Term",
1694
+ "@id": "excretaBeefCattleFeedlotFedKgVs"
1695
+ },
1696
+ {
1697
+ "@type": "Term",
1698
+ "@id": "excretaMixturesKgVs"
1699
+ },
1700
+ {
1701
+ "@type": "Term",
1702
+ "@id": "excretaBeefCattleExceptFeedlotFedKgVs"
1703
+ },
1704
+ {
1705
+ "@type": "Term",
1706
+ "@id": "excretaDeerKgVs"
1707
+ },
1708
+ {
1709
+ "@type": "Term",
1710
+ "@id": "excretaPoultryKgVs"
1711
+ },
1712
+ {
1713
+ "@type": "Term",
1714
+ "@id": "excretaKgVs"
1715
+ }
1716
+ ]
199
1717
  },
200
1718
  {
201
1719
  "name": "get_flooded_pre_season_terms",
@@ -220,7 +1738,24 @@
220
1738
  ]
221
1739
  }
222
1740
  },
223
- "results": []
1741
+ "results": [
1742
+ {
1743
+ "@type": "Term",
1744
+ "@id": "floodedPreSeasonMoreThan30Days"
1745
+ },
1746
+ {
1747
+ "@type": "Term",
1748
+ "@id": "nonFloodedPreSeasonMoreThan180Days"
1749
+ },
1750
+ {
1751
+ "@type": "Term",
1752
+ "@id": "nonFloodedPreSeasonLessThan180Days"
1753
+ },
1754
+ {
1755
+ "@type": "Term",
1756
+ "@id": "nonFloodedPreSeasonMoreThan365Days"
1757
+ }
1758
+ ]
224
1759
  },
225
1760
  {
226
1761
  "name": "get_generic_crop",
@@ -228,7 +1763,14 @@
228
1763
  "termType.keyword": "crop",
229
1764
  "name": "Generic crop seed"
230
1765
  },
231
- "results": null
1766
+ "results": [
1767
+ {
1768
+ "@type": "Term",
1769
+ "name": "Generic crop, seed",
1770
+ "@id": "genericCropSeed",
1771
+ "_score": 23.782045
1772
+ }
1773
+ ]
232
1774
  },
233
1775
  {
234
1776
  "name": "get_irrigated_terms",
@@ -261,14 +1803,120 @@
261
1803
  "minimum_should_match": 1
262
1804
  }
263
1805
  },
264
- "results": []
1806
+ "results": [
1807
+ {
1808
+ "@type": "Term",
1809
+ "@id": "rainfedDeepWater"
1810
+ },
1811
+ {
1812
+ "@type": "Term",
1813
+ "@id": "rainfedDeepWaterWaterDepth50100Cm"
1814
+ },
1815
+ {
1816
+ "@type": "Term",
1817
+ "@id": "rainfedDeepWaterWaterDepth100Cm"
1818
+ },
1819
+ {
1820
+ "@type": "Term",
1821
+ "@id": "irrigatedLocalizedIrrigation"
1822
+ },
1823
+ {
1824
+ "@type": "Term",
1825
+ "@id": "irrigatedFurrowIrrigation"
1826
+ },
1827
+ {
1828
+ "@type": "Term",
1829
+ "@id": "irrigatedSubIrrigation"
1830
+ },
1831
+ {
1832
+ "@type": "Term",
1833
+ "@id": "irrigatedDripIrrigation"
1834
+ },
1835
+ {
1836
+ "@type": "Term",
1837
+ "@id": "irrigatedSprinklerIrrigation"
1838
+ },
1839
+ {
1840
+ "@type": "Term",
1841
+ "@id": "irrigatedTypeUnspecified"
1842
+ },
1843
+ {
1844
+ "@type": "Term",
1845
+ "@id": "irrigatedLateralMoveIrrigation"
1846
+ },
1847
+ {
1848
+ "@type": "Term",
1849
+ "@id": "irrigatedCenterPivotIrrigation"
1850
+ },
1851
+ {
1852
+ "@type": "Term",
1853
+ "@id": "irrigatedSurfaceIrrigationContinuouslyFlooded"
1854
+ },
1855
+ {
1856
+ "@type": "Term",
1857
+ "@id": "irrigatedSurfaceIrrigationMultipleDrainagePeriods"
1858
+ },
1859
+ {
1860
+ "@type": "Term",
1861
+ "@id": "irrigatedSurfaceIrrigationDrainageRegimeUnspecified"
1862
+ },
1863
+ {
1864
+ "@type": "Term",
1865
+ "@id": "irrigatedSurfaceIrrigationSingleDrainagePeriod"
1866
+ }
1867
+ ]
265
1868
  },
266
1869
  {
267
1870
  "name": "get_irrigation_terms",
268
1871
  "query": {
269
1872
  "termType.keyword": "water"
270
1873
  },
271
- "results": []
1874
+ "results": [
1875
+ {
1876
+ "@type": "Term",
1877
+ "@id": "waterDrainageCanal"
1878
+ },
1879
+ {
1880
+ "@type": "Term",
1881
+ "@id": "waterMarine"
1882
+ },
1883
+ {
1884
+ "@type": "Term",
1885
+ "@id": "waterIrrigationCanal"
1886
+ },
1887
+ {
1888
+ "@type": "Term",
1889
+ "@id": "waterSourceUnspecified"
1890
+ },
1891
+ {
1892
+ "@type": "Term",
1893
+ "@id": "waterMunicipalTap"
1894
+ },
1895
+ {
1896
+ "@type": "Term",
1897
+ "@id": "waterRiverStream"
1898
+ },
1899
+ {
1900
+ "@type": "Term",
1901
+ "@id": "waterPumpedGroundwater"
1902
+ },
1903
+ {
1904
+ "@type": "Term",
1905
+ "@id": "waterHarvestedRainfall"
1906
+ },
1907
+ {
1908
+ "@type": "Term",
1909
+ "@id": "waterBrackish"
1910
+ },
1911
+ {
1912
+ "@type": "Term",
1913
+ "@id": "waterLakeOrReservoir"
1914
+ },
1915
+ {
1916
+ "@type": "Term",
1917
+ "@id": "iceSourceUnspecified"
1918
+ }
1919
+ ]
272
1920
  },
273
1921
  {
274
1922
  "name": "get_land_cover_siteTypes",
@@ -351,7 +1999,164 @@
351
1999
  "minimum_should_match": 1
352
2000
  }
353
2001
  },
354
- "results": []
2002
+ "results": [
2003
+ {
2004
+ "@type": "Term",
2005
+ "name": "Glass or high accessible cover",
2006
+ "@id": "glassOrHighAccessibleCover",
2007
+ "_score": 57.03148
2008
+ },
2009
+ {
2010
+ "@type": "Term",
2011
+ "name": "River or stream",
2012
+ "@id": "riverOrStream",
2013
+ "_score": 48.316353
2014
+ },
2015
+ {
2016
+ "@type": "Term",
2017
+ "name": "Sea or ocean",
2018
+ "@id": "seaOrOcean",
2019
+ "_score": 48.17555
2020
+ },
2021
+ {
2022
+ "@type": "Term",
2023
+ "name": "Other natural vegetation",
2024
+ "@id": "otherNaturalVegetation",
2025
+ "_score": 38.180202
2026
+ },
2027
+ {
2028
+ "@type": "Term",
2029
+ "name": "Food retailer",
2030
+ "@id": "foodRetailer",
2031
+ "_score": 37.8608
2032
+ },
2033
+ {
2034
+ "@type": "Term",
2035
+ "name": "Agri-food processor",
2036
+ "@id": "agriFoodProcessor",
2037
+ "_score": 37.590137
2038
+ },
2039
+ {
2040
+ "@type": "Term",
2041
+ "name": "Natural forest",
2042
+ "@id": "naturalForest",
2043
+ "_score": 29.665064
2044
+ },
2045
+ {
2046
+ "@type": "Term",
2047
+ "name": "Permanent pasture",
2048
+ "@id": "permanentPasture",
2049
+ "_score": 27.240753
2050
+ },
2051
+ {
2052
+ "@type": "Term",
2053
+ "name": "Animal housing",
2054
+ "@id": "animalHousing",
2055
+ "_score": 25.548927
2056
+ },
2057
+ {
2058
+ "@type": "Term",
2059
+ "name": "Root or tuber crop plant",
2060
+ "@id": "rootOrTuberCropPlant",
2061
+ "_score": 23.591366
2062
+ },
2063
+ {
2064
+ "@type": "Term",
2065
+ "name": "High intensity grazing pasture",
2066
+ "@id": "highIntensityGrazingPasture",
2067
+ "_score": 22.037212
2068
+ },
2069
+ {
2070
+ "@type": "Term",
2071
+ "name": "Permanent cropland",
2072
+ "@id": "permanentCropland",
2073
+ "_score": 19.511784
2074
+ },
2075
+ {
2076
+ "@type": "Term",
2077
+ "name": "Forest",
2078
+ "@id": "forest",
2079
+ "_score": 18.648563
2080
+ },
2081
+ {
2082
+ "@type": "Term",
2083
+ "name": "Pond",
2084
+ "@id": "pond",
2085
+ "_score": 17.991863
2086
+ },
2087
+ {
2088
+ "@type": "Term",
2089
+ "name": "Other land",
2090
+ "@id": "otherLand",
2091
+ "_score": 17.449398
2092
+ },
2093
+ {
2094
+ "@type": "Term",
2095
+ "name": "Plantation forest",
2096
+ "@id": "plantationForest",
2097
+ "_score": 17.198242
2098
+ },
2099
+ {
2100
+ "@type": "Term",
2101
+ "name": "Lake",
2102
+ "@id": "lake",
2103
+ "_score": 16.56434
2104
+ },
2105
+ {
2106
+ "@type": "Term",
2107
+ "name": "Improved pasture",
2108
+ "@id": "improvedPasture",
2109
+ "_score": 16.000757
2110
+ },
2111
+ {
2112
+ "@type": "Term",
2113
+ "name": "Native pasture",
2114
+ "@id": "nativePasture",
2115
+ "_score": 15.893363
2116
+ },
2117
+ {
2118
+ "@type": "Term",
2119
+ "name": "Sea kale plant",
2120
+ "@id": "seaKalePlant",
2121
+ "_score": 15.695772
2122
+ },
2123
+ {
2124
+ "@type": "Term",
2125
+ "name": "Red sea plume alga",
2126
+ "@id": "redSeaPlumeAlga",
2127
+ "_score": 15.179208
2128
+ },
2129
+ {
2130
+ "@type": "Term",
2131
+ "name": "Severely degraded pasture",
2132
+ "@id": "severelyDegradedPasture",
2133
+ "_score": 14.978426
2134
+ },
2135
+ {
2136
+ "@type": "Term",
2137
+ "name": "River tamarind tree",
2138
+ "@id": "riverTamarindTree",
2139
+ "_score": 14.97616
2140
+ },
2141
+ {
2142
+ "@type": "Term",
2143
+ "name": "Nominally managed pasture",
2144
+ "@id": "nominallyManagedPasture",
2145
+ "_score": 14.800983
2146
+ },
2147
+ {
2148
+ "@type": "Term",
2149
+ "name": "Cropland",
2150
+ "@id": "cropland",
2151
+ "_score": 9.556416
2152
+ },
2153
+ {
2154
+ "@type": "Term",
2155
+ "name": "Annual cropland",
2156
+ "@id": "annualCropland",
2157
+ "_score": 9.0709715
2158
+ }
2159
+ ]
355
2160
  },
356
2161
  {
357
2162
  "name": "get_liquid_fuel_terms",
@@ -389,7 +2194,52 @@
389
2194
  "minimum_should_match": 1
390
2195
  }
391
2196
  },
392
- "results": []
2197
+ "results": [
2198
+ {
2199
+ "@type": "Term",
2200
+ "@id": "marineDieselOil"
2201
+ },
2202
+ {
2203
+ "@type": "Term",
2204
+ "@id": "petrolBurntIn2StrokeEngine"
2205
+ },
2206
+ {
2207
+ "@type": "Term",
2208
+ "@id": "diesel1D"
2209
+ },
2210
+ {
2211
+ "@type": "Term",
2212
+ "@id": "diesel"
2213
+ },
2214
+ {
2215
+ "@type": "Term",
2216
+ "@id": "aviationGasoline"
2217
+ },
2218
+ {
2219
+ "@type": "Term",
2220
+ "@id": "gasolineTypeJetFuel"
2221
+ },
2222
+ {
2223
+ "@type": "Term",
2224
+ "@id": "petrol"
2225
+ },
2226
+ {
2227
+ "@type": "Term",
2228
+ "@id": "petrolBurntIn4StrokeEngine"
2229
+ },
2230
+ {
2231
+ "@type": "Term",
2232
+ "@id": "diesel2D"
2233
+ },
2234
+ {
2235
+ "@type": "Term",
2236
+ "@id": "diesel4D"
2237
+ },
2238
+ {
2239
+ "@type": "Term",
2240
+ "@id": "en590Diesel"
2241
+ }
2242
+ ]
393
2243
  },
394
2244
  {
395
2245
  "name": "get_milkYield_terms",
@@ -414,7 +2264,40 @@
414
2264
  ]
415
2265
  }
416
2266
  },
417
- "results": []
2267
+ "results": [
2268
+ {
2269
+ "@type": "Term",
2270
+ "@id": "milkYieldPerBuffaloRaw"
2271
+ },
2272
+ {
2273
+ "@type": "Term",
2274
+ "@id": "milkYieldPerCamelRaw"
2275
+ },
2276
+ {
2277
+ "@type": "Term",
2278
+ "@id": "milkYieldPerSheepRaw"
2279
+ },
2280
+ {
2281
+ "@type": "Term",
2282
+ "@id": "milkYieldPerGoatRaw"
2283
+ },
2284
+ {
2285
+ "@type": "Term",
2286
+ "@id": "milkYieldPerBuffaloFpcm"
2287
+ },
2288
+ {
2289
+ "@type": "Term",
2290
+ "@id": "milkYieldPerCowRaw"
2291
+ },
2292
+ {
2293
+ "@type": "Term",
2294
+ "@id": "milkYieldPerSheepFpcm"
2295
+ },
2296
+ {
2297
+ "@type": "Term",
2298
+ "@id": "milkYieldPerCowFpcm"
2299
+ }
2300
+ ]
418
2301
  },
419
2302
  {
420
2303
  "name": "get_pasture_system_terms",
@@ -422,7 +2305,16 @@
422
2305
  "termType.keyword": "system",
423
2306
  "name": "pasture"
424
2307
  },
425
- "results": []
2308
+ "results": [
2309
+ {
2310
+ "@type": "Term",
2311
+ "@id": "hillyPastureSystem"
2312
+ },
2313
+ {
2314
+ "@type": "Term",
2315
+ "@id": "confinedPastureSystem"
2316
+ }
2317
+ ]
426
2318
  },
427
2319
  {
428
2320
  "name": "get_residue_removed_or_burnt_terms",
@@ -455,7 +2347,16 @@
455
2347
  "minimum_should_match": 1
456
2348
  }
457
2349
  },
458
- "results": []
2350
+ "results": [
2351
+ {
2352
+ "@type": "Term",
2353
+ "@id": "residueRemoved"
2354
+ },
2355
+ {
2356
+ "@type": "Term",
2357
+ "@id": "residueBurnt"
2358
+ }
2359
+ ]
459
2360
  },
460
2361
  {
461
2362
  "name": "get_rice_paddy_terms",
@@ -485,7 +2386,12 @@
485
2386
  ]
486
2387
  }
487
2388
  },
488
- "results": []
2389
+ "results": [
2390
+ {
2391
+ "@type": "Term",
2392
+ "@id": "riceGrainInHuskFlooded"
2393
+ }
2394
+ ]
489
2395
  },
490
2396
  {
491
2397
  "name": "get_tillage_terms",
@@ -493,7 +2399,44 @@
493
2399
  "termType.keyword": "tillage",
494
2400
  "name": "tillage"
495
2401
  },
496
- "results": []
2402
+ "results": [
2403
+ {
2404
+ "@type": "Term",
2405
+ "@id": "verticalTillage"
2406
+ },
2407
+ {
2408
+ "@type": "Term",
2409
+ "@id": "noTillage"
2410
+ },
2411
+ {
2412
+ "@type": "Term",
2413
+ "@id": "ridgeTillage"
2414
+ },
2415
+ {
2416
+ "@type": "Term",
2417
+ "@id": "fullTillage"
2418
+ },
2419
+ {
2420
+ "@type": "Term",
2421
+ "@id": "minimumTillage"
2422
+ },
2423
+ {
2424
+ "@type": "Term",
2425
+ "@id": "deepTillage"
2426
+ },
2427
+ {
2428
+ "@type": "Term",
2429
+ "@id": "mulchTillage"
2430
+ },
2431
+ {
2432
+ "@type": "Term",
2433
+ "@id": "stripTillage"
2434
+ },
2435
+ {
2436
+ "@type": "Term",
2437
+ "@id": "fullInversionTillage"
2438
+ }
2439
+ ]
497
2440
  },
498
2441
  {
499
2442
  "name": "get_upland_rice_crop_terms",
@@ -523,7 +2466,12 @@
523
2466
  ]
524
2467
  }
525
2468
  },
526
- "results": []
2469
+ "results": [
2470
+ {
2471
+ "@type": "Term",
2472
+ "@id": "riceGrainInHuskUpland"
2473
+ }
2474
+ ]
527
2475
  },
528
2476
  {
529
2477
  "name": "get_upland_rice_land_cover_terms",
@@ -553,7 +2501,12 @@
553
2501
  ]
554
2502
  }
555
2503
  },
556
- "results": []
2504
+ "results": [
2505
+ {
2506
+ "@type": "Term",
2507
+ "@id": "ricePlantUpland"
2508
+ }
2509
+ ]
557
2510
  },
558
2511
  {
559
2512
  "name": "get_urea_terms",
@@ -561,7 +2514,32 @@
561
2514
  "termType.keyword": "inorganicFertiliser",
562
2515
  "name": "urea"
563
2516
  },
564
- "results": []
2517
+ "results": [
2518
+ {
2519
+ "@type": "Term",
2520
+ "@id": "ureaKgN"
2521
+ },
2522
+ {
2523
+ "@type": "Term",
2524
+ "@id": "ureaFormaldehydeKgN"
2525
+ },
2526
+ {
2527
+ "@type": "Term",
2528
+ "@id": "sulphurCoatedUreaKgN"
2529
+ },
2530
+ {
2531
+ "@type": "Term",
2532
+ "@id": "ureaAmmoniumNitrateKgN"
2533
+ },
2534
+ {
2535
+ "@type": "Term",
2536
+ "@id": "ureaCalciumNitrateKgN"
2537
+ },
2538
+ {
2539
+ "@type": "Term",
2540
+ "@id": "ureaAmmoniumSulphateKgN"
2541
+ }
2542
+ ]
565
2543
  },
566
2544
  {
567
2545
  "name": "get_wood_fuel_terms",
@@ -596,7 +2574,20 @@
596
2574
  ]
597
2575
  }
598
2576
  },
599
- "results": []
2577
+ "results": [
2578
+ {
2579
+ "@type": "Term",
2580
+ "@id": "woodPellets"
2581
+ },
2582
+ {
2583
+ "@type": "Term",
2584
+ "@id": "woodFuel"
2585
+ },
2586
+ {
2587
+ "@type": "Term",
2588
+ "@id": "woodChipFuel"
2589
+ }
2590
+ ]
600
2591
  },
601
2592
  {
602
2593
  "name": "get_wool_terms",
@@ -621,6 +2612,15 @@
621
2612
  ]
622
2613
  }
623
2614
  },
624
- "results": []
2615
+ "results": [
2616
+ {
2617
+ "@type": "Term",
2618
+ "@id": "woolGoatGreasy"
2619
+ },
2620
+ {
2621
+ "@type": "Term",
2622
+ "@id": "woolSheepGreasy"
2623
+ }
2624
+ ]
625
2625
  }
626
2626
  ]