forked from alphagov/search-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
field_definitions.json
1012 lines (857 loc) · 31.3 KB
/
field_definitions.json
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
{
"all_searchable_text": {
"description": "Special field which searchable text is copied into; similar to the standard `_all` field, but more customisable. The indexable_content is included in this field.",
"type": "all_searchable_text_type"
},
"autocomplete": {
"description": "This field allows us to create autocomplete suggestions based off title headings",
"type": "autocomplete_result"
},
"format": {
"description": "This field is less specific than content_store_document_type but is mandatory for every document. May be deprecated in future.",
"type": "identifier"
},
"content_purpose_supergroup": {
"description": "Grouping for content purpose supergroups. See https://github.com/alphagov/govuk_document_types/blob/master/data/supertypes.yml",
"type": "identifier"
},
"content_purpose_subgroup": {
"description": "Grouping for content purpose subgroups. See https://github.com/alphagov/govuk_document_types/blob/master/data/supertypes.yml",
"type": "identifier"
},
"document_type": {
"description": "Type of document this data represents. Implicitly included into all schemas. Implemented to resolve the deprecation of multiple document types in Elasticsearch 6.x.",
"type": "identifier"
},
"email_document_supertype": {
"description": "High level group for email subscriptions use to identify publications and announcement. See https://github.com/alphagov/govuk_document_types/blob/master/data/supertypes.yml",
"type": "identifier"
},
"government_document_supertype": {
"description": "Grouping for email subscriptions. See https://github.com/alphagov/govuk_document_types/blob/master/data/supertypes.yml",
"type": "identifier"
},
"user_journey_document_supertype": {
"description": "Used to distinguish pages used mainly for navigation (finding) from content pages (thing). See https://github.com/alphagov/govuk_document_types/blob/master/data/supertypes.yml",
"type": "identifier"
},
"content_id": {
"description": "The content_id of the item. This will not be present for all items, as most application do not send it.",
"type": "identifier"
},
"title": {
"description": "The page title, as diplayed in internal search results. May differ from the page title tag or top level heading.",
"type": "searchable_sortable_text"
},
"description": {
"description": "A descrition or summary of the page that can be displayed to users in search results.",
"type": "searchable_text"
},
"link": {
"description": "The link to the document. This is usually the path component of the URL of the document, including a leading slash, but sometimes omits the leading slash, and is sometimes an absolute URL of related content which does not appear on GOV.UK",
"type": "identifier"
},
"indexable_content": {
"description": "The main chunk of text that is indexed for the page. May not be suitable for users to read. HTML tags are stripped out. Whitehall sets this field directly, for other documents in the govuk index, see https://github.com/alphagov/search-api/blob/master/lib/govuk_index/presenters/indexable_content_presenter.rb",
"type": "searchable_text"
},
"popularity": {
"description": "Popularity indicator used to bias search results. A higher number indicates more pageviews. Updated nightly.",
"type": "float"
},
"popularity_b": {
"description": "Popularity rank used to bias search results. Used at query time to compute a popularity score. A higher number indicates more pageviews. Updated nightly.",
"type": "integer"
},
"organisations": {
"description": "The organisations related to this page. This field is copied from the publishing-api. Note that means different things for different formats.",
"type": "identifiers"
},
"organisation_content_ids": {
"description": "As opposed to \"organisations\", this will include the \"content_ids\" of each organisation rather than the slug. It will eventually replace \"organisations\".",
"type": "identifiers"
},
"primary_publishing_organisation": {
"description": "The organisation that published this page. This field is copied from the publishing-api. It is only populated by Whitehall.",
"type": "identifiers"
},
"specialist_sectors": {
"description": "The navigation \"topics\" that the document is assigned to. Nothing to do with \"policy areas\"",
"type": "identifiers"
},
"topic_content_ids": {
"description": "The navigation \"topics\" that the document is assigned to. Nothing to do with \"policy areas\". As opposed to \"specialist_sectors\", this will include the \"content_ids\" of each topic rather than the slug. It will eventually replace \"specialist_sectors\".",
"type": "identifiers"
},
"topical_events": {
"description": "The topical events related to this page. These are \"slug\" identifiers.",
"type": "identifiers"
},
"policies": {
"description": "Policy content related to the page (https://www.gov.uk/government/policies).",
"type": "identifiers"
},
"publishing_app": {
"description": "Application that published this page",
"type": "identifier"
},
"policy_areas": {
"description": "Policy areas are managed in Whitehall. They're an old grouping of policies, which we're expecting to deprecate soon. Formally known as 'topics'.",
"type": "identifiers"
},
"rendering_app": {
"description": "Application that renders this page",
"type": "identifier"
},
"role_appointments": {
"description": "This will include the \"content_ids\" of each role appointment.",
"type": "identifiers"
},
"mainstream_browse_pages": {
"description": "Mainstream browse pages the page can appear in (https://www.gov.uk/browse).",
"type": "identifiers"
},
"mainstream_browse_page_content_ids": {
"description": "As opposed to \"mainstream_browse_pages\", this will include the \"content_ids\" of each mainstream browse pagerather than the slug. It will eventually replace \"mainstream_browse_pages\".",
"type": "identifiers"
},
"taxons": {
"description": "Topics associated with the page. Used for topic pages (e.g. https://www.gov.uk/education).",
"type": "identifiers"
},
"parts": {
"description": "Parts of guidance.",
"type": "objects",
"children": {
"slug": { "type": "searchable_identifier" },
"title": { "type": "searchable_text" },
"body": { "type": "searchable_text" }
}
},
"part_of_taxonomy_tree": {
"description": "Any taxon tagged to the document and any of their ancestor taxons",
"type": "identifiers"
},
"facet_groups": {
"description": "Facet groups associated the the documents. Used for tagging documents to finders",
"type": "identifiers"
},
"facet_values": {
"description": "Facet values associated the the documents. Used for modelling facets in finders",
"type": "identifiers"
},
"updated_at": {
"description": "Time of the last indexing. May be significantly newer than `public_timestamp`, as that usually only reflects major updates and not minor ones.",
"type": "date"
},
"public_timestamp": {
"description": "Time of the last update. Used for 1) weighting more recent editions (mainly whitehall content) more highly, 2) the default sort in finders, 3) showing a date in the search results. Should be the same as `public_updated_at` in the publishing-api.",
"type": "date"
},
"first_published_at": {
"description": "The date the content was first published. Should be the same as `first_published_at` in the publishing-api.",
"type": "date"
},
"start_date": {
"type": "date",
"description": "Start date for topical content."
},
"end_date": {
"type": "date",
"description": "End date for topical content. Assume null means in the past for topical event pages."
},
"closed_at": {
"type": "date",
"description": "Closing date for closed organisations."
},
"ordering": {
"type":"integer",
"description": "The ordering value for take_part pages and other ordered items"
},
"latest_change_note": {
"description": "Note indicating what changed in the last major revision.",
"type": "unsearchable_text"
},
"id": {
"description": "This field will be deprecated in a future version. Do not use.",
"type": "identifier"
},
"acronym": {
"description": "Acronym associated with the page title. Used for organisation pages.",
"type": "searchable_text"
},
"analytics_identifier": {
"description": "A unique identifier used for analytics.",
"type": "identifier"
},
"attachments": {
"description": "Metadata associated with any attachments linked to this page.",
"type": "objects",
"children": {
"content": { "type": "searchable_text" },
"title": { "type": "searchable_text" },
"isbn": { "type": "searchable_identifier" },
"unique_reference": { "type": "searchable_identifier" },
"command_paper_number": { "type": "searchable_identifier" },
"hoc_paper_number": { "type": "searchable_identifier" }
}
},
"detailed_format": {
"description": "A slugified version of the display_type field",
"type": "identifier"
},
"display_type": {
"description": "Different way of describing content_store_document_type, for some formats. May be deprecated in a future version.",
"type": "identifier"
},
"document_collections": {
"description": "Document collections this page belongs to (https://docs.publishing.service.gov.uk/document-types/document_collection.html).",
"type": "identifiers"
},
"document_series": {
"description": "",
"type": "identifiers"
},
"image_url": {
"description": "The URL of the image associated with an edition",
"type": "identifier"
},
"release_timestamp": {
"description": "When statistics will be released, for statistics announcement pages.",
"type": "date"
},
"display_date": {
"description": "The display text for the proposed release date for a statistics announcement. This may be approximate.",
"type": "identifier"
},
"metadata": {
"description": "The \"metadata\" field is intended for the storage of additional non-searchable document data. This allows additional information to be stored and displayed in search results without having to make changes to the schema.",
"type": "opaque_object"
},
"operational_field": {
"description": "The place a fatality notice applies to.",
"type": "identifier"
},
"child_organisations": {
"description": "A list of organisations that are children of the organisation.",
"type": "identifiers"
},
"parent_organisations": {
"description": "A list of organisations that are parents of the organisation.",
"type": "identifiers"
},
"superseded_organisations": {
"description": "A list of organisations that are superseded by the organisation.",
"type": "identifiers"
},
"superseding_organisations": {
"description": "A list of organisations that supersede the organisation.",
"type": "identifiers"
},
"organisation_brand": {
"description": "The branding (controls the colour) of the organisation logo",
"type": "identifier"
},
"organisation_crest": {
"description": "The class name of the crest to display when rendering the organisation logo",
"type": "identifier"
},
"organisation_state": {
"description": "Status of an organisation page on GOV.UK: {live, joining, exempt, transitioning, closed, devolved}",
"type": "identifier"
},
"organisation_closed_state": {
"description": "Status of a closed organisation page on GOV.UK: {no_longer_exists, replaced, split, merged, changed_name, left_gov, devolved}",
"type": "identifier"
},
"organisation_type": {
"description": "The organisation type identifier, like 'ministerial_department' or 'public_corporation'. Only applies to organisations. Expected value is the `organisation_type_key` from Whitehall, enumerated in https://github.com/alphagov/whitehall/blob/master/app/models/organisation_type.rb.",
"type": "identifier"
},
"people": {
"description": "Links to people associated with this page (https://www.gov.uk/government/people).",
"type": "identifiers"
},
"roles": {
"description": "Links to roles associated with this page (https://www.gov.uk/government/ministers).",
"type": "identifiers"
},
"policy_groups": {
"description": "Links to policy groups (working groups) associated with this page (https://www.gov.uk/government/groups).",
"type": "identifiers"
},
"relevant_to_local_government": {
"description": "No longer used. Will be removed in a future version.",
"type": "boolean"
},
"search_format_types": {
"description": "Filters used by publications/announcement pages (https://www.gov.uk/government/publications/). May be deprecated in a future version.",
"type": "identifiers"
},
"slug": {
"description": "The trailing part of the link. Two slugs belonging to the same format must be unique.",
"type": "identifier"
},
"statistics_announcement_state": {
"description": "State of a statistical announcement page; one of {cancelled, confirmed, provisional}",
"type": "identifier"
},
"world_locations": {
"description": "World location associated with this page (https://www.gov.uk/world).",
"type": "identifiers"
},
"has_official_document": {
"description": "Used for official document status filter on publication page (publication formats only).",
"type": "boolean"
},
"has_command_paper": {
"description": "Used for official document status filter on publication page (publication formats only).",
"type": "boolean"
},
"has_act_paper": {
"description": "Used for official document status filter on publication page (publication formats only).",
"type": "boolean"
},
"aircraft_category": {
"description": "Used for official document status filter on publication page (publication formats only).",
"type": "identifiers"
},
"report_type": {
"description": "Report type for MAIB, RAIB, AAIB reports. Possible values vary by format.",
"type": "identifiers"
},
"date_of_occurrence": {
"description": "Date of the event described in the document. Only applies to MAIB, RAIB, AAIB reports.",
"type": "date"
},
"registration": {
"description": "Metadata associated with an AAIB report (https://www.gov.uk/aaib-reports/)",
"type": "searchable_text"
},
"aircraft_type": {
"description": "Metadata associated with an AAIB report (https://www.gov.uk/aaib-reports/)",
"type": "searchable_text"
},
"location": {
"description": "Location metadata. Not comparable between different formats.",
"type": "identifiers"
},
"case_type": {
"description": "Similar to report_type: applies to CMA and Traffic Commissioner cases.",
"type": "identifiers"
},
"case_state": {
"description": "Whether a case is open or closed. Applies to CMA cases.",
"type": "identifiers"
},
"country": {
"description": "Country associated with the page. Does not link to a page on GOV.UK. See also 'world_locations'.",
"type": "identifiers"
},
"country_of_origin": {
"description": "Country the product orginates from",
"type": "identifiers"
},
"market_sector": {
"description": "Market sector a CMA case relates to.",
"type": "identifiers"
},
"outcome_type": {
"description": "Outcome of a CMA case.",
"type": "identifier"
},
"opened_date": {
"description": "Open date of a CMA case",
"type": "date"
},
"closed_date": {
"description": "Close date of a CMA case",
"type": "date"
},
"contact_groups": {
"description": "Contact groups a 'contact' page belongs to.",
"type": "identifiers"
},
"grant_type": {
"description": "Countryside stewardship grant type (https://www.gov.uk/countryside-stewardship-grants).",
"type": "identifiers"
},
"land_use": {
"description": "Countryside stewardship grant land use type (https://www.gov.uk/countryside-stewardship-grants).",
"type": "identifiers"
},
"tiers_or_standalone_items": {
"description": "Countryside stewardship grant land tiers or standalone items (https://www.gov.uk/countryside-stewardship-grants).",
"type": "identifiers"
},
"funding_amount": {
"description": "Funding (per unit per year)",
"type": "identifiers"
},
"therapeutic_area": {
"description": "Therapeutic area (https://www.gov.uk/drug-safety-update).",
"type": "identifiers"
},
"fund_state": {
"type": "identifiers"
},
"fund_type": {
"type": "identifiers"
},
"funding_source": {
"type": "identifiers"
},
"closing_date": {
"type": "date"
},
"logo_formatted_title": {
"description": "The title (with line breaks) to be displayed alongside the organisation logo",
"type": "identifier"
},
"logo_url": {
"description": "The url of the custom logo - applies to organisations with a custom logo",
"type": "identifier"
},
"manual": {
"type": "identifier",
"description": "Base path of the manual this document belongs to. Eg `/service-manual` or `/hmrc-internal-manuals/air-passenger-duty`"
},
"hmrc_manual_section_id": {
"type": "identifier"
},
"development_sector": {
"type": "identifiers"
},
"eligible_entities": {
"type": "identifiers"
},
"value_of_funding": {
"type": "identifiers"
},
"vessel_type": {
"type": "identifiers"
},
"alert_type": {
"type": "identifiers"
},
"medical_specialism": {
"type": "identifiers"
},
"issued_date": {
"type": "date"
},
"railway_type": {
"type": "identifiers"
},
"is_political": {
"description": "If the content is considered political in nature, reflecting views of the government it was published under",
"type": "boolean"
},
"is_historic": {
"description": "If the content is political and published by a previous government, it is considered historic and not reflecting of the current government",
"type": "boolean"
},
"is_withdrawn": {
"description": "If the content has been published but then withdrawn",
"type": "boolean"
},
"government_name": {
"description": "The name of the Government that first published this document, eg, '1970 to 1974 Conservative government'",
"type": "unsearchable_text"
},
"exact_query": {
"description": "Field used in the best-bet implementation to perform an exact match between a user's query and a stored best-bet",
"type": "best_bet_exact_match_text"
},
"stemmed_query": {
"description": "Field used in the best-bet implementation to perform a stemmed match between a user's query and a stored best-bet",
"type": "best_bet_stemmed_match_text"
},
"stemmed_query_as_term": {
"description": "Field used in the best-bet implementation to hold the raw form of a stemmed query",
"type": "identifier"
},
"details": {
"description": "Field used in the best-bet implementation to store the modifications to be made to the query when a best-bet is matched",
"type": "unsearchable_text"
},
"path_components": {
"description": "Field used in the page-traffic index to hold the full paths of each component of a url. eg: a document with a path of '/foo/bar/baz' would have the values '/foo', '/foo/bar' and '/foo/bar/baz' in this field. This allows all the pages under a given URL component to be identified.",
"type": "identifiers"
},
"rank_14": {
"description": "Field used in the page-traffic index to hold the rank of this page in the list of pages on the website when ordered by traffic. This is a fairly stable value used in ranking calculations.",
"type": "float"
},
"vc_14": {
"description": "Field used in the page-traffic index to hold the absolute view count of this document over a 14 day period. This is a fluctuating value used in ranking calculations.",
"type": "integer"
},
"view_count": {
"description": "Number of views a document has had. Equivalent to vc_14 in page-traffic index. Used for popularity boosting.",
"type": "integer"
},
"spelling_text": {
"description": "Generated field, populated with the same content as sent to the _all field, but tokenised into words, lowercased and shingled, not stemmed, etc",
"type": "spelling_text"
},
"important_to_policy": {
"description": "A flag set by editors to mark a document as being important to policy",
"type": "boolean"
},
"tribunal_decision_categories": {
"type": "identifiers"
},
"tribunal_decision_categories_name": {
"type": "searchable_identifiers"
},
"tribunal_decision_country": {
"type": "identifier"
},
"tribunal_decision_country_name": {
"type": "searchable_identifier"
},
"tribunal_decision_decision_date": {
"type": "date"
},
"tribunal_decision_judges": {
"type": "identifiers"
},
"tribunal_decision_judges_name": {
"type": "searchable_identifiers"
},
"tribunal_decision_category": {
"type": "identifier"
},
"tribunal_decision_category_name": {
"type": "searchable_identifier"
},
"tribunal_decision_sub_category": {
"type": "identifier"
},
"tribunal_decision_sub_category_name": {
"type": "searchable_identifier"
},
"tribunal_decision_sub_categories": {
"type": "identifiers"
},
"tribunal_decision_sub_categories_name": {
"type": "searchable_identifiers"
},
"tribunal_decision_landmark": {
"type": "identifier"
},
"tribunal_decision_landmark_name": {
"type": "searchable_identifier"
},
"tribunal_decision_reference_number": {
"type": "identifier"
},
"uk_market_conformity_assessment_body_name": {
"type": "searchable_identifier"
},
"uk_market_conformity_assessment_body_number": {
"type": "searchable_identifier"
},
"uk_market_conformity_assessment_body_notified_body_number": {
"type": "identifier"
},
"uk_market_conformity_assessment_body_type": {
"type": "searchable_identifiers"
},
"uk_market_conformity_assessment_body_registered_office_location": {
"type": "searchable_identifier"
},
"uk_market_conformity_assessment_body_testing_locations": {
"type": "searchable_identifiers"
},
"uk_market_conformity_assessment_body_website": {
"type": "identifier"
},
"uk_market_conformity_assessment_body_email": {
"type": "identifier"
},
"uk_market_conformity_assessment_body_phone": {
"type": "identifier"
},
"uk_market_conformity_assessment_body_legislative_area": {
"type": "searchable_identifiers"
},
"uk_market_conformity_assessment_body_address": {
"type": "identifier"
},
"authors": {
"description": "A set of author names, which aren't selected from a predefined list and don't repeat",
"type": "searchable_identifiers"
},
"review_status": {
"description": "Whether or not this item is peer reviewed (a code)",
"type": "identifier"
},
"theme": {
"description": "The broad theme (or themes) to which the output applies",
"type": "searchable_identifiers"
},
"research_document_type": {
"description": "The document type of the output (e.g. Book Chapter, Conference Paper)",
"type": "searchable_identifier"
},
"assessment_date": {
"description": "The date when the assessment was held.",
"type": "date"
},
"result": {
"description": "The result of the assessment.",
"type": "searchable_identifier"
},
"service_provider": {
"description": "The organisation providing the service under assessment.",
"type": "identifier"
},
"stage": {
"description": "The current stage of the service under assessment.",
"type": "searchable_identifier"
},
"content_store_document_type": {
"description": "The document type as stored in the Content Store",
"type": "identifier"
},
"business_sizes": {
"description": "The sizes of business served by a business finance support scheme",
"type": "searchable_identifiers"
},
"business_stages": {
"description": "The stages of business served by a business finance support scheme",
"type": "searchable_identifiers"
},
"industries": {
"description": "The industries served by a business finance support scheme",
"type": "searchable_identifiers"
},
"regions": {
"description": "The regions served by a business finance support scheme",
"type": "searchable_identifiers"
},
"types_of_support": {
"description": "The types of support provided by a business finance support scheme",
"type": "searchable_identifiers"
},
"licence_identifier": {
"description": "The licence ID associated with a content item of type licence",
"type": "identifier"
},
"licence_short_description": {
"type": "searchable_text"
},
"sifting_status": {
"description": "The open/close/etc state of a statutory instrument",
"type": "identifiers"
},
"subject": {
"description": "The associated top level taxon for statutory instruments",
"type": "identifiers"
},
"laid_date": {
"description": "The date on which a statutory instrument was laid before parliament",
"type": "date"
},
"sift_end_date": {
"description": "The date on which sifting of a statutory instrument ends",
"type": "date"
},
"withdrawn_date": {
"description": "The date on which a statutory instrument was withdrawn",
"type": "date"
},
"certificate_status": {
"description": "The active/on-hold state of the certificate",
"type": "identifiers"
},
"commodity_type": {
"description": "The type of the commodity being exported",
"type": "identifier"
},
"destination_country": {
"description": "The country being exported to",
"type": "identifiers"
},
"sector_business_area": {
"description": "The sector or business area",
"type": "identifiers"
},
"employ_eu_citizens": {
"description": "Whether or not the EU citizens are employed",
"type": "identifiers"
},
"business_activity": {
"description": "Whether or not the going concern does business in the EU and their type of business (e.g. buying, selling, transporting)",
"type": "identifiers"
},
"regulations_and_standards": {
"description": "Regulations that apply to the business",
"type": "identifiers"
},
"personal_data": {
"description": "The type of personal data processing the organisation handles",
"type": "identifiers"
},
"intellectual_property": {
"description": "The type of intellectual property a business holds",
"type": "identifiers"
},
"eu_uk_government_funding": {
"description": "The EU scheme from which the business receives its funding",
"type": "identifiers"
},
"public_sector_procurement": {
"description": "The public sector body that procures goods or services",
"type": "identifiers"
},
"marine_notice_type": {
"description": "The type of marine notice, e.g. Marine Guidance Note (MGN), Merchant Shipping Notice (MSN), Marine Information Note (MIN), etc.",
"type": "identifiers"
},
"marine_notice_vessel_type": {
"description": "The type of vessel a marine notice applies to, e.g. pleasure vessels, cargo vessels, fishing vessels, large yachts, etc.",
"type": "identifiers"
},
"marine_notice_topic": {
"description": "The subject of the marine notice, e.g.construction and equipment, crew and training, health and safety, etc.",
"type": "identifiers"
},
"decision_subject": {
"description": "The entity a tribunal or regulatory decision applies to",
"type": "identifiers"
},
"registered_name": {
"description": "The name of the food or drink item in the register.",
"type": "identifiers"
},
"register": {
"description": "The type of protected food or drink name registration e.g: food, spirit drink, wine etc",
"type": "identifiers"
},
"status": {
"description": "The status of the registration e.g: registered, in consultation, rejected",
"type": "identifiers"
},
"class_category": {
"description": "The category of the food or drink e.g: fresh meat, cheese, fruit, ",
"type": "identifiers"
},
"protection_type": {
"description": "The protection type of the food or drink e.g: Protected Geographical Indication (PGI), traditional term etc ",
"type": "identifiers"
},
"reason_for_protection":{
"description": "The reason the protection is given e.g: EU agreement, UK trade agreement",
"type": "identifiers"
},
"traditional_term_grapevine_product_category": {
"description": "The traditional term for a grapevine product e.g: wine, sparkling wine, grape must etc ",
"type": "identifiers"
},
"traditional_term_type": {
"description": "The traditional term for the food or drink e.g: description of Protected Geographical Indication etc",
"type": "identifiers"
},
"traditional_term_language": {
"description": "The language of the traditional term type",
"type": "identifiers"
},
"date_application": {
"description": "The date of application",
"type": "date"
},
"date_registration": {
"description": "The date of UK registration of the name",
"type": "date"
},
"time_registration": {
"description": "The time of UK registration of the name",
"type": "identifiers"
},
"date_registration_eu": {
"description": "The date of EU registration of the name",
"type": "date"
},
"internal_notes":{
"description": "Internal notes that should not render on the frontend",
"type": "identifiers"
},
"flood_and_coastal_erosion_category": {
"description": "The category of flood and coastal erosion risk reports e.g: managing flood incidents",
"type": "identifiers"
},
"date_of_start": {
"description": "The start date of document",
"type": "date"
},
"date_of_completion": {
"description": "The completion date of the document",
"type": "date"
},
"project_code": {
"description": "The code of the project",
"type": "identifiers"
},
"project_status":{
"description": "The status of the project",
"type": "identifiers"
},
"topics":{
"description": "The topics of the document",
"type": "identifiers"
},
"oim_project_type":{
"description" :"The category of OIM project",
"type": "identifiers"
},
"oim_project_state":{
"description" :"status of an OIM project: {open, closed}",
"type": "identifiers"
},
"oim_project_opened_date":{
"description" :"Opened date of an OIM project",
"type": "date"
},
"oim_project_closed_date":{
"description" :"Closed date of an OIM project",
"type": "date"
},
"product_alert_type":{
"description": "Alert type: {product-safety-alert, product-safety-report, product-recall}",
"type": "identifiers"
},
"product_risk_level":{
"description": "Risk level of product",
"type": "identifiers"
},
"product_category":{
"description": "Product category",
"type": "identifiers"
},
"product_measure_type":{
"description": "Product measure type",
"type": "identifiers"
},
"product_recall_alert_date":{
"description": "Date of the recall/alert",
"type": "date"
},
"digital_market_research_category": {
"type": "identifier"
},
"digital_market_research_publisher": {