Skip to content

Commit

Permalink
Add farming grants finder
Browse files Browse the repository at this point in the history
  • Loading branch information
baisa committed Jan 26, 2024
1 parent 98eb66d commit 2bd4978
Show file tree
Hide file tree
Showing 3 changed files with 99 additions and 0 deletions.
1 change: 1 addition & 0 deletions content_schemas/allowed_document_types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
- export_health_certificate
- external_content
- facet
- farming_grant_option
- fatality_notice
- field_of_operation
- fields_of_operation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@
{
"$ref": "#/definitions/flood_and_coastal_erosion_risk_management_research_report",
},
{
"$ref": "#/definitions/farming_grant_option_metadata",
},
{
"$ref": "#/definitions/maib_report_metadata",
},
Expand Down Expand Up @@ -2077,6 +2080,100 @@
},
},
},
farming_grant_option_metadata: {
type: "object",
additionalProperties: false,
properties: {
bulk_published: {
type: "boolean",
},
open_or_closed: {
type: "array",
items: {
type: "string",
enum: [
"open",
"closed",
]
}
},
areas_of_interest: {
type: "string",
enum: [
"access-and-engagement",
"air-quality",
"biodiversity",
"boundaries",
"crops",
"flood-risk",
"forestry",
"historic-environment",
"livestock-management",
"peat",
"pollinators-and-wildlife",
"precision-farming",
"slurry-management",
"soil",
"trees-non-woodland",
"vegetation-control",
"water",
]
}
},
land_types: {
type: "array",
items: {
type: "string",
enum: [
"arable-land",
"coast",
"grassland",
"lowland-heath",
"moorland-and-upland",
"organic-land",
"priority-habitats",
"waterbodies",
"wetland",
"woodland",
]
}
},
funding_types: {
type: "array",
items: {
type: "string",
enum: [
"option",
"item",
"action",
]
}
},
grant_schemes: {
type: "array",
items: {
type: "string",
enum: [
"combined-offer",
"countryside-stewardship",
"farming-equipment-and-technology-fund",
"slurry-infrastructure-grant",
"sustainable-farming-incentive",
]
}
},
payment_types: {
type: "array",
items: {
type: "string",
enum: [
"capital",
"revenue",
]
}
},
},
},
maib_report_metadata: {
type: "object",
additionalProperties: false,
Expand Down
1 change: 1 addition & 0 deletions content_schemas/formats/specialist_document.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"employment_tribunal_decision",
"esi_fund",
"export_health_certificate",
"farming_grant_option",
"flood_and_coastal_erosion_risk_management_research_report",
"international_development_fund",
"licence_transaction",
Expand Down

0 comments on commit 2bd4978

Please sign in to comment.