diff --git a/application.properties b/application.properties index a1c9e489d..0b53774b6 100644 --- a/application.properties +++ b/application.properties @@ -2,4 +2,4 @@ #Mon Nov 03 17:25:26 EST 2014 app.grails.version=2.4.4 app.name=ecodata -app.version=1.2.3-SNAPSHOT +app.version=1.2.4-SNAPSHOT diff --git a/grails-app/conf/BuildConfig.groovy b/grails-app/conf/BuildConfig.groovy index 4628d5230..61c650c55 100644 --- a/grails-app/conf/BuildConfig.groovy +++ b/grails-app/conf/BuildConfig.groovy @@ -36,14 +36,6 @@ grails.project.dependency.resolution = { dependencies { // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes e.g. - test "org.gebish:geb-spock:0.9.3" - test("org.seleniumhq.selenium:selenium-htmlunit-driver:$seleniumVersion") { - exclude "xml-apis" - } - test("org.seleniumhq.selenium:selenium-chrome-driver:$seleniumVersion") - test("org.seleniumhq.selenium:selenium-firefox-driver:$seleniumVersion") - test "org.spockframework:spock-grails-support:0.7-groovy-2.0" - // ElasticSearch compile "org.elasticsearch:elasticsearch:1.5.2" @@ -95,8 +87,6 @@ grails.project.dependency.resolution = { build ":release:3.0.1" compile ':cache:1.1.8' compile ":cache-ehcache:1.0.5" - - test ":geb:0.9.3" } } diff --git a/grails-app/controllers/au/org/ala/ecodata/AdminController.groovy b/grails-app/controllers/au/org/ala/ecodata/AdminController.groovy index 479e199f2..3b86d0aeb 100644 --- a/grails-app/controllers/au/org/ala/ecodata/AdminController.groovy +++ b/grails-app/controllers/au/org/ala/ecodata/AdminController.groovy @@ -8,7 +8,7 @@ import org.springframework.core.io.support.PathMatchingResourcePatternResolver class AdminController { def outputService, activityService, siteService, projectService, authService, - organisationService, + collectoryService, commonService, cacheService, metadataService, elasticSearchService, documentService def beforeInterceptor = [action:this.&auth, only:['index','tools','settings','audit']] @@ -37,7 +37,7 @@ class AdminController { @RequireApiKey def syncCollectoryOrgs() { - def errors = organisationService.collectorySync() + def errors = collectoryService.syncOrganisations() if (errors) render (status: 503, text: errors) else diff --git a/grails-app/controllers/au/org/ala/ecodata/DocumentController.groovy b/grails-app/controllers/au/org/ala/ecodata/DocumentController.groovy index e82319f00..3141af9ed 100644 --- a/grails-app/controllers/au/org/ala/ecodata/DocumentController.groovy +++ b/grails-app/controllers/au/org/ala/ecodata/DocumentController.groovy @@ -17,40 +17,50 @@ class DocumentController { } def index() { - log.debug "Total documents = ${Document.count()}" + log.debug "Total documents (including links) = ${Document.count()}" render "${Document.count()} documents" } def get(String id) { def detail = [] - if (!id) { - def list = documentService.getAll(params.includeDeleted as boolean, params.view) - list.sort {it.name} - //log.debug list - asJson([list: list]) - } else { + if (id) { def doc = documentService.get(id, detail) if (doc) { asJson doc } else { render status:404, text: 'No such id' } + } else if (params.links as boolean) { + def list = documentService.getAllLinks(params.view) + //log.debug list + asJson([list: list]) + } else { + def list = documentService.getAll(params.includeDeleted as boolean, params.view) + list.sort {it.name} + //log.debug list + asJson([list: list]) } } def find(String entity, String id) { - def result = documentService.findAllByOwner(entity+'Id', id) - asJson([documents:result]) + if (params.links as boolean) { + def result = documentService.findAllLinksByOwner(entity+'Id', id) + asJson([documents:result]) + } else { + def result = documentService.findAllByOwner(entity+'Id', id) + asJson([documents:result]) + } } @RequireApiKey def delete(String id) { def a = Document.findByDocumentId(id) if (a) { - if (params.destroy) { + if (a.type == documentService.LINKTYPE) { + a.delete() + } else if (params.destroy) { documentService.deleteFile(a) a.delete() - } else { a.status = 'deleted' a.save(flush: true) diff --git a/grails-app/domain/au/org/ala/ecodata/Document.groovy b/grails-app/domain/au/org/ala/ecodata/Document.groovy index 5cbdd5886..0ac13ae0b 100644 --- a/grails-app/domain/au/org/ala/ecodata/Document.groovy +++ b/grails-app/domain/au/org/ala/ecodata/Document.groovy @@ -36,6 +36,7 @@ class Document { String siteId String activityId String outputId + String externalUrl boolean thirdPartyConsentDeclarationMade = false String thirdPartyConsentDeclarationText @@ -49,6 +50,8 @@ class Document { } def getUrl() { + if (externalUrl) return externalUrl + return urlFor(filepath, filename) } @@ -108,5 +111,6 @@ class Document { isPrimaryProjectImage nullable: true thirdPartyConsentDeclarationMade nullable: true thirdPartyConsentDeclarationText nullable: true + externalUrl nullable: true } } diff --git a/grails-app/domain/au/org/ala/ecodata/Project.groovy b/grails-app/domain/au/org/ala/ecodata/Project.groovy index c222f39cb..285e33e15 100644 --- a/grails-app/domain/au/org/ala/ecodata/Project.groovy +++ b/grails-app/domain/au/org/ala/ecodata/Project.groovy @@ -28,7 +28,8 @@ class Project { } ObjectId id - String projectId // same as collectory dataProvider id + String projectId + String dataProviderId // collectory dataProvider id String dataResourceId // one collectory dataResource stores all sightings String status = 'active' String externalId @@ -63,8 +64,11 @@ class Project { List activities boolean isCitizenScience, isDataSharing + boolean hasParticipantCost, hasTeachingMaterials, isDIY, isSuitableForChildren + String difficulty, gear, task String projectPrivacy, dataSharingLicense String projectType // survey, works + // TODO urlAndroid and urlITunes need to be phased out; replaced by link-type documente String aim, keywords, urlAndroid, urlITunes, urlWeb String getInvolved, scienceType, projectSiteId double funding @@ -147,11 +151,12 @@ class Project { promoteOnHomepage nullable:true organisationId nullable:true projectType nullable:true // nullable for backward compatibility; survey, works + dataProviderId nullable:true // nullable for backward compatibility dataResourceId nullable:true // nullable for backward compatibility aim nullable:true keywords nullable:true - urlAndroid nullable:true, url:true - urlITunes nullable:true, url:true + urlAndroid nullable:true, url:true // TODO phased out + urlITunes nullable:true, url:true // TODO phased out urlWeb nullable:true, url:true getInvolved nullable:true scienceType nullable:true @@ -160,6 +165,9 @@ class Project { orgIdSvcProvider nullable:true projectSiteId nullable:true // nullable for backward compatibility projectPrivacy nullable:true, inList: ['Open','Closed'] + difficulty nullable:true, inList: ['Easy','Medium','Hard'] + gear nullable:true + task nullable:true dataSharingLicense nullable:true, inList: collectoryLicenseTypes userCreated nullable:true userLastModified nullable:true diff --git a/grails-app/services/au/org/ala/ecodata/CollectoryService.groovy b/grails-app/services/au/org/ala/ecodata/CollectoryService.groovy index deff14ce6..151255584 100644 --- a/grails-app/services/au/org/ala/ecodata/CollectoryService.groovy +++ b/grails-app/services/au/org/ala/ecodata/CollectoryService.groovy @@ -15,7 +15,7 @@ class CollectoryService { def institutionId = null try { - def collectoryProps = mapAttributesToCollectory(props) + def collectoryProps = mapOrganisationAttributesToCollectory(props) def result = webService.doPost(grailsApplication.config.collectory.baseURL + 'ws/institution/', collectoryProps) institutionId = webService.extractCollectoryIdFromResult(result) } @@ -25,7 +25,7 @@ class CollectoryService { return institutionId } - private def mapAttributesToCollectory(props) { + private def mapOrganisationAttributesToCollectory(props) { def mapKeyOrganisationDataToCollectory = [ orgType: 'institutionType', description: 'pubDescription', @@ -44,4 +44,116 @@ class CollectoryService { } collectoryProps } + + // create ecodata organisations for any institutions in collectory which are not yet in ecodata + // return null if sucessful, or errors + def syncOrganisations() { + def errors + def url = "${grailsApplication.config.collectory.baseURL}ws/institution/" + def institutions = webService.getJson(url) + if (institutions instanceof List) { + def orgs = Organisation.findAllByCollectoryInstitutionIdIsNotNull() + def map = orgs.collectEntries { + [it.collectoryInstitutionId, it] + } + institutions.each({it -> + if (!map[it.uid]) { + def inst = webService.getJson(url + it.uid) + def result = create([collectoryInstitutionId: inst.uid, + name: inst.name, + description: inst.pubDescription?:"", + url: inst.websiteUrl?:""]) + if (result.errors) errors = result.errors + } + }) + } + errors + } + + /** + * Creates a new Data Provider (=~ ecodata project) and Data Resource (=~ ecodata outputs) + * in the collectory using the supplied properties as input. Much of project meta data is + * stored in a 'hiddenJSON' field in collectory. + * @param id the project id in ecodata. + * @param props the properties for the new data provider and resource. + * @return a map containing the created data provider id and data resource id, or null. + */ + Map createDataProviderAndResource(id, props) { + + Map ids = [:] + + try { + def collectoryProps = mapProjectAttributesToCollectory(props) + def result = webService.doPost(grailsApplication.config.collectory.baseURL + 'ws/dataProvider/', collectoryProps) + ids.dataProviderId = webService.extractCollectoryIdFromResult(result) + if (ids.dataProviderId) { + // create a dataResource in collectory to hold project outputs + collectoryProps.remove('hiddenJSON') + collectoryProps.dataProvider = [uid: ids.dataProviderId] + if (props.collectoryInstitutionId) collectoryProps.institution = [uid: props.collectoryInstitutionId] + collectoryProps.licenseType = props.dataSharingLicense + result = webService.doPost(grailsApplication.config.collectory.baseURL + 'ws/dataResource/', collectoryProps) + ids.dataResourceId = webService.extractCollectoryIdFromResult(result) + } + } catch (Exception e) { + def error = "Error creating collectory info for project ${id} - ${e.message}" + log.error error + } + + return ids + } + + /** + * Updates the Data Provider (=~ ecodata project) and Data Resource (=~ ecodata outputs) + * in the collectory using the supplied properties as input. The 'hiddenJSON' field in + * collectory is recreated to reflect the latest project properties. + * @param project the UPDATED project in ecodata. + * @return void. + */ + def updateDataProviderAndResource(project) { + + def projectId = project.projectId + try { + project = ['id', 'dateCreated', 'documents', 'lastUpdated', 'organisationName', 'projectId', 'sites'].each { + project.remove(it) + } + webService.doPost(grailsApplication.config.collectory.baseURL + 'ws/dataProvider/' + project.dataProviderId, + mapProjectAttributesToCollectory(project)) + if (project.dataResourceId) + webService.doPost(grailsApplication.config.collectory.baseURL + 'ws/dataResource/' + project.dataResourceId, + [licenseType: project.dataSharingLicense]) + } catch (Exception e ) { + def error = "Error updating collectory info for project ${projectId} - ${e.message}" + log.error error + } + + } + + private def mapProjectAttributesToCollectory(props) { + def mapKeyProjectDataToCollectory = [ + description: 'pubDescription', + manager: 'email', + name: 'name', + dataSharingLicense: '', // ignore this property (mapped to dataResource) + organisation: '', // ignore this property + projectId: 'uid', + urlWeb: 'websiteUrl' + ] + def collectoryProps = [ + api_key: grailsApplication.config.api_key + ] + def hiddenJSON = [:] + props.each { k, v -> + if (v != null) { + def keyCollectory = mapKeyProjectDataToCollectory[k] + if (keyCollectory == null) // not mapped to first class collectory property + hiddenJSON[k] = v + else if (keyCollectory != '') // not to be ignored + collectoryProps[keyCollectory] = v + } + } + collectoryProps.hiddenJSON = hiddenJSON + collectoryProps + } + } diff --git a/grails-app/services/au/org/ala/ecodata/DocumentService.groovy b/grails-app/services/au/org/ala/ecodata/DocumentService.groovy index de5fc6b22..1fb2b7a4f 100644 --- a/grails-app/services/au/org/ala/ecodata/DocumentService.groovy +++ b/grails-app/services/au/org/ala/ecodata/DocumentService.groovy @@ -19,6 +19,7 @@ import java.text.SimpleDateFormat class DocumentService { static final ACTIVE = "active" + static final LINKTYPE = "link" static final FILE_LOCK = new Object() static final DIRECTORY_PARTITION_FORMAT = 'yyyy-MM' @@ -53,15 +54,23 @@ class DocumentService { def getAll(boolean includeDeleted = false, levelOfDetail = []) { includeDeleted ? - Document.list().collect { toMap(it, levelOfDetail) } : - Document.findAllByStatus(ACTIVE).collect { toMap(it, levelOfDetail) } + Document.findAllByTypeNotEqual(LINKTYPE).collect { toMap(it, levelOfDetail) } : + Document.findAllByStatusAndTypeNotEqual(ACTIVE, LINKTYPE).collect { toMap(it, levelOfDetail) } + } + + def getAllLinks(levelOfDetail = []) { + Document.findAllByType(LINKTYPE).collect { toMap(it, levelOfDetail) } } def findAllForProjectId(id, levelOfDetail = []) { - Document.findAllByProjectIdAndStatus(id, ACTIVE).collect { toMap(it, levelOfDetail) } + Document.findAllByProjectIdAndStatusAndTypeNotEqual(id, ACTIVE, LINKTYPE).collect { toMap(it, levelOfDetail) } + } + + def findAllLinksForProjectId(id, levelOfDetail = []) { + Document.findAllByProjectIdAndType(id, LINKTYPE).collect { toMap(it, levelOfDetail) } } - - def findAllForProjectIdAndIsPrimaryProjectImage(id, levelOfDetail = []) { + + def findAllForProjectIdAndIsPrimaryProjectImage(id, levelOfDetail = []) { Document.findAllByProjectIdAndStatusAndIsPrimaryProjectImage(id, ACTIVE,true).collect { toMap(it, levelOfDetail) } } @@ -285,6 +294,7 @@ class DocumentService { def query = Document.createCriteria() def results = query { + ne('type', LINKTYPE) eq(ownerType, owner) if (!includeDeleted) { ne('status', 'deleted') @@ -293,4 +303,15 @@ class DocumentService { results.collect{toMap(it, 'flat')} } + + def findAllLinksByOwner(ownerType, owner) { + def query = Document.createCriteria() + + def results = query { + eq('type', LINKTYPE) + eq(ownerType, owner) + } + + results.collect{toMap(it, 'flat')} + } } diff --git a/grails-app/services/au/org/ala/ecodata/ElasticSearchService.groovy b/grails-app/services/au/org/ala/ecodata/ElasticSearchService.groovy index c341dac56..4125abccd 100644 --- a/grails-app/services/au/org/ala/ecodata/ElasticSearchService.groovy +++ b/grails-app/services/au/org/ala/ecodata/ElasticSearchService.groovy @@ -379,6 +379,50 @@ class ElasticSearchService { "publicationStatus":{ "type":"string", "index":"not_analyzed" + }, + "custom": { + "properties": { + "details": { + "properties": { + "objectives": { + "properties": { + "rows1": { + "properties": { + "assets": { + "type":"string", + "path":"just_name", + "fields": { + "meriPlanAssetFacet": { + "type":"string", + "index":"not_analyzed" + } + } + } + } + } + } + }, + "partnership": { + "properties": { + "rows": { + "properties": { + "data3": { + "type":"string", + "path":"just_name", + "fields": { + "partnerOrganisationTypeFacet": { + "type":"string", + "index":"not_analyzed" + } + } + } + } + } + } + } + } + } + } } }, diff --git a/grails-app/services/au/org/ala/ecodata/OrganisationService.groovy b/grails-app/services/au/org/ala/ecodata/OrganisationService.groovy index 24d888de6..20c1d9272 100644 --- a/grails-app/services/au/org/ala/ecodata/OrganisationService.groovy +++ b/grails-app/services/au/org/ala/ecodata/OrganisationService.groovy @@ -8,36 +8,11 @@ import grails.validation.ValidationException class OrganisationService { /** Use to include related projects in the toMap method */ - public static final String PROJECTS = 'projects' // + public static final String PROJECTS = 'projects' static transactional = 'mongo' - def grailsApplication, webService, commonService, projectService, permissionService, documentService, collectoryService - - // create ecodata organisations for any institutions in collectory which are not yet in ecodata - // return null if sucessful, or errors - def collectorySync() { - def errors - def url = "${grailsApplication.config.collectory.baseURL}ws/institution/" - def institutions = webService.getJson(url) - if (institutions instanceof List) { - def orgs = Organisation.findAllByCollectoryInstitutionIdIsNotNull() - def map = orgs.collectEntries { - [it.collectoryInstitutionId, it] - } - institutions.each({it -> - if (!map[it.uid]) { - def inst = webService.getJson(url + it.uid) - def result = create([collectoryInstitutionId: inst.uid, - name: inst.name, - description: inst.pubDescription?:"", - url: inst.websiteUrl?:""]) - if (result.errors) errors = result.errors - } - }) - } - errors - } + def commonService, projectService, userService, permissionService, documentService, collectoryService def get(String id, levelOfDetail = [], includeDeleted = false) { Organisation organisation @@ -70,6 +45,9 @@ class OrganisationService { props.remove('collectoryInstitutionId') commonService.updateProperties(organisation, props) + // Assign the creating user as an admin. + permissionService.addUserAsRoleToOrganisation(userService.getCurrentUserDetails().userId, AccessLevel.admin, organisation.organisationId) + [status:'ok',organisationId:organisation.organisationId] } catch (Exception e) { diff --git a/grails-app/services/au/org/ala/ecodata/ProjectService.groovy b/grails-app/services/au/org/ala/ecodata/ProjectService.groovy index 76352d9f2..a40f54b60 100644 --- a/grails-app/services/au/org/ala/ecodata/ProjectService.groovy +++ b/grails-app/services/au/org/ala/ecodata/ProjectService.groovy @@ -22,33 +22,7 @@ class ProjectService { def reportService def activityService def permissionService - - private def mapAttributesToCollectory(props) { - def mapKeyProjectDataToCollectory = [ - description: 'pubDescription', - manager: 'email', - name: 'name', - dataSharingLicense: '', // ignore this property (mapped to dataResource) - organisation: '', // ignore this property - projectId: 'uid', - urlWeb: 'websiteUrl' - ] - def collectoryProps = [ - api_key: grailsApplication.config.api_key - ] - def hiddenJSON = [:] - props.each { k, v -> - if (v != null) { - def keyCollectory = mapKeyProjectDataToCollectory[k] - if (keyCollectory == null) // not mapped to first class collectory property - hiddenJSON[k] = v - else if (keyCollectory != '') // not to be ignored - collectoryProps[keyCollectory] = v - } - } - collectoryProps.hiddenJSON = hiddenJSON - collectoryProps - } + def collectoryService def getCommonService() { grailsApplication.mainContext.commonService @@ -108,6 +82,7 @@ class ProjectService { mapOfProperties.remove("sites") mapOfProperties.sites = siteService.findAllForProjectId(prj.projectId, [SiteService.FLAT]) mapOfProperties.documents = documentService.findAllForProjectId(prj.projectId, levelOfDetail) + mapOfProperties.links = documentService.findAllLinksForProjectId(prj.projectId, levelOfDetail) if (levelOfDetail == ALL) { mapOfProperties.activities = activityService.findAllForProjectId(prj.projectId, levelOfDetail, includeDeletedActivites) @@ -157,7 +132,6 @@ class ProjectService { def create(props) { assert getCommonService() - def o try { if (props.projectId && Project.findByProjectId(props.projectId)) { // clear session to avoid exception when GORM tries to autoflush the changes @@ -165,12 +139,14 @@ class ProjectService { return [status:'error',error:'Duplicate project id for create ' + props.projectId] } // name is a mandatory property and hence needs to be set before dynamic properties are used (as they trigger validations) - o = new Project(projectId: props.projectId?: Identifiers.getNew(true,''), name:props.name) - o.save(failOnError: true) + def project = new Project(projectId: props.projectId?: Identifiers.getNew(true,''), name:props.name) + project.save(failOnError: true) props.remove('sites') props.remove('id') - getCommonService().updateProperties(o, props) + props << collectoryService.createDataProviderAndResource(project.projectId, props) + getCommonService().updateProperties(project, props) + return [status: 'ok', projectId: project.projectId] } catch (Exception e) { // clear session to avoid exception when GORM tries to autoflush the changes Project.withSession { session -> session.clear() } @@ -178,28 +154,6 @@ class ProjectService { log.error error return [status:'error',error:error] } - - // create a dataProvider in collectory to hold project meta data - try { - def collectoryProps = mapAttributesToCollectory(props) - def result = webService.doPost(grailsApplication.config.collectory.baseURL + 'ws/dataProvider/', collectoryProps) - def dataProviderId = webService.extractCollectoryIdFromResult(result) - if (dataProviderId) { - // create a dataResource in collectory to hold project outputs - props.dataProviderId = dataProviderId - collectoryProps.remove('hiddenJSON') - collectoryProps.dataProvider = [uid: dataProviderId] - if (props.collectoryInstitutionId) collectoryProps.institution = [uid: props.collectoryInstitutionId] - collectoryProps.licenseType = props.dataSharingLicense - result = webService.doPost(grailsApplication.config.collectory.baseURL + 'ws/dataResource/', collectoryProps) - props.dataResourceId = webService.extractCollectoryIdFromResult(result) - } - } catch (Exception e) { - def error = "Error creating collectory info for project ${o.projectId} - ${e.message}" - log.error error - } - - return [status:'ok',projectId:o.projectId] } def update(props, id) { @@ -207,27 +161,15 @@ class ProjectService { if (a) { try { getCommonService().updateProperties(a, props) + if (a.dataProviderId) + collectoryService.updateDataProviderAndResource(Project.findByProjectId(id)) + return [status: 'ok'] } catch (Exception e) { Project.withSession { session -> session.clear() } def error = "Error updating project ${id} - ${e.message}" log.error error return [status: 'error', error: error] } - if (a.dataProviderId) { // recreate 'hiddenJSON' in collectory every time (minus some attributes) - try { - a = Project.findByProjectId(id) - ['id', 'dateCreated', 'documents', 'lastUpdated', 'organisationName', 'projectId', 'sites'].each { - a.remove(it) - } - webService.doPost(grailsApplication.config.collectory.baseURL + 'ws/dataProvider/' + a.dataProviderId, mapAttributesToCollectory(a)) - if (a.dataResourceId) - webService.doPost(grailsApplication.config.collectory.baseURL + 'ws/dataResource/' + a.dataResourceId, [licenseType: a.dataSharingLicense]) - } catch (Exception e ) { - def error = "Error updating collectory info for project ${id} - ${e.message}" - log.error error - } - } - return [status: 'ok'] } else { def error = "Error updating project - no such id ${id}" log.error error diff --git a/grails-app/services/au/org/ala/ecodata/SiteService.groovy b/grails-app/services/au/org/ala/ecodata/SiteService.groovy index 0f16c90d7..507e6733f 100644 --- a/grails-app/services/au/org/ala/ecodata/SiteService.groovy +++ b/grails-app/services/au/org/ala/ecodata/SiteService.groovy @@ -211,8 +211,13 @@ class SiteService { def result switch (geometry.type) { case 'Circle': - // We support circles, but they are not officially supported. - result = [type:'Point', coordinates:geometry.centre] + // We support circles, but they are not valid geojson. The spatial portal does a conversion for us. + if (geometry.pid) { + result = geometryForPid(geometry.pid) + } + else { + result = [type: 'Point', coordinates: geometry.centre] + } break case 'Point': case 'point': diff --git a/models/activities-model.json b/models/activities-model.json index fc3b698c6..b7f84e118 100644 --- a/models/activities-model.json +++ b/models/activities-model.json @@ -1,3463 +1,3977 @@ { - "selectedActivity": { - "supportsSites": true, - "category": "Implementation actions", - "name": "Conservation Actions for Species and Communities", - "type": "Activity", - "outputs": [ - "Conservation Works Details", - "Participant Information" - ], - "gmsId": "CATS" - }, - "activities": [ + "outputs": [ { - "status": "deleted", - "name": "Biodiversity Fund - Outcomes and Monitoring", - "type": "Assessment", - "outputs": ["Biodiversity Fund Outcomes & Monitoring Methodology"] + "template": "revegetationDetails", + "scores": [ + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "RVA", + "name": "areaRevegHa", + "description": "The area of land actually revegetated with native species by the planting of seedlings, sowing of seed and managed native regeneration actions.", + "label": "Area of revegetation works (Ha)", + "units": "Ha", + "listName": "", + "category": "Revegetation", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "", + "name": "lengthReveg", + "description": "The lineal length (longest axis) of waterways and coastline revegetated.", + "label": "Length (kilometres) of waterway / coastline revegetated", + "listName": "", + "category": "Revegetation" + }, + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "RVN", + "name": "totalNumberPlanted", + "description": "The total number of seedlings planted.", + "label": "Number of plants planted", + "units": "", + "category": "Revegetation", + "isOutputTarget": true + }, + { + "aggregationType": "COUNT", + "displayType": "", + "name": "species", + "description": "The total number of species occurrence records as an aggregate of the number of species in each revegetation activity. Individual species may be multi-counted if the same species has been planted in multiple activities.", + "label": "Total No. of species occurrence records", + "listName": "planting", + "category": "Revegetation" + }, + { + "aggregationType": "SUM", + "displayType": "barchart", + "name": "numberPlanted", + "description": "The number of seedlings of each species planted to establish native vegetation in revegetation sites.", + "label": "No. of plants planted by species", + "groupBy": "output:species.name", + "listName": "planting", + "category": "Revegetation" + }, + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "RVSS", + "name": "totalSeedSownKg", + "description": "The total weight of seed sown in revegetation plots.", + "label": "Kilograms of seed sown", + "units": "Kg", + "category": "Revegetation", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "barchart", + "name": "seedSownKg", + "description": "The weight of seed of each species sown to establish native vegetation in revegetation sites.", + "label": "Kilograms of seed sown by species", + "units": "", + "groupBy": "output:species.name", + "listName": "planting", + "category": "Revegetation", + "isOutputTarget": false + }, + { + "aggregationType": "HISTOGRAM", + "displayType": "piechart", + "name": "environmentalBenefits", + "description": "The proportional distribution of environmental benefits being delivered by revegetation activities. Individual activities may be delivering multiple benefits.", + "label": "Proportion of activities undertaking revegetation by environmental benefit type", + "units": "", + "listName": "", + "category": "Revegetation" + }, + { + "aggregationType": "HISTOGRAM", + "displayType": "piechart", + "name": "revegMethod", + "description": "The proportional distribution of methods used for revegetation by revegetation activities. Individual activities may be applying multiple methods..", + "label": "No. of activities undertaking revegetation by revegetation method", + "category": "Revegetation" + }, + { + "aggregationType": "HISTOGRAM", + "displayType": "piechart", + "name": "connectivityIndex", + "description": "The proportional break-down of revegetation activities contributing to landscape connectivity by connectivity category.", + "label": "No. of activities increasing connectivity by type of connection", + "listName": "", + "category": "Revegetation" + }, + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "RVT2A", + "name": "numberPlanted", + "description": "Total number of plants planted which will grow to a mature height of greater than 2 metres. This does not include natural regeneration or plants established from the sowing of seed.", + "label": "No. of plants planted > 2 metres in height", + "groupBy": "output:matureHeight", + "listName": "planting", + "category": "Revegetation", + "filterBy": "> 2 metres", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "RVS2A", + "name": "numberPlanted", + "description": "Kilograms of seed sown of species expected to grow > 2 metres in height", + "label": "Kilograms of seed sown of species expected to grow > 2 metres in height", + "units": "Kg", + "groupBy": "output:matureHeight", + "listName": "planting", + "category": "Revegetation", + "filterBy": "> 2 metres", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "RVT2B", + "name": "numberPlanted", + "description": "Total number of plants planted which will grow to a mature height of less than 2 metres. This does not include natural regeneration or plants established from the sowing of seed.", + "label": "No. of plants planted < 2 metres in height", + "groupBy": "output:matureHeight", + "listName": "planting", + "category": "Revegetation", + "filterBy": "< 2 metres", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "RVS2B", + "name": "seedSownKg", + "description": "Kilograms of seed sown of species expected to grow < 2 metres in height", + "label": "Kilograms of seed sown of species expected to grow < 2 metres in height", + "units": "Kg", + "groupBy": "output:matureHeight", + "listName": "planting", + "category": "Revegetation", + "filterBy": "< 2 metres", + "isOutputTarget": true + } + ], + "name": "Revegetation Details" }, { - "supportsSites": true, - "category": "Implementation actions", - "name": "Community Participation and Engagement", - "type": "Activity", - "outputs": [ - "Event Details", - "Participant Information", - "Materials Provided to Participants" + "template": "seedCollectionDetails", + "scores": [ + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "SDC", + "name": "totalSeedCollectedKg", + "description": "The total weight of seed collected for storage or propagation.", + "label": "Total seed collected (Kg)", + "units": "Kg", + "listName": "", + "category": "Revegetation", + "isOutputTarget": true + }, + { + "aggregationType": "COUNT", + "displayType": "", + "name": "seedSourceSpecies", + "description": "The total number of species occurrence records as an aggregate of the number of species in each seed collection activity. Individual species may be multi-counted if seed has been collecteted from the same species in multiple activities.", + "label": "Total No. of species records", + "listName": "seedsList", + "category": "Revegetation" + }, + { + "aggregationType": "SUM", + "displayType": "barchart", + "name": "seedCollectedKg", + "description": "The total weight of seed collected from each recorded species.", + "label": "Kg of seed collected by species", + "units": "Kg", + "groupBy": "output:seedSourceSpecies.name", + "listName": "seedsList", + "category": "Revegetation" + } ], - "gmsId": "CPEE" + "name": "Seed Collection Details" }, { - "supportsSites": true, - "category": "Implementation actions", - "name": "Debris Removal", - "type": "Activity", - "outputs": [ - "Debris Removal Details", - "Participant Information" + "template": "sitePreparationActions", + "scores": [ + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "STP", + "name": "preparationAreaTotal", + "description": "Sum of the area of land specifically recorded as having preparatory works undertaken in advance of another associated activity. Site preparation works include activities such as fencing, weed or pest treatment, drainage or soil moisture management actions, etc.", + "label": "Total area prepared (Ha) for follow-up treatment actions", + "units": "Ha", + "category": "Sites and Activity Planning", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "piechart", + "name": "preparationAreaTotal", + "description": "Breakdown of the area prepared for a follow-up action by the type of preparation action.", + "label": "Area prepared (Ha) by type of preparation works", + "units": "Ha", + "groupBy": "output:actionsList.groundPreparationWorks", + "listName": "", + "category": "Sites and Activity Planning" + }, + { + "aggregationType": "COUNT", + "displayType": "piechart", + "name": "groundPreparationWorks", + "description": "Count of the number of actions of each type associated with the site preparation activity. ", + "label": "Proportion of actions contributing to the preparation of land for subsequent actions by the type of subsequent action", + "groupBy": "output:associatedActivity", + "listName": "actionsList", + "category": "Sites and Activity Planning" + } ], - "gmsId": "DRV DRW" + "name": "Site Preparation Actions" }, { - "supportsSites": true, - "category": "Implementation actions", - "name": "Disease Management", - "type": "Activity", - "outputs": [ - "Disease Management Details", - "Participant Information" + "template": "participation", + "scores": [ + { + "aggregationType": "SUM", + "displayType": "", + "name": "totalParticipantsNotEmployed", + "description": "The number of participants at activities and events who are not employed on projects. Individuals attending multiple activities will be counted for their attendance at each event.", + "label": "No of volunteers participating in project activities", + "units": "", + "listName": "", + "category": "Community Engagement and Capacity Building", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "", + "name": "numberOfIndigenousParticipants", + "description": "The number of Indigenous people attending and/or participating in activities and events. Individuals attending multiple activities will be counted for their attendance at each event.", + "label": "No of Indigenous participants at project events. ", + "units": "", + "category": "Indigenous Capacity", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "", + "name": "totalParticipantsNew", + "description": "The total number of unique individuals who attended at least one project event. This measure is an attempt to determine new vs repeat participation as a measure of the effectiveness of projects/programmes in reaching out and engaging with their communities.", + "label": "Total No. of new participants (attending project events for the first time)", + "units": "", + "category": "Community Engagement and Capacity Building", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "", + "name": "numberOfFarmingEntitiesNew", + "description": "The total number of unique/individual farming entities (farm businesses) engaged in project activities. This data may double-count entities which participate in more than one activity/event in a given project.", + "label": "Total No. of unique farming entities engaged", + "units": "", + "category": "Farm Management Practices", + "isOutputTarget": false + } ], - "gmsId": "DMA" + "name": "Participant Information" }, { - "supportsSites": true, - "category": "Implementation actions", - "name": "Erosion Management", - "supportsPhotoPoints": true, - "type": "Activity", - "outputs": [ - "Erosion Management Details", - "Participant Information" - ], - "gmsId": "EMA EML" - }, - { - "supportsSites": true, - "category": "Assessment & monitoring", - "name": "Fauna Survey - general", - "supportsPhotoPoints": true, - "type": "Assessment", - "outputs": [ - "Survey Information", - "Fauna Survey Details", - "Participant Information" - ], - "gmsId": "FBS" - }, - { - "supportsSites": true, - "category": "Implementation actions", - "name": "Fencing", - "type": "Activity", - "outputs": [ - "Fence Details", - "Participant Information" - ], - "gmsId": "FNC" - }, - { - "supportsSites": true, - "category": "Implementation actions", - "name": "Conservation Grazing Management", - "supportsPhotoPoints": true, - "type": "Activity", - "outputs": [ - "Stock Management Details", - "Photo Points" - ], - "gmsId": "CGM" - }, - { - "supportsSites": true, - "category": "Implementation actions", - "name": "Fire Management", - "supportsPhotoPoints": true, - "type": "Activity", - "outputs": [ - "Fire Management Details", - "Participant Information", - "Photo Points" - ], - "gmsId": "FMA" - }, - { - "supportsSites": true, - "category": "Assessment & monitoring", - "name": "Flora Survey - general", - "supportsPhotoPoints": true, - "type": "Assessment", - "outputs": [ - "Survey Information", - "Flora Survey Details", - "Participant Information" - ], - "gmsId": "FRBS" - }, - { - "supportsSites": true, - "category": "Implementation actions", - "name": "Heritage Conservation", - "type": "Activity", - "outputs": [ - "Heritage Conservation Information", - "Expected Heritage Outcomes", - "Participant Information" - ], - "gmsId": "HC HSA" + "template": "photoPoints", + "scores": [{ + "aggregationType": "SUM", + "name": "numberOfPoints", + "label": "No. of photo points", + "units": "", + "isOutputTarget": false + }], + "name": "Photo Points" }, { - "category": "Administration, management & reporting", - "name": "Indigenous Employment and Businesses", - "type": "Activity", - "outputs": [ - "Indigenous Employment", - "Indigenous Businesses" + "template": "communityActivityDetails", + "scores": [ + { + "aggregationType": "COUNT", + "displayType": "", + "gmsId": "CPEE", + "name": "eventType", + "description": "Count of the number of community participation and engagement events run.", + "label": "Total No. of community participation and engagement events run", + "listName": "events", + "category": "Community Engagement and Capacity Building", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "", + "name": "totalEventHrs", + "description": "Sum of the duration of events run", + "label": "Total amount of time (Hrs) over which events have run", + "units": "", + "listName": "", + "category": "Community Engagement and Capacity Building" + }, + { + "aggregationType": "HISTOGRAM", + "displayType": "piechart", + "name": "eventPurpose", + "description": "Breakdown of the number of events run for different purposes", + "label": "No. of events run by purpose of event", + "units": "", + "listName": "events", + "category": "Community Engagement and Capacity Building", + "isOutputTarget": false + }, + { + "aggregationType": "HISTOGRAM", + "displayType": "piechart", + "name": "industryType", + "description": "Breakdown of the number of events run by the type of industry that they are targeted at.", + "label": "No. of events by type of industry", + "groupBy": "", + "listName": "events", + "category": "Community Engagement and Capacity Building" + } ], - "gmsId": "IPE" + "name": "Event Details" }, { - "category": "Training", - "name": "Indigenous Knowledge Transfer", - "type": "Activity", - "outputs": ["Indigenous Knowledge Transfer Details"], - "gmsId": "IKM IKT" + "template": "communicationMaterialsSupplied", + "scores": [], + "name": "Materials Provided to Participants" }, { - "category": "Implementation actions", - "name": "Management Plan Development", - "type": "Activity", - "outputs": [ - "Plan Development Details", - "Participant Information" + "template": "fireInformation", + "scores": [ + { + "aggregationType": "COUNT", + "displayType": "", + "name": "areaOfFireHa", + "description": "The total number of activities applying fire as a management tool. This figure may also include some activities undertaking wildfire management actions.", + "label": "No. of activities undertaking fire management measures", + "listName": "", + "category": "Natural Resources Management" + }, + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "FMA", + "name": "areaOfFireHa", + "description": "The area of the fire ground actually burnt. This may be different to the total area managed.", + "label": "Burnt area (Ha)", + "units": "Ha", + "category": "Natural Resources Management", + "isOutputTarget": true + }, + { + "aggregationType": "HISTOGRAM", + "displayType": "", + "name": "fireReason", + "description": "Proportional breakdown of the number of fire management activities by the reason for using fire as a management tool. Activities may be undertaken for multiple reasons and therefore may be double-counted in the total figures. This graph should only be interpreted as a proportional breakdown.", + "label": "No. of activities by reason for burn", + "units": "", + "listName": "", + "category": "Natural Resources Management", + "isOutputTarget": false + }, + { + "aggregationType": "HISTOGRAM", + "displayType": "", + "name": "fireEventType", + "description": "Breakdown of the number of fire management activities undertaken by the type of fire event.", + "label": "No. of activities by type of fire event", + "units": "", + "category": "Natural Resources Management" + } ], - "gmsId": "MPD" - }, - { - "supportsSites": true, - "category": "Implementation actions", - "name": "Management Practice Change", - "type": "Activity", - "outputs": ["Management Practice Change Details"], - "gmsId": "MPC MPCFE MPCSP" + "name": "Fire Management Details" }, { - "supportsSites": true, - "category": "Implementation actions", - "name": "Conservation Actions for Species and Communities", - "type": "Activity", - "outputs": [ - "Conservation Works Details", - "Participant Information" + "template": "evidenceOfWeedTreatment", + "scores": [ + { + "aggregationType": "AVERAGE", + "displayType": "", + "name": "evidenceOfPreviousWeedTreatment", + "description": "Average effectiveness of previous treatment (% killed) as assessed from the evidence of previous treatment events during weed mapping and monitoring activities", + "label": "Average effectiveness of Previous Treatment (% killed)", + "units": "%", + "listName": "", + "category": "Invasive Species Management - Weeds", + "isOutputTarget": false + }, + { + "aggregationType": "COUNT", + "displayType": "piechart", + "name": "effectivenessOfPreviousWeedTreatment", + "description": "Proportional breakdown of the number of reportings of different typs of evidence of previous weed treatment actions, as noted during weed mapping and monitoring activities.", + "label": "Proportional breakdown of the No. of reports of different types of previous treatment evidence", + "groupBy": "output:evidenceOfPreviousWeedTreatment", + "listName": "", + "category": "Invasive Species Management - Weeds" + } ], - "gmsId": "CATS" - }, - { - "category": "Administration, management & reporting", - "name": "Outcomes, Evaluation and Learning - final report", - "type": "Activity", - "outputs": [ - "Outcomes", - "Evaluation", - "Lessons Learned" - ] + "name": "Evidence of Weed Treatment" }, { - "supportsSites": true, - "category": "Assessment & monitoring", - "status": "active", - "name": "Pest Animal Survey", - "supportsPhotoPoints": true, - "type": "Assessment", - "outputs": [ - "Evidence of Pest Management Activity", - "Pest Observation and Monitoring Details", - "Participant Information", - "Photo Points" + "template": "weedObservationDetails", + "scores": [ + { + "aggregationType": "COUNT", + "displayType": "", + "gmsId": "WMM WSA", + "name": "weedObservationMonitoringDetails", + "description": "Count of the number of weed observation, mapping and monitoring activities undertaken.", + "label": "No. of activities undertaking weed monitoring", + "listName": "", + "category": "Invasive Species Management - Weeds", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "", + "name": "weedCoverHa", + "description": "Sum of the assessed area of all weed species reported in mapping and monitoring activities. Several species may occur on the same area of land and therefore this figure IS NOT representative of the net area of land on which weeds have been reported (ie. the total area covered by weeds)", + "label": "Area (Ha) of weed cover monitored", + "units": "", + "listName": "weedObservationMonitoringDetails", + "category": "Invasive Species Management - Weeds", + "isOutputTarget": false + }, + { + "aggregationType": "COUNT", + "displayType": "piechart", + "name": "weedSpecies", + "description": "Frequency count of reported weed observation/monitoring records by different infestation status classes", + "label": "Frequency of reported weed observation/monitoring records by infestation status", + "groupBy": "output:weedStatus", + "listName": "weedObservationMonitoringDetails", + "category": "Invasive Species Management - Weeds" + }, + { + "aggregationType": "SUM", + "displayType": "barchart", + "name": "weedCoverHa", + "description": "Total area of reported weed cover by species. Note that the sum of areas will likely be greater than the net total area of weed cover.", + "label": "Total area (Ha) of reported weed cover by species", + "groupBy": "output:weedSpecies.name", + "listName": "weedObservationMonitoringDetails", + "category": "Invasive Species Management - Weeds" + } ], - "gmsId": "PSA" + "name": "Weed Observation and Monitoring Details" }, { - "supportsSites": true, - "category": "Implementation actions", - "name": "Pest Management", - "supportsPhotoPoints": true, - "type": "Activity", - "outputs": [ - "Pest Management Details", - "Fence Details", - "Participant Information", - "Photo Points" + "template": "Weed", + "scores": [ + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "WDT", + "name": "areaTreatedHa", + "description": "The total area of weeds for which an initial treatment was undertaken.", + "label": "Total new area treated (Ha)", + "units": "Ha", + "groupBy": "output:treatmentEventType", + "category": "Invasive Species Management - Weeds", + "filterBy": "Initial treatment", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "", + "name": "linearAreaTreated", + "description": "Total lineal length of stream frontage and/or roadside treated for weeds.", + "label": "Total lineal length (Km) of stream frontage and/or roadside treated for weeds.", + "listName": "", + "category": "Invasive Species Management - Weeds" + }, + { + "aggregationType": "AVERAGE", + "displayType": "", + "description": "Average cost per hectare of weed treatment. This is a non-mandatory field and the calculated average may be skewed by incomplete data.", + "label": "Average cost ($/Ha) of weed treatment", + "category": "Invasive Species Management - Weeds" + }, + { + "aggregationType": "COUNT", + "displayType": "", + "name": "targetSpecies", + "description": "The total number of occurrence records of reported weed species.", + "label": "Total No. of weed records reported", + "listName": "weedsTreated", + "category": "Invasive Species Management - Weeds" + }, + { + "aggregationType": "HISTOGRAM", + "displayType": "", + "name": "treatmentEventType", + "description": "Breakdown of the number of activities treating weeds by type of treatment", + "label": "Proportion of activities treating weeds by type of treatment event", + "listName": "", + "category": "Invasive Species Management - Weeds" + }, + { + "aggregationType": "COUNT", + "displayType": "barchart", + "name": "treatmentMethod", + "description": "Breakdown of the number of weed treatment actions undertaken by species.", + "label": "No. of activities treating weeds by species treated", + "units": "", + "groupBy": "output:targetSpecies.name", + "listName": "weedsTreated", + "category": "Invasive Species Management - Weeds", + "isOutputTarget": false + }, + { + "aggregationType": "COUNT", + "displayType": "barchart", + "name": "treatmentObjective", + "description": "Proportional breakdown of the number of activities treating weeds by treatment method. A single activity may include multiple treatment methods being applied to different species in the activity, but for any given species the count is valid.", + "label": "Proportion of activities treating weeds by treatment method", + "groupBy": "output:weedsTreated.treatmentMethod", + "listName": "", + "category": "Invasive Species Management - Weeds", + "isOutputTarget": false + }, + { + "aggregationType": "HISTOGRAM", + "displayType": "", + "name": "treatmentObjective", + "description": "Breakdown of the number of activities treating weeds by treatment objective.", + "label": "No. of activities treating weeds by treatment objective", + "listName": "", + "category": "Invasive Species Management - Weeds" + }, + { + "aggregationType": "HISTOGRAM", + "displayType": "", + "name": "partnerType", + "description": "Breakdown of the number of activities undertaking weed treatment by the main type of partner undertaking the action.", + "label": "No. of activities treating weeds by type of delivery partner", + "listName": "", + "category": "Invasive Species Management - Weeds" + }, + { + "aggregationType": "SUM", + "displayType": "piechart", + "name": "areaTreatedHa", + "description": "Total area of weed treatment undertaken grouped by the main type of partner undertaking actions.", + "label": "Total area (Ha.) of weed treatment by main activity partner", + "groupBy": "output:partnerType", + "listName": "", + "category": "Invasive Species Management - Weeds" + }, + { + "aggregationType": "SUM", + "displayType": "piechart", + "name": "areaTreatedHa", + "description": "Total area of weed treatment undertaken grouped by the type of treatment objective.", + "label": "Total area (Ha.) of weed treatment by treatment objective", + "groupBy": "output:treatmentObjective", + "listName": "", + "category": "Invasive Species Management - Weeds" + } ], - "gmsId": "PMA PMQ" + "name": "Weed Treatment Details" }, { - "category": "Implementation actions", - "name": "Plant Propagation", - "type": "Activity", - "outputs": [ - "Plant Propagation Details", - "Participant Information" + "template": "stockManagementDetails", + "scores": [ + { + "aggregationType": "COUNT", + "displayType": "", + "name": "areaOfStockManagementHa", + "description": "Count of the total number of activities undertaken involving conservation grazing", + "label": "Total No. of activities undertaken involving conservation grazing", + "listName": "", + "category": "Natural Resources Management" + }, + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "CGM", + "name": "areaOfStockManagementHa", + "description": "Total area managed with conservation grazing", + "label": "Area managed with conservation grazing (Ha)", + "units": "Ha", + "listName": "", + "category": "Natural Resources Management", + "isOutputTarget": true + }, + { + "aggregationType": "HISTOGRAM", + "displayType": "", + "name": "stockManagementReason", + "description": "Breakdown of the number of activities undertaking conservation management actions by the reason for undertaking actions", + "label": "Proportion of activities undertaking conservation grazing by stock management reason", + "units": "", + "category": "Natural Resources Management", + "isOutputTarget": false + }, + { + "aggregationType": "SUM", + "displayType": "barchart", + "name": "areaOfStockManagementHa", + "description": "Proportional breakdown of the area managed with conservation grazing by species used. Multiple species may be used concurrently and therefore area may be double-counted in such cases. This data should only be interpreted as proportional representation.", + "label": "Proportional breakdown of the area managed with conservation grazing by species used", + "groupBy": "output:stockingDetails.stockingManagementSpecies", + "listName": "", + "category": "Natural Resources Management" + } ], - "gmsId": "PPRP" + "name": "Stock Management Details" }, { - "supportsSites": true, - "category": "Assessment & monitoring", - "name": "Plant Survival Survey", - "supportsPhotoPoints": true, - "type": "Assessment", - "outputs": [ - "Vegetation Monitoring Results", - "Participant Information", - "Photo Points" + "template": "infrastructureDetails", + "scores": [ + { + "aggregationType": "COUNT", + "displayType": "", + "name": "infrastructureType", + "description": "The total number of activities undertaken to build/install infrastructure for the protection, enhancement or public appreciation of native species and natural environments.", + "label": "No. of activities undertaking infrastructure works", + "listName": "infrastructureInstallations", + "category": "Natural Resources Management" + }, + { + "aggregationType": "SUM", + "displayType": "", + "name": "noInstallationsTotal", + "description": "Total number of infrastructure installations / facilities established for the protection, enhancement or public appreciation of native species and natural environments.", + "label": "No. of infrastructure installations / facilities established", + "category": "Natural Resources Management" + }, + { + "aggregationType": "SUM", + "displayType": "barchart", + "name": "noInstallations", + "description": "Total number of infrastructure installations / facilities established for the protection, enhancement or public appreciation of native species and natural environments by the type of facility built/installed.", + "label": "No. of installations by type of infrastructure", + "units": "", + "groupBy": "output:infrastructureType", + "listName": "infrastructureInstallations", + "category": "Natural Resources Management" + } ], - "gmsId": "PSS PSC" - }, - { - "category": "Administration, management & reporting", - "name": "Project Administration", - "type": "Activity", - "outputs": [ - "Administration Activities", - "Participant Information" - ] + "name": "Infrastructure Details" }, { - "supportsSites": true, - "category": "Implementation actions", - "name": "Public Access and Infrastructure", - "type": "Activity", - "outputs": [ - "Access Control Details", - "Infrastructure Details", - "Participant Information" + "template": "planningActivityDetails", + "scores": [ + { + "aggregationType": "COUNT", + "displayType": "", + "gmsId": "MPD", + "name": "typeOfPlan", + "description": "The total number of plans developed", + "label": "No. of activities undertaking plan development work", + "listName": "", + "category": "Project Management, Planning and Research Outputs" + }, + { + "aggregationType": "COUNT", + "displayType": "", + "name": "typeOfPlan", + "description": "Count of the number of plans developed which have been classified as NEW plans (ie. not revisions of existing plans).", + "label": "No. of new plans developed", + "groupBy": "output:versionOfPlan", + "listName": "", + "category": "Project Management, Planning and Research Outputs", + "filterBy": "New plan" + }, + { + "aggregationType": "SUM", + "displayType": "", + "name": "noOfPlanActionsAddressed", + "description": "Total of the number of actions specified in plans which have been addressed by scheduled activities.", + "label": "No. of Plan actions addressed", + "category": "Project Management, Planning and Research Outputs", + "isOutputTarget": false + }, + { + "aggregationType": "HISTOGRAM", + "displayType": "piechart", + "name": "typeOfPlan", + "description": "Breakdown of the number of different types of plans developed", + "label": "No. of plan development activities by type of plan", + "category": "Project Management, Planning and Research Outputs", + "isOutputTarget": false + } ], - "gmsId": "PAM" + "name": "Plan Development Details" }, { - "supportsSites": true, - "category": "Implementation actions", - "name": "Research", - "type": "Activity", - "outputs": [ - "Research Information", - "Participant Information" - ] + "template": "researchInformation", + "scores": [ + { + "aggregationType": "COUNT", + "displayType": "", + "name": "typeOfResearch", + "description": "The total number of research activities undertaken which have recorded data.", + "label": "Total No. of research activities undertaken", + "listName": "", + "category": "Project Management, Planning and Research Outputs" + }, + { + "aggregationType": "HISTOGRAM", + "displayType": "", + "name": "typeOfResearch", + "description": "Breakdown of the number of research projects by type of project", + "label": "No. of research activities by type of research", + "category": "Project Management, Planning and Research Outputs" + } + ], + "name": "Research Information" }, { - "supportsSites": true, - "category": "Implementation actions", - "name": "Revegetation", - "supportsPhotoPoints": true, - "type": "Activity", - "outputs": [ - "Revegetation Details", - "Participant Information", - "Photo Points" - ], - "gmsId": "RVA RVN RVSS RVT2A RVT2B RVS2B" - }, - { - "supportsSites": true, - "category": "Implementation actions", - "name": "Seed Collection", - "type": "Activity", - "outputs": [ - "Seed Collection Details", - "Participant Information" + "template": "waterManagementDetails", + "scores": [ + { + "aggregationType": "COUNT", + "displayType": "", + "gmsId": "WMN", + "name": "isCurrentFlowNatural", + "description": "Simple count of the number of activities undertaking water management actions.", + "label": "No. of water management activities implemented", + "listName": "", + "category": "Natural Resources Management" + }, + { + "aggregationType": "SUM", + "displayType": "", + "name": "hydrologicalStructuresInstalled", + "description": "The total number of hydrological structures installed", + "label": "No. of hydrological structures installed", + "category": "Natural Resources Management", + "isOutputTarget": false + }, + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "WMA", + "name": "managedArea", + "description": "The area of land actively managed with water management activities for enhanced environmental values.", + "label": "Area (Ha) managed for water values", + "units": "Ha", + "listName": "", + "category": "Natural Resources Management", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "piechart", + "name": "managedArea", + "description": "Breakdown of the area of land actively managed with water management activities by the type of environmental benefit achieved. Note that a single water management action may achieve multiple benefits and therefore this metric should only be interpreted as proportional.", + "label": "Proportion of area (Ha) managed by environmental benefit type", + "groupBy": "output:waterMgtEnvironBenefit", + "listName": "", + "category": "Natural Resources Management" + }, + { + "aggregationType": "SUM", + "displayType": "piechart", + "name": "managedArea", + "description": "Breakdown of the area of land actively managed with water management activities by the type of water body managed.", + "label": "Proportion of area (Ha) managed by type of water body", + "groupBy": "output:waterbodyType", + "listName": "", + "category": "Natural Resources Management" + }, + { + "aggregationType": "SUM", + "displayType": "piechart", + "name": "managedArea", + "description": "Breakdown of the area of land actively managed with water management activities by the purpose for which water is being managed. Note that a single water management action may apply to multiple purposes and therefore this metric should only be interpreted as proportional.", + "label": "Proportion of area (Ha) managed by water use purpose", + "groupBy": "output:waterUsePurpose", + "listName": "", + "category": "Natural Resources Management" + } ], - "gmsId": "SDC" - }, - { - "supportsSites": true, - "category": "Assessment & monitoring", - "name": "Site Monitoring Plan", - "type": "Activity", - "outputs": ["Planned Monitoring Approach"] + "name": "Water Management Details" }, { - "supportsSites": true, - "category": "Implementation actions", - "name": "Site Preparation", - "supportsPhotoPoints": true, - "type": "Activity", - "outputs": [ - "Site Preparation Actions", - "Weed Treatment Details", - "Participant Information", - "Photo Points" + "template": "trainingDetails", + "scores": [ + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "TSD", + "name": "totalCompletingCourses", + "description": "Sum of the number of people who complete formal/accredited training courses.", + "label": "Total No. of people completing formal training courses", + "category": "Community Engagement and Capacity Building", + "isOutputTarget": true + }, + { + "aggregationType": "COUNT", + "displayType": "", + "name": "totalCompletingCourses", + "description": "Count of the total number of activities which recorded details of individuals completing formal/accredited training courses.", + "label": "No. of activities undertaken which involved formal training", + "listName": "", + "category": "Community Engagement and Capacity Building" + }, + { + "aggregationType": "COUNT", + "displayType": "", + "name": "courseTitle", + "description": "Count of the total number of formal/accredited training courses for which participation details have been recorded. Each class is counted as a a course.", + "label": "No. of courses attended by project participants", + "listName": "courseAttendance", + "category": "Community Engagement and Capacity Building" + }, + { + "aggregationType": "SUM", + "displayType": "piechart", + "name": "numberCompleted", + "description": "Breakdown of the total number of people who completed a formal/accredited training course by the type of course attended.", + "label": "No. completing courses by course type", + "groupBy": "output:typeOfCourse", + "listName": "courseAttendance", + "category": "Community Engagement and Capacity Building" + }, + { + "aggregationType": "SUM", + "displayType": "barchart", + "name": "numberCompleted", + "description": "Breakdown of the number of people who completed a formal/accredited training course by standard Australian qualification level.of courses.", + "label": "No. completing courses by qualification level", + "groupBy": "output:qualificationLevel", + "listName": "courseAttendance", + "category": "Community Engagement and Capacity Building" + } ], - "gmsId": "STP" + "name": "Training Details" }, { - "category": "Training", - "name": "Training and Skills Development", - "type": "Activity", - "outputs": [ - "Training Details", - "Skills Development", - "Participant Information" + "template": "skillsDevelopment", + "scores": [ + { + "aggregationType": "COUNT", + "displayType": "", + "name": "skillsApplication", + "description": "Count of the number of activities which have recorded at least one application of skills developed as a result of project participation and/or project-based formal training.", + "label": "No. of activities indicating application of enhanced skills", + "listName": "", + "category": "Community Engagement and Capacity Building" + }, + { + "aggregationType": "HISTOGRAM", + "displayType": "piechart", + "name": "skillsApplication", + "description": "Proportional breakdown of the ways in which skills developed as a result of project participation have been applied. This is a count of the number of occurrences recorded for each type of application.", + "label": "Application of enhanced skills by type", + "listName": "", + "category": "Community Engagement and Capacity Building" + } ], - "gmsId": "TSD" - }, - { - "supportsSites": true, - "category": "Implementation actions", - "name": "Water Management", - "type": "Activity", - "outputs": ["Water Management Details"], - "gmsId": "WMA WMN" + "name": "Skills Development" }, { - "supportsSites": true, - "category": "Assessment & monitoring", - "name": "Water Quality Survey", - "type": "Assessment", - "outputs": [ - "General information & Participants", - "Environmental Information at the Time of Sampling", - "Water Quality Measurements" - ], - "gmsId": "WQSA" + "template": "riskAssessment", + "scores": [{ + "aggregationType": "COUNT", + "displayType": "barchart", + "name": "riskType", + "description": "Count of the number of times a particular issue has been recorded. Activities can have multiple threats and risks.", + "label": "No. of threat and risk issues by type of issue", + "groupBy": "output:riskType", + "listName": "riskTable", + "category": "Sites and Activity Planning" + }], + "name": "Threatening Processes and Site Condition Risks" }, { - "supportsSites": true, - "category": "Assessment & monitoring", - "name": "Weed Mapping & Monitoring", - "supportsPhotoPoints": true, - "type": "Assessment", - "outputs": [ - "Evidence of Weed Treatment", - "Weed Observation and Monitoring Details", - "Participant Information", - "Photo Points" + "template": "debrisRemovalDetails", + "scores": [ + { + "aggregationType": "COUNT", + "displayType": "", + "name": "debrisRemovalMethod", + "description": "The number of activities which have recorded debris removal information.", + "label": "Total No. of debris removal activities", + "listName": "", + "category": "Natural Resources Management" + }, + { + "aggregationType": "HISTOGRAM", + "displayType": "piechart", + "name": "debrisType", + "description": "Breakdown of the number of activities that have removed debris by the type of debris removed", + "label": "No. of activities removing debris by types of material", + "category": "Natural Resources Management" + }, + { + "aggregationType": "HISTOGRAM", + "displayType": "piechart", + "name": "debrisRemovalMethod", + "description": "Proportional distribution of the number of activities that have removed debris by the removal methods. A single activity can use multiple methods.", + "label": "No. of activities removing debris by removal method", + "listName": "", + "category": "Natural Resources Management" + }, + { + "aggregationType": "SUM", + "displayType": "", + "name": "debrisActivityArea", + "description": "The area over which debris removal activities have been undertaken. Revisits to the same area will be double-counted.", + "label": "Area (Ha) covered by debris removal activities", + "units": "Ha", + "listName": "", + "category": "Natural Resources Management" + }, + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "DRW", + "name": "debrisWeightTonnes", + "description": "The total mass of debris removed.", + "label": "Weight of debris removed (Tonnes)", + "units": "Tonnes", + "category": "Natural Resources Management", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "piechart", + "name": "debrisWeightTonnes", + "description": "Breakdown of the mass of debris removed by the type of debris removed", + "label": "Weight of debris removed by type of material", + "units": "Tonnes", + "groupBy": "output:debrisType", + "listName": "", + "category": "Natural Resources Management", + "filterBy": "" + }, + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "DRV", + "name": "debrisVolumeM3", + "description": "The total volume of debris removed.", + "label": "Volume of debris removed (m3)", + "units": "m3", + "category": "Natural Resources Management", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "piechart", + "name": "debrisVolumeM3", + "description": "Breakdown of the mass of debris removed by the type of debris removed", + "label": "Volume of debris removed by type of material", + "units": "m3", + "groupBy": "output:debrisType", + "listName": "", + "category": "Natural Resources Management", + "filterBy": "" + } ], - "gmsId": "WMM WSA" + "name": "Debris Removal Details" }, { - "supportsSites": true, - "category": "Implementation actions", - "name": "Weed Treatment", - "supportsPhotoPoints": true, - "type": "Activity", - "outputs": [ - "Weed Treatment Details", - "Participant Information", - "Photo Points" - ], - "gmsId": "WDT" - }, - { - "supportsSites": true, - "category": "Implementation actions", - "name": "Works Planning and Risk", - "supportsPhotoPoints": true, - "type": "Activity", - "outputs": [ - "Site Planning Details", - "Threatening Processes and Site Condition Risks", - "Participant Information" - ], - "gmsId": "STA" - }, - { - "category": "Administration, management & reporting", - "name": "Progress, Outcomes and Learning - stage report", - "type": "Activity", - "outputs": [ - "Overview of Project Progress", - "Environmental, Economic and Social Outcomes", - "Implementation Update", - "Lessons Learned and Improvements" - ] - }, - { - "supportsSites": true, - "category": "Assessment & monitoring", - "name": "Vegetation Assessment - Commonwealth government methodology", - "supportsPhotoPoints": true, - "type": "Assessment", - "outputs": [ - "Sampling Site Information", - "Photo Points", - "Field Sheet 1 - Ground Cover", - "Field Sheet 2 - Exotic Fauna", - "Field Sheet 3 - Overstorey and Midstorey Projected Crown Cover", - "Field Sheet 4 - Crown Type", - "Field Sheet 5 - Species Diversity" + "template": "erosionManagementDetails", + "scores": [ + { + "aggregationType": "COUNT", + "displayType": "", + "gmsId": "", + "name": "erosionAreaTreated", + "description": "Count of the number of activities which have implemented erosion management actions.", + "label": "No. of activities undertaking erosion control works", + "listName": "", + "category": "Natural Resources Management" + }, + { + "aggregationType": "SUM", + "displayType": "", + "name": "erosionStructuresInstalled", + "description": "The total number of structures installed to to control erosion.", + "label": "Total No. of erosion control structures installed", + "listName": "", + "category": "Natural Resources Management", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "EML", + "name": "erosionLength", + "description": "Total lineal length of stream frontage and/or coastline which has been treated with erosion management actions.", + "label": "Length of stream/coastline treated (Km)", + "units": "Km", + "category": "Natural Resources Management", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "EMA", + "name": "erosionAreaTreated", + "description": "The total area of erosion treated by management actions.", + "label": "Erosion area treated (Ha)", + "units": "Ha", + "category": "Natural Resources Management", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "piechart", + "name": "erosionStructuresInstalled", + "description": "Count of the number of activities which installed structures to control erosion by the type of structure installed.", + "label": "No. of activities which installed erosion control structures by type of structure", + "groupBy": "output:erosionControlStructures", + "listName": "", + "category": "Natural Resources Management", + "isOutputTarget": false + }, + { + "aggregationType": "SUM", + "displayType": "piechart", + "name": "erosionAreaTreated", + "description": "Proportional breakdown of the erosion area treated by the type of erosion treated. Note that a single treatment may apply to multiple types of erosion over the same area and therefore this metric should only be interpreted as a proportional breakdown.", + "label": "Proportion of erosion area treated (Ha) by the type of erosion treated", + "groupBy": "output:erosionType", + "listName": "", + "category": "Natural Resources Management" + }, + { + "aggregationType": "SUM", + "displayType": "piechart", + "name": "erosionAreaTreated", + "description": "Proportional breakdown of the erosion area treated by the type of erosion management/treatment method used. Note that a single treatment may apply multiple types of methods over the same area and therefore this metric should only be interpreted as a proportional breakdown.", + "label": "Proportion of erosion area treated (Ha) by the type of management method used", + "groupBy": "output:erosionTreatmentMethod", + "listName": "", + "category": "Natural Resources Management" + } ], - "gmsId": "VAC" - }, - { - "category": "Assessment & monitoring", - "status": "deleted", - "name": "Vegetation Assessment - BioCondition (QLD)", - "type": "Assessment", - "outputs": ["BioCondition Method"] - }, - { - "supportsSites": true, - "status": "deleted", - "name": "Vegetation Assessment - BioMetric (NSW)", - "supportsPhotoPoints": true, - "type": "Assessment", - "outputs": ["Floristic Composition"] - }, - { - "category": "Assessment & monitoring", - "name": "Vegetation Assessment - Habitat Hectares v2 (VIC)", - "type": "Assessment", - "outputs": [ - "Vegetation Assessment - Survey Information", - "Native Species", - "Weed Species", - "Trees" - ] - }, - { - "supportsSites": true, - "status": "deleted", - "name": "Vegetation Assessment - Native Vegetation Condition Assessment and Monitoring (WA)", - "supportsPhotoPoints": true, - "type": "Assessment", - "outputs": ["Floristic Composition"] - }, - { - "category": "Assessment & monitoring", - "status": "active", - "name": "TasVeg - Native Vegetation Assessment - Forest Vegetation", - "type": "Assessment", - "outputs": ["TasVeg Native Vegetation Assessment Method - Forest Vegetation"] - }, - { - "category": "Assessment & monitoring", - "status": "deleted", - "name": "TasVeg - Native Vegetation Assessment - Non-Forest Vegetation", - "type": "Assessment", - "outputs": ["TasVeg Native Vegetation Assessment Method - Non-Forest Vegetation"] - }, - { - "status": "deleted", - "name": "Feral animal assessment", - "type": "Assessment", - "outputs": [ - "Feral Animal Abundance Score", - "Feral Animal Frequency Score" - ] - }, - { - "status": "deleted", - "name": "Site assessment", - "type": "Assessment", - "outputs": [ - "Participant Information", - "Vegetation Assessment", - "Site Condition Components", - "Landscape Context Components", - "Threatening Processes and Site Condition Risks", - "Photo Points" - ] - }, - { - "category": "Assessment & monitoring", - "status": "deleted", - "name": "Vegetation Assessment - Bushland Condition Monitoring (SA)", - "type": "Assessment", - "outputs": [ - "Bushland Condition - Site Health Summary", - "Indicator 1 - Plant Species Diversity", - "Indicator 2 - Weed Abundance & Threat", - "Indicator 3 - Structural Diversity", - "Indicator 4 - Regeneration", - "Indicator 5 - Tree and Shrub Health", - "Indicator 6 - Tree Habitat", - "Indicator 7 - Feral Animals", - "Indicator 8 - Total Grazing Pressure", - "Indicator 9 - Animal Species", - "Indicator 10 - Bushland Degradation Risk", - "Benchmarks - SA" - ] - }, - { - "category": "Small Grants", - "status": "deleted", - "name": "Progress Report", - "type": "Assessment", - "outputs": [ - "Progress Report Details", - "Attachments" - ] - }, - { - "category": "Small Grants", - "status": "deleted", - "name": "Final Report", - "type": "Assessment", - "outputs": [ - "Final Report Details", - "Output Details", - "Project Acquittal", - "Attachments" - ] - }, - { - "category": "None", - "status": "deleted", - "name": "Upload of stage 1 and 2 reporting data", - "type": "Activity", - "outputs": ["Upload of stage 1 and 2 reporting data"], - "gmsId": "" - }, - { - "supportsSites": false, - "category": "Programme Reporting", - "name": "Green Army - Monthly project status report", - "supportsPhotoPoints": false, - "type": "Report", - "outputs": ["Monthly Status Report Data"] - }, - { - "supportsSites": false, - "category": "Programme Reporting", - "name": "Green Army - Quarterly project report", - "supportsPhotoPoints": false, - "type": "Report", - "outputs": ["Three Monthly Report"] - }, - { - "supportsSites": false, - "category": "Programme Reporting", - "name": "Green Army - End of Project Report", - "supportsPhotoPoints": false, - "type": "Report", - "outputs": ["End of Project Report Details"] + "name": "Erosion Management Details" }, { - "supportsSites": false, - "category": "Programme Reporting", - "name": "Green Army - Desktop Audit Checklist", - "supportsPhotoPoints": false, - "type": "Report", - "outputs": ["Desktop Audit Checklist Details"] + "template": "accessControlDetails", + "scores": [ + { + "aggregationType": "COUNT", + "displayType": "", + "gmsId": "PAM", + "name": "structuresInstalled", + "description": "Count of the number of activities implementing access control works", + "label": "No. of activities implementing access control works", + "category": "Natural Resources Management", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "", + "name": "numberOfInstallations", + "description": "Sum of the total number of structures installed for access management.", + "label": "Total No. of structures installed for access management", + "category": "Natural Resources Management", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "", + "name": "accessAreaProtected", + "description": "Area in hectares that is being protected as a direct result of installing access control structures.", + "label": "Area protected by access control installations (Ha)", + "listName": "", + "category": "Natural Resources Management", + "isOutputTarget": true + }, + { + "aggregationType": "COUNT", + "displayType": "piechart", + "name": "numberOfInstallations", + "description": "Breakdown of the number of structures installed for access management by type of structure", + "label": "Proportion of structures installed for access management by type of structure", + "groupBy": "output:structuresInstalled", + "category": "Natural Resources Management" + }, + { + "aggregationType": "COUNT", + "displayType": "piechart", + "name": "numberOfInstallations", + "description": "Breakdown of the number of access control actions undertaken by the purpose for which access control structures were installed. A single action may include more than one structure and address multiple purposes. Therefore this metric should only be interpreted as proportionally representative.", + "label": "Proportion of actions undertaken for access management by purpose", + "groupBy": "output:accessControlPurpose", + "category": "Natural Resources Management" + }, + { + "aggregationType": "COUNT", + "displayType": "piechart", + "name": "numberOfInstallations", + "description": "Breakdown of the number of access control actions undertaken by the broad method used to control the access. A single action may include more than one structure and address multiple purposes. Therefore this metric should only be interpreted as proportionally representative.", + "label": "Proportion of actions undertaken for access management by management method", + "groupBy": "output:accessManagementMethod", + "category": "Natural Resources Management" + } + ], + "name": "Access Control Details" }, { - "supportsSites": false, - "category": "Programme Reporting", - "name": "Green Army - Change or Absence of Team Supervisor", - "supportsPhotoPoints": false, - "type": "Report", - "outputs": ["Change or Absence of Team Supervisor Report"] + "template": "plannedMonitoring", + "scores": [{ + "aggregationType": "HISTOGRAM", + "displayType": "piechart", + "name": "plannedActivityType", + "description": "Breakdown of the No. of planned monitoring action by the type of monitoring action", + "label": "No. of planned monitoring action by the type of monitoring action", + "listName": "plannedActions", + "category": "Sites and Activity Planning" + }], + "name": "Planned Monitoring Approach" }, { - "supportsSites": false, - "category": "Programme Reporting", - "name": "Green Army - Site Visit Checklist", - "supportsPhotoPoints": false, - "type": "Report", - "outputs": ["Site Visit Details"] - } - ], - "outputs": [ - { - "template": "revegetationDetails", + "template": "practiceChangeDetails", "scores": [ { - "isOutputTarget": true, - "category": "Revegetation", - "listName": "", - "description": "The area of land actually revegetated with native species by the planting of seedlings, sowing of seed and managed native regeneration actions.", + "aggregationType": "SUM", "displayType": "", - "name": "areaRevegHa", + "gmsId": "MPCFE", + "name": "totalEntitiesAdoptingChange", + "description": "The total number of unique/individual farming/fisher entities (farming/fishing businesses) that have made changes towards more sustainable management and primary production practices.", + "label": "Total No. of farming entities adopting sustainable practice change", + "category": "Farm Management Practices", + "isOutputTarget": true + }, + { "aggregationType": "SUM", - "label": "Area of revegetation works (Ha)", + "displayType": "", + "gmsId": "MPC", + "name": "totalChangePracticeTreatedArea", + "description": "The surface area of land/water over which improved management practices have been undertaken/implemented as a result of government funded projects. ", + "label": "Area of land (Ha) on which improved management practices have been implemented", "units": "Ha", - "gmsId": "RVA" + "category": "Farm Management Practices", + "isOutputTarget": true }, { - "category": "Revegetation", - "listName": "", - "description": "The lineal length (longest axis) of waterways and coastline revegetated.", + "aggregationType": "SUM", "displayType": "", - "name": "lengthReveg", + "gmsId": "MPCSP", + "name": "benefitAreaHa", + "description": "The surface area of land/water which is now managed using sustainable practices and resulting from implementation of funded projects.", + "label": "Area of land (Ha) changed to sustainable practices", + "units": "Ha", + "category": "Farm Management Practices", + "isOutputTarget": true + }, + { "aggregationType": "SUM", - "label": "Length (kilometres) of waterway / coastline revegetated" + "displayType": "piechart", + "name": "benefitAreaHa", + "description": "Breakdown of area covered by changed management practices (resulting from government funded projects) by the type of industry.", + "label": "Area covered by changed management practices by industry type", + "groupBy": "output:practiceChange.industryType", + "listName": "", + "category": "Farm Management Practices" }, { - "isOutputTarget": true, - "category": "Revegetation", - "description": "The total number of seedlings planted.", - "displayType": "", - "name": "totalNumberPlanted", "aggregationType": "SUM", - "label": "Number of plants planted", - "units": "", - "gmsId": "RVN" + "displayType": "piechart", + "name": "entitiesAdoptingChange", + "description": "Breakdown of number of farm/fisher entities adopting changed management practices (resulting from government funded projects) by the type of industry.", + "label": "No. of farm/fisher entities adopting changed management practices by industry type", + "groupBy": "output:industryType", + "listName": "practiceChange", + "category": "Farm Management Practices" + }, + { + "aggregationType": "SUM", + "displayType": "piechart", + "name": "noInfluenced", + "description": "Breakdown of the number of people influenced by changed management practices (resulting from government funded projects) by the type of industry.", + "label": "No. of people influenced by changed management practices by industry type", + "groupBy": "output:industryType", + "listName": "practiceChange", + "category": "Farm Management Practices" }, { - "category": "Revegetation", - "listName": "planting", - "description": "The total number of species occurrence records as an aggregate of the number of species in each revegetation activity. Individual species may be multi-counted if the same species has been planted in multiple activities.", - "displayType": "", - "name": "species", "aggregationType": "COUNT", - "label": "Total No. of species occurrence records" + "displayType": "piechart", + "name": "industryType", + "description": "Breakdown of the number of management change actions by different types of facilitation strategies used to encourage change to more sustainable management practices. Individual activities can employ multiple strategies and this result should only be interpreted as a proportional breakdown and not actual figures.", + "label": "Proportion of actions implementing sustainable practices by type of change facilitation strategy.", + "groupBy": "output:practiceChangeAction", + "listName": "practiceChange", + "category": "Farm Management Practices" }, { - "groupBy": "output:species.name", - "category": "Revegetation", - "listName": "planting", - "description": "The number of seedlings of each species planted to establish native vegetation in revegetation sites.", - "displayType": "barchart", - "name": "numberPlanted", "aggregationType": "SUM", - "label": "No. of plants planted by species" + "displayType": "piechart", + "name": "changePracticeTreatedArea", + "description": "Proportional breakdown of the area covered by practice changes (Ha) by the reasons for changing management practices. People can have multiple reasons for changing practices and therefore this should only be interpreted as proportional rather than actual figures.", + "label": "Proportional breakdown of the area covered by practice changes (Ha) by the reasons for changing management practices", + "groupBy": "output:changePurpose", + "listName": "practiceChange", + "category": "Farm Management Practices" }, { - "isOutputTarget": true, - "category": "Revegetation", - "description": "The total weight of seed sown in revegetation plots.", - "displayType": "", - "name": "totalSeedSownKg", "aggregationType": "SUM", - "label": "Kilograms of seed sown", - "units": "Kg", - "gmsId": "RVSS" + "displayType": "piechart", + "name": "entitiesAdoptingChange", + "description": "Proportional breakdown of the number of farming/fisher entities adopting practice change by the reasons for changing management practices. People can have multiple reasons for changing practices and therefore this should only be interpreted as proportional rather than actual figures.", + "label": "Proportional breakdown of the No. of entities adopting practice change by the reasons for changing management practices", + "groupBy": "output:changePurpose", + "listName": "practiceChange", + "category": "Farm Management Practices" }, { - "groupBy": "output:species.name", - "isOutputTarget": false, - "category": "Revegetation", - "listName": "planting", - "description": "The weight of seed of each species sown to establish native vegetation in revegetation sites.", - "displayType": "barchart", - "name": "seedSownKg", "aggregationType": "SUM", - "label": "Kilograms of seed sown by species", - "units": "" + "displayType": "piechart", + "name": "noInfluenced", + "description": "Proportional breakdown of the number of individual people influenced by the reasons for changing management practices. People can have multiple reasons for changing practices and therefore this should only be interpreted as proportional rather than actual figures.", + "label": "Proportional breakdown of the No. of people influenced by the reasons for changing management practices", + "groupBy": "output:changePurpose", + "listName": "practiceChange", + "category": "Farm Management Practices" }, { - "category": "Revegetation", - "listName": "", - "description": "The proportional distribution of environmental benefits being delivered by revegetation activities. Individual activities may be delivering multiple benefits.", + "aggregationType": "SUM", "displayType": "piechart", - "name": "environmentalBenefits", - "aggregationType": "HISTOGRAM", - "label": "Proportion of activities undertaking revegetation by environmental benefit type", - "units": "" + "name": "changePracticeTreatedArea", + "description": "The sum of areas for each instance of each category of public good outcome recorded. Note that an activity may achieve more than one public good outcome and hence the area may be double-counted. Therefore this should be interpreted as a proportional breakdown only.", + "label": "Proportional breakdown of the area covered by practice changes by the public good outcomes from changing management practices", + "groupBy": "output:targetOutcomes", + "listName": "practiceChange", + "category": "Farm Management Practices" }, { - "category": "Revegetation", - "description": "The proportional distribution of methods used for revegetation by revegetation activities. Individual activities may be applying multiple methods..", + "aggregationType": "SUM", "displayType": "piechart", - "name": "revegMethod", - "aggregationType": "HISTOGRAM", - "label": "No. of activities undertaking revegetation by revegetation method" + "name": "entitiesAdoptingChange", + "description": "Sum of the number of entities adopting practice change for each instance of each category of public good outcome recorded. Note that an activity may achieve more than one public good outcome and hence the number of entities may be double-counted. Therefore this should be interpreted as a proportional breakdown only.", + "label": "Proportional breakdown of the No. of entities adopting practice change by the public good outcomes from changing management practices", + "groupBy": "output:targetOutcomes", + "listName": "practiceChange", + "category": "Farm Management Practices" }, { - "category": "Revegetation", - "listName": "", - "description": "The proportional break-down of revegetation activities contributing to landscape connectivity by connectivity category.", + "aggregationType": "SUM", "displayType": "piechart", - "name": "connectivityIndex", - "aggregationType": "HISTOGRAM", - "label": "No. of activities increasing connectivity by type of connection" + "name": "noInfluenced", + "description": "Sum of the number of individual people influenced by the reasons for changing management practices. People can have mu for changing practices and therefore this should only be interpreted as proportional rather than actual figures.", + "label": "Proportional breakdown of the No. of people influenced by the public good outcomes from changing management practices", + "groupBy": "output:targetOutcomes", + "listName": "practiceChange", + "category": "Farm Management Practices" }, { - "groupBy": "output:matureHeight", - "isOutputTarget": true, - "category": "Revegetation", - "listName": "planting", - "description": "Total number of plants planted which will grow to a mature height of greater than 2 metres. This does not include natural regeneration or plants established from the sowing of seed.", - "displayType": "", - "name": "numberPlanted", "aggregationType": "SUM", - "label": "No. of plants planted > 2 metres in height", - "filterBy": "> 2 metres", - "gmsId": "RVT2A" + "displayType": "piechart", + "name": "changePracticeTreatedArea", + "description": "The sum of areas for each instance of each category of change facilitation strategy used. Note that an activity may use more than one facilitation strategy and hence the area may be double-counted. Therefore this should be interpreted as a proportional breakdown only.", + "label": "Proportional breakdown of the area covered by practice changes by the type of change facilitation strategy", + "groupBy": "output:practiceChangeAction", + "listName": "practiceChange", + "category": "Farm Management Practices" }, { - "groupBy": "output:matureHeight", - "isOutputTarget": true, - "category": "Revegetation", - "listName": "planting", - "description": "Kilograms of seed sown of species expected to grow < 2 metres in height", - "displayType": "", - "name": "seedSownKg", "aggregationType": "SUM", - "label": "Kilograms of seed sown of species expected to grow > 2 metres in height", - "filterBy": "< 2 metres", - "units": "Kg", - "gmsId": "RVS2B" + "displayType": "piechart", + "name": "entitiesAdoptingChange", + "description": "Sum of the number of entities adopting practice change for each instance of each facilitation strategy used. Note that an activity may use more than one facilitation strategy and hence the number of entities may be double-counted. Therefore this should be interpreted as a proportional breakdown only.", + "label": "Proportional breakdown of the No. of entities adopting practice change by the types of change facilitation strategies used.", + "groupBy": "output:practiceChangeAction", + "listName": "practiceChange", + "category": "Farm Management Practices" }, { - "groupBy": "output:matureHeight", - "isOutputTarget": true, - "category": "Revegetation", - "listName": "planting", - "description": "Total number of plants planted which will grow to a mature height of less than 2 metres. This does not include natural regeneration or plants established from the sowing of seed.", - "displayType": "", - "name": "numberPlanted", "aggregationType": "SUM", - "label": "No. of plants planted < 2 metres in height", - "filterBy": "< 2 metres", - "gmsId": "RVT2B" + "displayType": "piechart", + "name": "noInfluenced", + "description": "Sum of the number of individual people influenced by the strategy used to facilitate change. Multiple strategies can be used to facilitate change and therefore this should only be interpreted as proportional rather than actual figures.", + "label": "Proportional breakdown of the No. of people influenced by the change facilitation strategy", + "groupBy": "output:practiceChangeAction", + "listName": "practiceChange", + "category": "Farm Management Practices" } ], - "name": "Revegetation Details" + "name": "Management Practice Change Details" }, { - "template": "seedCollectionDetails", + "template": "sustainablePracticeInitiatives", + "scores": [], + "name": "Sustainable Practice Initiatives" + }, + { + "template": "otherConservationWorks", "scores": [ { - "isOutputTarget": true, - "category": "Revegetation", - "listName": "", - "description": "The total weight of seed collected for storage or propagation.", + "aggregationType": "COUNT", "displayType": "", - "name": "totalSeedCollectedKg", - "aggregationType": "SUM", - "label": "Total seed collected (Kg)", - "units": "Kg", - "gmsId": "SDC" + "gmsId": "CATS", + "name": "targetSpecies", + "description": "A simple count of the number of activities undertaking work which is targeted at protecting/conserving specific species.", + "label": "No. of activities undertaking species conservation actions", + "listName": "", + "category": "Biodiversity Management" }, { - "category": "Revegetation", - "listName": "seedsList", - "description": "The total number of species occurrence records as an aggregate of the number of species in each seed collection activity. Individual species may be multi-counted if seed has been collecteted from the same species in multiple activities.", + "aggregationType": "HISTOGRAM", + "displayType": "barchart", + "name": "targetSpecies", + "description": "Breakdown of the number of activities undertaken to protect/conserve species by species.", + "label": "No. of activities implementing conservation actions by species", + "listName": "", + "category": "Biodiversity Management" + }, + { + "aggregationType": "COUNT", "displayType": "", - "name": "seedSourceSpecies", + "name": "conservationActionType", + "description": "Count of the total number of species conservation actions undertaken", + "label": "Total No. of species conservation actions undertaken", + "listName": "conservationWorks", + "category": "Biodiversity Management" + }, + { "aggregationType": "COUNT", - "label": "Total No. of species records" + "displayType": "piechart", + "name": "conservationActionType", + "description": "Breakdown of the number of conservation actions undertaken by species being protected. ", + "label": "No. of conservation actions undertaken by species protected. ", + "groupBy": "output:targetSpecies.name", + "listName": "conservationWorks", + "category": "Biodiversity Management" }, { - "groupBy": "output:seedSourceSpecies.name", - "category": "Revegetation", - "listName": "seedsList", - "description": "The total weight of seed collected from each recorded species.", - "displayType": "barchart", - "name": "seedCollectedKg", "aggregationType": "SUM", - "label": "Kg of seed collected by species", - "units": "Kg" - } - ], - "name": "Seed Collection Details" - }, - { - "template": "sitePreparationActions", - "scores": [ - { - "isOutputTarget": true, - "category": "Sites and Activity Planning", - "description": "Sum of the area of land specifically recorded as having preparatory works undertaken in advance of another associated activity. Site preparation works include activities such as fencing, weed or pest treatment, drainage or soil moisture management actions, etc.", "displayType": "", - "name": "preparationAreaTotal", - "aggregationType": "SUM", - "label": "Total area prepared (Ha) for follow-up treatment actions", - "units": "Ha", - "gmsId": "STP" + "name": "animalBreedingNos", + "description": "The total number of individual animals in breeding programmes and plants in plant propagation programmes", + "label": "No. of individual animals in captive breeding programs", + "listName": "", + "category": "Biodiversity Management" }, { - "groupBy": "output:actionsList.groundPreparationWorks", - "category": "Sites and Activity Planning", - "listName": "", - "description": "Breakdown of the area prepared for a follow-up action by the type of preparation action.", - "displayType": "piechart", - "name": "preparationAreaTotal", "aggregationType": "SUM", - "label": "Area prepared (Ha) by type of preparation works", - "units": "Ha" + "displayType": "", + "name": "animalReleaseNumber", + "description": "The total number of plants and animals returned to the wild from ", + "label": "No. of individual animals released back into the wild from breeding and propagation programmes.", + "listName": "", + "category": "Biodiversity Management" }, { - "groupBy": "output:associatedActivity", - "category": "Sites and Activity Planning", - "listName": "actionsList", - "description": "Count of the number of actions of each type associated with the site preparation activity. ", + "aggregationType": "SUM", "displayType": "piechart", - "name": "groundPreparationWorks", - "aggregationType": "COUNT", - "label": "Proportion of actions contributing to the preparation of land for subsequent actions by the type of subsequent action" - } - ], - "name": "Site Preparation Actions" - }, - { - "template": "participation", - "scores": [ + "name": "areaImpactedByWorks", + "description": "The total area impacted by different types of species conservation actions.", + "label": "Area (Ha) impacted by conservation action type", + "groupBy": "output:conservationActionType", + "listName": "conservationWorks", + "category": "Biodiversity Management" + }, { - "isOutputTarget": true, - "category": "Community Engagement and Capacity Building", - "listName": "", - "description": "The number of participants at activities and events who are not employed on projects. Individuals attending multiple activities will be counted for their attendance at each event.", - "displayType": "", - "name": "totalParticipantsNotEmployed", "aggregationType": "SUM", - "label": "No of volunteers participating in project activities", - "units": "" + "displayType": "", + "name": "numberOfProtectionMechanisms", + "description": "The total number of agreements/protection mechanisms implemented to conserve/protect species.", + "label": "No. of protection mechanisms implemented", + "groupBy": "", + "listName": "protectionMechanisms", + "category": "Biodiversity Management", + "isOutputTarget": true }, { - "isOutputTarget": true, - "category": "Indigenous Capacity", - "description": "The number of Indigenous people attending and/or participating in activities and events. Individuals attending multiple activities will be counted for their attendance at each event.", - "displayType": "", - "name": "numberOfIndigenousParticipants", - "aggregationType": "SUM", - "label": "No of Indigenous participants at project events. ", - "units": "" + "aggregationType": "COUNT", + "displayType": "piechart", + "name": "numberOfProtectionMechanisms", + "description": "Breakdown of the number of species protection mechanisms implemented of each type.", + "label": "No. of protection mechanisms implemented by protection mechanism type", + "groupBy": "output:protectionMechanism", + "listName": "protectionMechanisms", + "category": "Biodiversity Management" }, { - "isOutputTarget": true, - "category": "Community Engagement and Capacity Building", - "description": "The total number of unique individuals who attended at least one project event. This measure is an attempt to determine new vs repeat participation as a measure of the effectiveness of projects/programmes in reaching out and engaging with their communities.", - "displayType": "", - "name": "totalParticipantsNew", "aggregationType": "SUM", - "label": "Total No. of new participants (attending project events for the first time)", - "units": "" + "displayType": "", + "name": "areaUnderAgreement", + "description": "Sum of the areas covered by all Agreement mechanisms. Multiple mechanisms covering the same area may result in area of coverage being double-counted.", + "label": "Area (Ha) covered by Agreement mechanisms", + "listName": "protectionMechanisms", + "category": "Biodiversity Management", + "isOutputTarget": true }, { - "isOutputTarget": false, - "category": "Farm Management Practices", - "description": "The total number of unique/individual farming entities (farm businesses) engaged in project activities. This data may double-count entities which participate in more than one activity/event in a given project.", - "displayType": "", - "name": "numberOfFarmingEntitiesNew", "aggregationType": "SUM", - "label": "Total No. of unique farming entities engaged", - "units": "" + "displayType": "piechart", + "name": "areaUnderAgreement", + "description": "Breakdown of the total area covered by each different type of agreement/protection mechanism", + "label": "Area (Ha) under agreement by protection mechanism type", + "groupBy": "output:protectionMechanism", + "listName": "protectionMechanisms", + "category": "Biodiversity Management" } ], - "name": "Participant Information" + "name": "Conservation Works Details" }, { - "template": "photoPoints", + "template": "adminActivities", "scores": [{ - "isOutputTarget": false, - "name": "numberOfPoints", "aggregationType": "SUM", - "label": "No. of photo points", - "units": "" + "displayType": "barchart", + "name": "hoursActionTotal", + "description": "Proportional distribution of the time (hrs) spent undertaking different kinds of project administration activities.", + "label": "Total hours spent undertaking different types of project administration tasks", + "groupBy": "output:adminActionType", + "listName": "adminActions", + "category": "Project Management, Planning and Research Outputs" }], - "name": "Photo Points" + "name": "Administration Activities" }, { - "template": "communityActivityDetails", + "template": "outcomes", + "scores": [], + "name": "Outcomes" + }, + { + "template": "evaluation", + "scores": [], + "name": "Evaluation" + }, + { + "template": "lessonsLearned", + "scores": [], + "name": "Lessons Learned" + }, + { + "template": "knowledgeTransfer", "scores": [ { - "isOutputTarget": true, - "category": "Community Engagement and Capacity Building", - "listName": "events", - "description": "Count of the number of community participation and engagement events run.", + "aggregationType": "COUNT", "displayType": "", - "name": "eventType", + "name": "numberOnCountryVisits", + "description": "Sum of the activities which have included at least one aspect of the sharing and/or transfer of indigenous knowledge", + "label": "Total No. of activities involving the sharing of Indigenous knowledge", + "listName": "", + "category": "Indigenous Capacity" + }, + { "aggregationType": "COUNT", - "label": "Total No. of community participation and engagement events run", - "gmsId": "CPEE" + "displayType": "", + "name": "numberOnCountryVisits", + "description": "Count of the number of activities which were organised or run by indigenous decision makers", + "label": "No. of activities organised or run by Indigenous people", + "listName": "", + "category": "Indigenous Capacity", + "filterBy": "indigenousDecisionMakers:Yes" }, { - "category": "Community Engagement and Capacity Building", + "aggregationType": "SUM", + "displayType": "", + "gmsId": "IKT", + "name": "numberOnCountryVisits", + "description": "Sum of indigenous on-country visit events recorded which involved both older and younger people together.", + "label": "No. of on-country visits involving both older and younger people together", "listName": "", - "description": "Sum of the duration of events run", + "category": "Indigenous Capacity" + }, + { + "aggregationType": "COUNT", "displayType": "", - "name": "totalEventHrs", - "aggregationType": "SUM", - "label": "Total amount of time (Hrs) over which events have run", - "units": "" + "name": "numberOnCountryVisits", + "description": "Count of the number of activities recording the documentation of indigenous knowledge.", + "label": "No. of activities in which Indigenous knowledge was documented", + "listName": "", + "category": "Indigenous Capacity", + "filterBy": "indigenousKnowledgeDocumented:Yes" }, { - "isOutputTarget": false, - "category": "Community Engagement and Capacity Building", - "listName": "events", - "description": "Breakdown of the number of events run for different purposes", - "displayType": "piechart", - "name": "eventPurpose", - "aggregationType": "HISTOGRAM", - "label": "No. of events run by purpose of event", - "units": "" + "aggregationType": "SUM", + "displayType": "", + "gmsId": "IKM", + "name": "datasetsShared", + "description": "Sum of the number of datasets recorded as having been shared into the public domain.", + "label": "Total No. of Indigenous datasets shared publicly", + "listName": "", + "category": "Indigenous Capacity" }, { - "groupBy": "", - "category": "Community Engagement and Capacity Building", - "listName": "events", - "description": "Breakdown of the number of events run by the type of industry that they are targeted at.", - "displayType": "piechart", - "name": "industryType", - "aggregationType": "HISTOGRAM", - "label": "No. of events by type of industry" + "aggregationType": "SUM", + "displayType": "", + "name": "formalPartnerships", + "description": "Sum of the number of formal partnerships established. These include MOUs, agreements, joint delivery, etc. which involve indigenous people in the design, delivery and/or monitoring and guidance of project implementation.", + "label": "Total No. of Indigenous partnerships formally established", + "listName": "", + "category": "Indigenous Capacity" } ], - "name": "Event Details" - }, - { - "template": "communicationMaterialsSupplied", - "scores": [], - "name": "Materials Provided to Participants" + "name": "Indigenous Knowledge Transfer Details" }, { - "template": "fireInformation", + "template": "plantPropagationDetails", "scores": [ { - "category": "Natural Resources Management", - "listName": "", - "description": "The total number of activities applying fire as a management tool. This figure may also include some activities undertaking wildfire management actions.", + "aggregationType": "SUM", "displayType": "", - "name": "areaOfFireHa", - "aggregationType": "COUNT", - "label": "No. of activities undertaking fire management measures" + "gmsId": "PPRP", + "name": "totalNumberGrown", + "description": "The total number of plants which have been propagated and nurtured to the point of being ready for planting out.", + "label": "Total No. of plants grown and ready for planting ", + "category": "Revegetation", + "isOutputTarget": true }, { - "isOutputTarget": true, - "category": "Natural Resources Management", - "description": "The area of the fire ground actually burnt. This may be different to the total area managed.", - "displayType": "", - "name": "areaOfFireHa", "aggregationType": "SUM", - "label": "Burnt area (Ha)", - "units": "Ha", - "gmsId": "FMA" + "displayType": "", + "name": "totalSeedWeight", + "description": "The total weight of seed which has been germinated and grown into plants ready for planting out.", + "label": "Total weight (Kg) of seed germinated to produce the finished stock", + "category": "Revegetation" }, { - "isOutputTarget": false, - "category": "Natural Resources Management", - "listName": "", - "description": "Proportional breakdown of the number of fire management activities by the reason for using fire as a management tool. Activities may be undertaken for multiple reasons and therefore may be double-counted in the total figures. This graph should only be interpreted as a proportional breakdown.", - "displayType": "", - "name": "fireReason", - "aggregationType": "HISTOGRAM", - "label": "No. of activities by reason for burn", - "units": "" + "aggregationType": "COUNT", + "displayType": "piechart", + "name": "numberGrown", + "description": "Breakdown of the number of plants grown and ready for planting out by the type of finished stock.", + "label": "No. of plants grown by type of finished stock", + "groupBy": "output:finishedStockType", + "listName": "plantPropagation", + "category": "Revegetation" }, { - "category": "Natural Resources Management", - "description": "Breakdown of the number of fire management activities undertaken by the type of fire event.", - "displayType": "", - "name": "fireEventType", - "aggregationType": "HISTOGRAM", - "label": "No. of activities by type of fire event", - "units": "" + "aggregationType": "SUM", + "displayType": "piechart", + "name": "numberGrown", + "description": "Breakdown of the number of plants germinated from seed by the type of seed preparation technique used.", + "label": "No. of plants germinated by type of preparation technique", + "groupBy": "output:germinationMethod", + "listName": "plantPropagation", + "category": "Revegetation" } ], - "name": "Fire Management Details" + "name": "Plant Propagation Details" }, { - "template": "evidenceOfWeedTreatment", + "template": "biologicalSurveyInformation", + "scores": [], + "name": "Survey Information" + }, + { + "template": "faunaSurveyDetails", "scores": [ { - "isOutputTarget": false, - "category": "Invasive Species Management - Weeds", - "listName": "", - "description": "Average effectiveness of previous treatment (% killed) as assessed from the evidence of previous treatment events during weed mapping and monitoring activities", + "aggregationType": "COUNT", "displayType": "", - "name": "evidenceOfPreviousWeedTreatment", - "aggregationType": "AVERAGE", - "label": "Average effectiveness of Previous Treatment (% killed)", - "units": "%" + "gmsId": "FBS", + "name": "totalNumberOfOrganisms", + "description": "The number of activities undertaken of the type 'Fauna Survey - general'.", + "label": "No. of fauna surveys undertaken", + "listName": "", + "category": "Biodiversity Management", + "isOutputTarget": true }, { - "groupBy": "output:evidenceOfPreviousWeedTreatment", - "category": "Invasive Species Management - Weeds", - "listName": "", - "description": "Proportional breakdown of the number of reportings of different typs of evidence of previous weed treatment actions, as noted during weed mapping and monitoring activities.", - "displayType": "piechart", - "name": "effectivenessOfPreviousWeedTreatment", "aggregationType": "COUNT", - "label": "Proportional breakdown of the No. of reports of different types of previous treatment evidence" + "displayType": "", + "name": "species", + "description": "Count of the total number of rows in the fauna survey details table.(ie. each row is a record of a species occurrence).", + "label": "Total number of fauna species records", + "listName": "surveyResults", + "category": "Biodiversity Management" + }, + { + "aggregationType": "SUM", + "displayType": "", + "name": "totalNumberOfOrganisms", + "description": "The sum of the number of organisms recorded in all general survey events. Note that this does not include individuals recorded in site assessment and monitoring activities.", + "label": "Total No. of individual animals recorded", + "listName": "", + "category": "Biodiversity Management" } ], - "name": "Evidence of Weed Treatment" + "name": "Fauna Survey Details" }, { - "template": "weedObservationDetails", + "template": "floraSurveyDetails", "scores": [ { - "isOutputTarget": true, - "category": "Invasive Species Management - Weeds", - "listName": "", - "description": "Count of the number of weed observation, mapping and monitoring activities undertaken.", - "displayType": "", - "name": "weedObservationMonitoringDetails", "aggregationType": "COUNT", - "label": "No. of activities undertaking weed monitoring", - "gmsId": "WMM WSA" - }, - { - "isOutputTarget": false, - "category": "Invasive Species Management - Weeds", - "listName": "weedObservationMonitoringDetails", - "description": "Sum of the assessed area of all weed species reported in mapping and monitoring activities. Several species may occur on the same area of land and therefore this figure IS NOT representative of the net area of land on which weeds have been reported (ie. the total area covered by weeds)", "displayType": "", - "name": "weedCoverHa", - "aggregationType": "SUM", - "label": "Area (Ha) of weed cover monitored", - "units": "" + "gmsId": "FRBS", + "name": "totalNumberOfOrganisms", + "description": "The number of activities undertaken of the type 'Flora Survey - general'.", + "label": "No. of flora surveys undertaken", + "listName": "", + "category": "Biodiversity Management", + "isOutputTarget": true }, { - "groupBy": "output:weedStatus", - "category": "Invasive Species Management - Weeds", - "listName": "weedObservationMonitoringDetails", - "description": "Frequency count of reported weed observation/monitoring records by different infestation status classes", - "displayType": "piechart", - "name": "weedSpecies", "aggregationType": "COUNT", - "label": "Frequency of reported weed observation/monitoring records by infestation status" + "displayType": "", + "name": "species", + "description": "Count of the total number of rows in the flora survey details table.(ie. each row is a record of a species occurrence).", + "label": "Total number of flora species records", + "listName": "surveyResultsFlora", + "category": "Biodiversity Management" }, { - "groupBy": "output:weedSpecies.name", - "category": "Invasive Species Management - Weeds", - "listName": "weedObservationMonitoringDetails", - "description": "Total area of reported weed cover by species. Note that the sum of areas will likely be greater than the net total area of weed cover.", - "displayType": "barchart", - "name": "weedCoverHa", "aggregationType": "SUM", - "label": "Total area (Ha) of reported weed cover by species" + "displayType": "", + "name": "totalNumberOfOrganisms", + "description": "The sum of the number of individual plants recorded in all general flora survey events. Note that this does not include individuals recorded in site assessment and monitoring activities.", + "label": "Total No. of individual plants recorded", + "listName": "", + "category": "Biodiversity Management" } ], - "name": "Weed Observation and Monitoring Details" + "name": "Flora Survey Details" }, { - "template": "Weed", + "template": "employmentDetails", "scores": [ { - "groupBy": "output:treatmentEventType", - "isOutputTarget": true, - "category": "Invasive Species Management - Weeds", - "description": "The total area of weeds for which an initial treatment was undertaken.", - "displayType": "", - "name": "areaTreatedHa", - "aggregationType": "SUM", - "label": "Total new area treated (Ha)", - "filterBy": "Initial treatment", - "units": "Ha", - "gmsId": "WDT" - }, - { - "category": "Invasive Species Management - Weeds", - "listName": "", - "description": "Total lineal length of stream frontage and/or roadside treated for weeds.", - "displayType": "", - "name": "linearAreaTreated", "aggregationType": "SUM", - "label": "Total lineal length (Km) of stream frontage and/or roadside treated for weeds." - }, - { - "category": "Invasive Species Management - Weeds", - "description": "Average cost per hectare of weed treatment. This is a non-mandatory field and the calculated average may be skewed by incomplete data.", "displayType": "", - "aggregationType": "AVERAGE", - "label": "Average cost ($/Ha) of weed treatment" + "gmsId": "IPE", + "name": "totalEmployees", + "description": "Sum of the number of indigenous people recorded as being employed on projects", + "label": "Total No. of Indigenous people employed", + "listName": "", + "category": "Indigenous Capacity" }, { - "category": "Invasive Species Management - Weeds", - "listName": "weedsTreated", - "description": "The total number of occurrence records of reported weed species.", + "aggregationType": "SUM", "displayType": "", - "name": "targetSpecies", - "aggregationType": "COUNT", - "label": "Total No. of weed records reported" - }, - { - "category": "Invasive Species Management - Weeds", + "name": "noOfIndigenousRangersPt", + "description": "No. of Indigenous people employed PT (rangers)", + "label": "No. of Indigenous people employed PT (rangers)", "listName": "", - "description": "Breakdown of the number of activities treating weeds by type of treatment", - "displayType": "", - "name": "treatmentEventType", - "aggregationType": "HISTOGRAM", - "label": "Proportion of activities treating weeds by type of treatment event" - }, - { - "groupBy": "output:targetSpecies.name", - "isOutputTarget": false, - "category": "Invasive Species Management - Weeds", - "listName": "weedsTreated", - "description": "Breakdown of the number of weed treatment actions undertaken by species.", - "displayType": "barchart", - "name": "treatmentMethod", - "aggregationType": "COUNT", - "label": "No. of activities treating weeds by species treated", - "units": "" + "category": "Indigenous Capacity", + "isOutputTarget": true }, { - "groupBy": "output:weedsTreated.treatmentMethod", - "isOutputTarget": false, - "category": "Invasive Species Management - Weeds", + "aggregationType": "SUM", + "displayType": "", + "name": "noOfIndigenousRangersFt", + "description": "No. of Indigenous people employed FT (rangers)", + "label": "No. of Indigenous people employed FT (rangers)", "listName": "", - "description": "Proportional breakdown of the number of activities treating weeds by treatment method. A single activity may include multiple treatment methods being applied to different species in the activity, but for any given species the count is valid.", - "displayType": "barchart", - "name": "treatmentObjective", - "aggregationType": "COUNT", - "label": "Proportion of activities treating weeds by treatment method" + "category": "Indigenous Capacity", + "isOutputTarget": true }, { - "category": "Invasive Species Management - Weeds", - "listName": "", - "description": "Breakdown of the number of activities treating weeds by treatment objective.", + "aggregationType": "SUM", "displayType": "", - "name": "treatmentObjective", - "aggregationType": "HISTOGRAM", - "label": "No. of activities treating weeds by treatment objective" - }, - { - "category": "Invasive Species Management - Weeds", + "name": "noOfIndigenousNonRangersPt", + "description": "No. of Indigenous people employed PT (non-rangers)", + "label": "No. of Indigenous people employed PT (non-rangers)", "listName": "", - "description": "Breakdown of the number of activities undertaking weed treatment by the main type of partner undertaking the action.", - "displayType": "", - "name": "partnerType", - "aggregationType": "HISTOGRAM", - "label": "No. of activities treating weeds by type of delivery partner" + "category": "Indigenous Capacity", + "isOutputTarget": true }, { - "groupBy": "output:partnerType", - "category": "Invasive Species Management - Weeds", - "listName": "", - "description": "Total area of weed treatment undertaken grouped by the main type of partner undertaking actions.", - "displayType": "piechart", - "name": "areaTreatedHa", "aggregationType": "SUM", - "label": "Total area (Ha.) of weed treatment by main activity partner" - }, - { - "groupBy": "output:treatmentObjective", - "category": "Invasive Species Management - Weeds", + "displayType": "", + "name": "noOfIndigenousNonRangersFt", + "description": "No. of Indigenous people employed FT (non-rangers)", + "label": "No. of Indigenous people employed FT (non-rangers)", "listName": "", - "description": "Total area of weed treatment undertaken grouped by the type of treatment objective.", - "displayType": "piechart", - "name": "areaTreatedHa", - "aggregationType": "SUM", - "label": "Total area (Ha.) of weed treatment by treatment objective" + "category": "Indigenous Capacity", + "isOutputTarget": true } ], - "name": "Weed Treatment Details" + "name": "Indigenous Employment" }, { - "template": "stockManagementDetails", + "template": "indigenousEnterprise", "scores": [ { - "category": "Natural Resources Management", - "listName": "", - "description": "Count of the total number of activities undertaken involving conservation grazing", - "displayType": "", - "name": "areaOfStockManagementHa", - "aggregationType": "COUNT", - "label": "Total No. of activities undertaken involving conservation grazing" - }, - { - "isOutputTarget": true, - "category": "Natural Resources Management", - "listName": "", - "description": "Total area managed with conservation grazing", - "displayType": "", - "name": "areaOfStockManagementHa", "aggregationType": "SUM", - "label": "Area managed with conservation grazing (Ha)", - "units": "Ha", - "gmsId": "CGM" - }, - { - "isOutputTarget": false, - "category": "Natural Resources Management", - "description": "Breakdown of the number of activities undertaking conservation management actions by the reason for undertaking actions", "displayType": "", - "name": "stockManagementReason", - "aggregationType": "HISTOGRAM", - "label": "Proportion of activities undertaking conservation grazing by stock management reason", - "units": "" + "name": "totalNewEnterprises", + "description": "Count of the number of unique (new) Indigenous enterprises established as a result of project implementation", + "label": "No. of new enterprises established", + "category": "Indigenous Capacity", + "isOutputTarget": true }, { - "groupBy": "output:stockingDetails.stockingManagementSpecies", - "category": "Natural Resources Management", - "listName": "", - "description": "Proportional breakdown of the area managed with conservation grazing by species used. Multiple species may be used concurrently and therefore area may be double-counted in such cases. This data should only be interpreted as proportional representation.", - "displayType": "barchart", - "name": "areaOfStockManagementHa", "aggregationType": "SUM", - "label": "Proportional breakdown of the area managed with conservation grazing by species used" + "displayType": "", + "name": "totalIndigenousEnterprisesEngaged", + "description": "Count of the number of unique engagements of Indigenous enterprises which have been formalised in contracts/agreements.", + "label": "No. of formal (contractual) engagements with Indigenous enterprises", + "category": "Indigenous Capacity", + "isOutputTarget": true } ], - "name": "Stock Management Details" + "name": "Indigenous Businesses" }, { - "template": "infrastructureDetails", + "template": "pestManagementDetails", "scores": [ { - "category": "Natural Resources Management", - "listName": "infrastructureInstallations", - "description": "The total number of activities undertaken to build/install infrastructure for the protection, enhancement or public appreciation of native species and natural environments.", - "displayType": "", - "name": "infrastructureType", "aggregationType": "COUNT", - "label": "No. of activities undertaking infrastructure works" + "displayType": "", + "name": "partnerType", + "description": "Count of the number of activities which are undertaking pest management actions", + "label": "No. of activities undertaking pest management", + "listName": "", + "category": "Invasive Species Management - Pests & Diseases" + }, + { + "aggregationType": "HISTOGRAM", + "displayType": "piechart", + "name": "pestManagementMethod", + "description": "Breakdown of the number of activities undertaking pest management actions by the management method used. As a single activity can apply multiple methods for different species, the activity count may include duplicates. Therefore this should only be interpreted as a proportional breakdown.", + "label": "Proportion of activities undertaking pest management by management method", + "units": "", + "listName": "pestManagement", + "category": "Invasive Species Management - Pests & Diseases" }, { - "category": "Natural Resources Management", - "description": "Total number of infrastructure installations / facilities established for the protection, enhancement or public appreciation of native species and natural environments.", - "displayType": "", - "name": "noInstallationsTotal", "aggregationType": "SUM", - "label": "No. of infrastructure installations / facilities established" + "displayType": "", + "gmsId": "PMA", + "name": "areaTreatedHa", + "description": "The total area over which pest treatment activities have been undertaken. Note that re-treatments of the same area may be double-counted.", + "label": "Area covered (Ha) by pest treatment actions", + "units": "Ha", + "groupBy": "treatmentType", + "listName": "pestManagement", + "category": "Invasive Species Management - Pests & Diseases", + "filterBy": "Initial treatment", + "isOutputTarget": true }, { - "groupBy": "output:infrastructureType", - "category": "Natural Resources Management", - "listName": "infrastructureInstallations", - "description": "Total number of infrastructure installations / facilities established for the protection, enhancement or public appreciation of native species and natural environments by the type of facility built/installed.", - "displayType": "barchart", - "name": "noInstallations", "aggregationType": "SUM", - "label": "No. of installations by type of infrastructure", - "units": "" - } - ], - "name": "Infrastructure Details" - }, - { - "template": "planningActivityDetails", - "scores": [ + "displayType": "barchart", + "name": "areaTreatedHa", + "description": "Breakdown of the total area treated by species. Both initial and follow-up treatments are aggregated.", + "label": "Treated area (Ha) by species", + "units": "", + "groupBy": "output:targetSpecies.name", + "listName": "pestManagement", + "category": "Invasive Species Management - Pests & Diseases" + }, { - "category": "Project Management, Planning and Research Outputs", - "listName": "", - "description": "The total number of plans developed", + "aggregationType": "SUM", "displayType": "", - "name": "typeOfPlan", - "aggregationType": "COUNT", - "label": "No. of activities undertaking plan development work", - "gmsId": "MPD" + "gmsId": "PMQ", + "name": "pestAnimalsTreatedNo", + "description": "The total number of individual pest animals killed and colonies (ants, wasps, etc.) destroyed.", + "label": "Total No. of individuals or colonies of pest animals destroyed", + "listName": "pestManagement", + "category": "Invasive Species Management - Pests & Diseases", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "barchart", + "gmsId": "", + "name": "pestAnimalsTreatedNo", + "description": "The total number of individual pest animals killed and colonies (ants, wasps, etc.) destroyed by species.", + "label": "No. of individual animals and colonies killed / removed by species", + "units": "", + "groupBy": "output:targetSpecies.name", + "listName": "pestManagement", + "category": "Invasive Species Management - Pests & Diseases", + "isOutputTarget": false }, { - "groupBy": "output:versionOfPlan", - "category": "Project Management, Planning and Research Outputs", - "listName": "", - "description": "Count of the number of plans developed which have been classified as NEW plans (ie. not revisions of existing plans).", - "displayType": "", - "name": "typeOfPlan", - "aggregationType": "COUNT", - "label": "No. of new plans developed", - "filterBy": "New plan" + "aggregationType": "SUM", + "displayType": "barchart", + "name": "pestAnimalsTreatedNo", + "description": "The total number of individual pest animals killed and colonies (ants, wasps, etc.) destroyed by treatment method used.", + "label": "No. of individual animals and colonies killed / removed by treatment method", + "groupBy": "output:pestManagementMethod", + "listName": "pestManagement", + "category": "Invasive Species Management - Pests & Diseases", + "isOutputTarget": false }, { - "isOutputTarget": false, - "category": "Project Management, Planning and Research Outputs", - "description": "Total of the number of actions specified in plans which have been addressed by scheduled activities.", + "aggregationType": "AVERAGE", "displayType": "", - "name": "noOfPlanActionsAddressed", - "aggregationType": "SUM", - "label": "No. of Plan actions addressed" + "name": "treatmentCostPerHa", + "description": "The average per hectare cost of treating/managing pest species. This is a non-mandatory attribute and may therefore skew values.", + "label": "Average cost of treatment per hectare ($ / Ha.)", + "units": "", + "listName": "", + "category": "Invasive Species Management - Pests & Diseases" }, { - "isOutputTarget": false, - "category": "Project Management, Planning and Research Outputs", - "description": "Breakdown of the number of different types of plans developed", - "displayType": "piechart", - "name": "typeOfPlan", "aggregationType": "HISTOGRAM", - "label": "No. of plan development activities by type of plan" - } - ], - "name": "Plan Development Details" - }, - { - "template": "researchInformation", - "scores": [ - { - "category": "Project Management, Planning and Research Outputs", - "listName": "", - "description": "The total number of research activities undertaken which have recorded data.", "displayType": "", - "name": "typeOfResearch", - "aggregationType": "COUNT", - "label": "Total No. of research activities undertaken" + "name": "partnerType", + "description": "Breakdown of the number of pest management activities undertaken by the type of partner delivering the actions.", + "label": "Breakdown of pest management activities by type of partner", + "listName": "", + "category": "Invasive Species Management - Pests & Diseases" }, { - "category": "Project Management, Planning and Research Outputs", - "description": "Breakdown of the number of research projects by type of project", + "aggregationType": "COUNT", "displayType": "", - "name": "typeOfResearch", - "aggregationType": "HISTOGRAM", - "label": "No. of research activities by type of research" + "name": "targetSpecies", + "description": "Count of species records for all pest management activities undertaken. This represents the total number of pest animal occurrence records.", + "label": "Total No. of pest animal records reported", + "listName": "pestManagement", + "category": "Invasive Species Management - Pests & Diseases" } ], - "name": "Research Information" + "name": "Pest Management Details" }, { - "template": "waterManagementDetails", + "template": "diseaseManagementDetails", "scores": [ { - "category": "Natural Resources Management", - "listName": "", - "description": "Simple count of the number of activities undertaking water management actions.", - "displayType": "", - "name": "isCurrentFlowNatural", "aggregationType": "COUNT", - "label": "No. of water management activities implemented", - "gmsId": "WMN" + "displayType": "", + "name": "targetSpecies", + "description": "Total number of activities undertaken to manage diseases (includes outbreaks as well as experimental and research purposes).", + "label": "No. of activities undertaking disease management", + "listName": "", + "category": "Invasive Species Management - Pests & Diseases" }, { - "isOutputTarget": false, - "category": "Natural Resources Management", - "description": "The total number of hydrological structures installed", - "displayType": "", - "name": "hydrologicalStructuresInstalled", - "aggregationType": "SUM", - "label": "No. of hydrological structures installed" + "aggregationType": "COUNT", + "displayType": "piechart", + "name": "targetSpecies", + "description": "Total number of activities undertaking disease management by the purpose for undertaking the activity (includes outbreaks as well as experimental and research purposes).", + "label": "No. of activities undertaking disease management by purpose", + "groupBy": "output:diseaseManagementPurpose", + "listName": "", + "category": "Invasive Species Management - Pests & Diseases" }, { - "isOutputTarget": true, - "category": "Natural Resources Management", + "aggregationType": "COUNT", + "displayType": "piechart", + "name": "targetSpecies", + "description": "Proportion of activities undertaking disease management by method. An activity may apply multiple management methods and therefore this data should be interpreted as proportionally representative only.", + "label": "Proportion of activities undertaking disease management by method", + "groupBy": "output:diseaseManagementMethod", "listName": "", - "description": "The area of land actively managed with water management activities for enhanced environmental values.", - "displayType": "", - "name": "managedArea", - "aggregationType": "SUM", - "label": "Area (Ha) managed for water values", - "units": "Ha", - "gmsId": "WMA" + "category": "Invasive Species Management - Pests & Diseases" }, { - "groupBy": "output:waterMgtEnvironBenefit", - "category": "Natural Resources Management", + "aggregationType": "SUM", + "displayType": "", + "name": "numberTreated", + "description": "Total number of individuals or colonies treated / quarantined", + "label": "Total number of individuals or colonies treated / quarantined", "listName": "", - "description": "Breakdown of the area of land actively managed with water management activities by the type of environmental benefit achieved. Note that a single water management action may achieve multiple benefits and therefore this metric should only be interpreted as proportional.", - "displayType": "piechart", - "name": "managedArea", + "category": "Invasive Species Management - Pests & Diseases" + }, + { "aggregationType": "SUM", - "label": "Proportion of area (Ha) managed by environmental benefit type" + "displayType": "", + "gmsId": "DMA", + "name": "areaTreatedHa", + "description": "Total area treated / quarantined", + "label": "Total area (Ha) treated / quarantined", + "groupBy": "", + "listName": "", + "category": "Invasive Species Management - Pests & Diseases", + "isOutputTarget": true }, { - "groupBy": "output:waterbodyType", - "category": "Natural Resources Management", + "aggregationType": "SUM", + "displayType": "barchart", + "name": "areaTreatedHa", + "description": "Total area treated / quarantined by species", + "label": "Total area (Ha) treated / quarantined by species", + "groupBy": "output:targetSpecies.name", "listName": "", - "description": "Breakdown of the area of land actively managed with water management activities by the type of water body managed.", + "category": "Invasive Species Management - Pests & Diseases" + }, + { + "aggregationType": "SUM", "displayType": "piechart", - "name": "managedArea", + "name": "areaTreatedHa", + "description": "Total area covered by disease management actions by the purpose for undertaking the action.", + "label": "Area (Ha.) covered by disease management actions by purpose", + "groupBy": "output:diseaseManagementPurpose", + "listName": "", + "category": "Invasive Species Management - Pests & Diseases" + }, + { "aggregationType": "SUM", - "label": "Proportion of area (Ha) managed by type of water body" + "displayType": "piechart", + "name": "areaTreatedHa", + "description": "Breakdown of area treated / quarantined by management method. Note that multiple methods may be used in a single treatment event and therefore this data should only interpreted as proportionally representative.", + "label": "Proportion of area treated / quarantined (Ha.) by management method", + "groupBy": "output:diseaseManagementMethod", + "listName": "", + "category": "Invasive Species Management - Pests & Diseases" }, { - "groupBy": "output:waterUsePurpose", - "category": "Natural Resources Management", + "aggregationType": "SUM", + "displayType": "piechart", + "name": "numberTreated", + "description": "Total number of individuals or colonies treated / quarantined by management method. Note that multiple methods may be used in a single treatment event and therefore this data should only interpreted as proportionally representative.", + "label": "Total number of individuals or colonies treated / quarantined by management method", + "groupBy": "output:diseaseManagementMethod", "listName": "", - "description": "Breakdown of the area of land actively managed with water management activities by the purpose for which water is being managed. Note that a single water management action may apply to multiple purposes and therefore this metric should only be interpreted as proportional.", + "category": "Invasive Species Management - Pests & Diseases" + }, + { + "aggregationType": "AVERAGE", "displayType": "piechart", - "name": "managedArea", - "aggregationType": "SUM", - "label": "Proportion of area (Ha) managed by water use purpose" + "name": "treatmentCostPerHa", + "description": "Average cost per hectare of undertaking disease treatment actions.", + "label": "Average cost of treatment per hectare ($ / Ha.) ($/Ha)", + "groupBy": "output:diseaseManagementPurpose", + "listName": "", + "category": "Invasive Species Management - Pests & Diseases" } ], - "name": "Water Management Details" + "name": "Disease Management Details" }, { - "template": "trainingDetails", + "template": "evidenceOfPestManagement", + "scores": [], + "name": "Evidence of Pest Management Activity" + }, + { + "template": "pestMonitoringDetails", "scores": [ { - "isOutputTarget": true, - "category": "Community Engagement and Capacity Building", - "description": "Sum of the number of people who complete formal/accredited training courses.", - "displayType": "", - "name": "totalCompletingCourses", "aggregationType": "SUM", - "label": "Total No. of people completing formal training courses", - "gmsId": "TSD" + "displayType": "", + "name": "pestSampledArea", + "description": "Sum of sampling/monitoring area for each pest species record. Different species may occur over the same area of land and therefore this figure IS NOT representative of the net area sampled/monitored for all species.", + "label": "Total area sampled (Ha) for pest animal monitoring", + "units": "", + "listName": "pestObservationMonitoringDetails", + "category": "Invasive Species Management - Pests & Diseases" }, { - "category": "Community Engagement and Capacity Building", - "listName": "", - "description": "Count of the total number of activities which recorded details of individuals completing formal/accredited training courses.", - "displayType": "", - "name": "totalCompletingCourses", "aggregationType": "COUNT", - "label": "No. of activities undertaken which involved formal training" + "displayType": "", + "gmsId": "PSA", + "name": "assessmentMethod", + "description": "The total number of actions undertaken to monitor pest species.", + "label": "No. of pest species monitoring actions undertaken", + "listName": "pestObservationMonitoringDetails", + "category": "Invasive Species Management - Pests & Diseases", + "isOutputTarget": true }, { - "category": "Community Engagement and Capacity Building", - "listName": "courseAttendance", - "description": "Count of the total number of formal/accredited training courses for which participation details have been recorded. Each class is counted as a a course.", - "displayType": "", - "name": "courseTitle", "aggregationType": "COUNT", - "label": "No. of courses attended by project participants" + "displayType": "barchart", + "name": "pestSpecies", + "description": "No. of pest monitoring actions by species", + "label": "No. of pest monitoring actions by species", + "groupBy": "output:pestSpecies.name", + "listName": "pestObservationMonitoringDetails", + "category": "Invasive Species Management - Pests & Diseases" }, { - "groupBy": "output:typeOfCourse", - "category": "Community Engagement and Capacity Building", - "listName": "courseAttendance", - "description": "Breakdown of the total number of people who completed a formal/accredited training course by the type of course attended.", - "displayType": "piechart", - "name": "numberCompleted", "aggregationType": "SUM", - "label": "No. completing courses by course type" - }, - { - "groupBy": "output:qualificationLevel", - "category": "Community Engagement and Capacity Building", - "listName": "courseAttendance", - "description": "Breakdown of the number of people who completed a formal/accredited training course by standard Australian qualification level.of courses.", "displayType": "barchart", - "name": "numberCompleted", - "aggregationType": "SUM", - "label": "No. completing courses by qualification level" - } - ], - "name": "Training Details" - }, - { - "template": "skillsDevelopment", - "scores": [ - { - "category": "Community Engagement and Capacity Building", - "listName": "", - "description": "Count of the number of activities which have recorded at least one application of skills developed as a result of project participation and/or project-based formal training.", - "displayType": "", - "name": "skillsApplication", - "aggregationType": "COUNT", - "label": "No. of activities indicating application of enhanced skills" + "name": "pestSampledArea", + "description": "Area (Ha) sampled/monitored for pest animals by species. The value for any given species is valid, but the aggregate sum of all values will be greater than the net area actually sampled/monitored.", + "label": "Area (Ha) sampled/monitored for pest animals by species", + "units": "", + "groupBy": "output:pestSpecies.name", + "listName": "pestObservationMonitoringDetails", + "category": "Invasive Species Management - Pests & Diseases" }, { - "category": "Community Engagement and Capacity Building", - "listName": "", - "description": "Proportional breakdown of the ways in which skills developed as a result of project participation have been applied. This is a count of the number of occurrences recorded for each type of application.", - "displayType": "piechart", - "name": "skillsApplication", "aggregationType": "HISTOGRAM", - "label": "Application of enhanced skills by type" - } - ], - "name": "Skills Development" - }, - { - "template": "riskAssessment", - "scores": [{ - "groupBy": "output:riskType", - "category": "Sites and Activity Planning", - "listName": "riskTable", - "description": "Count of the number of times a particular issue has been recorded. Activities can have multiple threats and risks.", - "displayType": "barchart", - "name": "riskType", - "aggregationType": "COUNT", - "label": "No. of threat and risk issues by type of issue" - }], - "name": "Threatening Processes and Site Condition Risks" + "displayType": "", + "name": "assessmentMethod", + "description": "Total number of observation records by assessment method", + "label": "No. of observation records by population assessment methodology", + "listName": "pestObservationMonitoringDetails", + "category": "Invasive Species Management - Pests & Diseases" + } + ], + "name": "Pest Observation and Monitoring Details" }, { - "template": "debrisRemovalDetails", + "template": "revegetationMonitoringResults", "scores": [ { - "category": "Natural Resources Management", - "listName": "", - "description": "The number of activities which have recorded debris removal information.", - "displayType": "", - "name": "debrisRemovalMethod", "aggregationType": "COUNT", - "label": "Total No. of debris removal activities" + "displayType": "", + "gmsId": "PSS", + "name": "countingMethod", + "description": "The total number of follow-up activities undertaken to monitor the success of revegetation actions carried out under sponsored projects.", + "label": "Total number of revegetation monitoring activities undertaken", + "listName": "", + "category": "Revegetation", + "isOutputTarget": true }, { - "category": "Natural Resources Management", - "description": "Breakdown of the number of activities that have removed debris by the type of debris removed", - "displayType": "piechart", - "name": "debrisType", "aggregationType": "HISTOGRAM", - "label": "No. of activities removing debris by types of material" - }, - { - "category": "Natural Resources Management", - "listName": "", - "description": "Proportional distribution of the number of activities that have removed debris by the removal methods. A single activity can use multiple methods.", "displayType": "piechart", - "name": "debrisRemovalMethod", - "aggregationType": "HISTOGRAM", - "label": "No. of activities removing debris by removal method" + "name": "countingMethod", + "description": "Breakdown of the number of follow-up monitoring activities by the type of counting method used.", + "label": "No. of activities monitoring revegetation works by counting method", + "category": "Revegetation" }, { - "category": "Natural Resources Management", - "listName": "", - "description": "The area over which debris removal activities have been undertaken. Revisits to the same area will be double-counted.", + "aggregationType": "HISTOGRAM", "displayType": "", - "name": "debrisActivityArea", - "aggregationType": "SUM", - "label": "Area (Ha) covered by debris removal activities", - "units": "Ha" + "name": "revegetationType", + "description": "Breakdown of the number of follow-up monitoring activities by the types of revegetation method used.", + "label": "No. of activities monitoring revegetation works by revegetation method", + "listName": "", + "category": "Revegetation" }, { - "isOutputTarget": true, - "category": "Natural Resources Management", - "description": "The total mass of debris removed.", - "displayType": "", - "name": "debrisWeightTonnes", "aggregationType": "SUM", - "label": "Weight of debris removed (Tonnes)", - "units": "Tonnes", - "gmsId": "DRW" + "displayType": "", + "gmsId": "", + "name": "totalNumberSurviving", + "description": "The total number of plants estimated to be surviving as an aggregate of all counting methods used.", + "label": "Total No. of plants surviving", + "category": "Revegetation", + "isOutputTarget": false }, { - "groupBy": "output:debrisType", - "category": "Natural Resources Management", - "listName": "", - "description": "Breakdown of the mass of debris removed by the type of debris removed", - "displayType": "piechart", - "name": "debrisWeightTonnes", "aggregationType": "SUM", - "label": "Weight of debris removed by type of material", - "filterBy": "", - "units": "Tonnes" + "displayType": "", + "gmsId": "PSC", + "name": "numberSurviving", + "description": "Total No. of plants surviving with mature height > 2.", + "label": "Total No. of plants surviving with mature height > 2:", + "listName": "revegetationMonitoring", + "category": "Revegetation", + "filterBy": "matureHeight: > 2 metres", + "isOutputTarget": true }, { - "isOutputTarget": true, - "category": "Natural Resources Management", - "description": "The total volume of debris removed.", + "aggregationType": "AVERAGE", "displayType": "", - "name": "debrisVolumeM3", - "aggregationType": "SUM", - "label": "Volume of debris removed (m3)", - "units": "m3", - "gmsId": "DRV" + "name": "survivalRate", + "description": "Estimate of the average survivability of both tubestock and seedstock expressed as a percentage of plants planted. For seedstock, this includes both counted and estimated germination establishment rates.", + "label": "Average survivability of tubestock and seedstock (%)", + "listName": "revegetationMonitoring", + "category": "Revegetation", + "isOutputTarget": true }, { - "groupBy": "output:debrisType", - "category": "Natural Resources Management", - "listName": "", - "description": "Breakdown of the mass of debris removed by the type of debris removed", - "displayType": "piechart", - "name": "debrisVolumeM3", - "aggregationType": "SUM", - "label": "Volume of debris removed by type of material", - "filterBy": "", - "units": "m3" + "aggregationType": "AVERAGE", + "displayType": "barchart", + "name": "survivalRate", + "description": "Breakdown of the estimated survival rate of plants by the species planted.", + "label": "Average survival rate by species for monitored activities", + "groupBy": "output:species.name", + "listName": "revegetationMonitoring", + "category": "Revegetation" } ], - "name": "Debris Removal Details" + "name": "Vegetation Monitoring Results" }, { - "template": "erosionManagementDetails", + "template": "waterQualityGeneralInfo", + "scores": [], + "name": "General information & Participants" + }, + { + "template": "waterQualityEnvironmentalInfo", + "scores": [], + "name": "Environmental Information at the Time of Sampling" + }, + { + "template": "waterQualityMeasurements", + "scores": [{ + "aggregationType": "COUNT", + "displayType": "", + "gmsId": "WQSA", + "name": "instrumentCalibration", + "description": "The number of water quality monitoring activities undertaken.", + "label": "No. of water quality monitoring events undertaken", + "listName": "", + "category": "Natural Resources Management", + "isOutputTarget": true + }], + "name": "Water Quality Measurements" + }, + { + "template": "bfOutcomesAndMonitoring", + "scores": [], + "name": "Biodiversity Fund Outcomes & Monitoring Methodology" + }, + { + "template": "siteAssessment", + "scores": [], + "name": "Vegetation Assessment" + }, + { + "template": "vicSurveyInfo", + "scores": [], + "name": "Vegetation Assessment - Survey Information" + }, + { + "template": "vicHabHaV2-nativeSpecies", + "scores": [], + "name": "Native Species" + }, + { + "template": "vicHabHaV2-weedSpecies", + "scores": [], + "name": "Weed Species" + }, + { + "template": "vicHabHaV2-trees", + "scores": [], + "name": "Trees" + }, + { + "template": "siteConditionComponents", + "scores": [], + "name": "Site Condition Components" + }, + { + "template": "landscapeContextComponents", + "scores": [], + "name": "Landscape Context Components" + }, + { + "template": "weedAbundanceAndThreatScore", + "scores": [], + "name": "Weed Abundance & Threat Score" + }, + { + "template": "feralAnimalAbundanceScore", + "scores": [], + "name": "Feral Animal Abundance Score" + }, + { + "template": "feralAnimalFrequencyScore", + "scores": [], + "name": "Feral Animal Frequency Score" + }, + { + "template": "bfSamplingSiteInfo", "scores": [ { - "category": "Natural Resources Management", - "listName": "", - "description": "Count of the number of activities which have implemented erosion management actions.", - "displayType": "", - "name": "erosionAreaTreated", "aggregationType": "COUNT", - "label": "No. of activities undertaking erosion control works", - "gmsId": "" - }, - { - "isOutputTarget": true, - "category": "Natural Resources Management", - "listName": "", - "description": "The total number of structures installed to to control erosion.", - "displayType": "", - "name": "erosionStructuresInstalled", - "aggregationType": "SUM", - "label": "Total No. of erosion control structures installed" - }, - { - "isOutputTarget": true, - "category": "Natural Resources Management", - "description": "Total lineal length of stream frontage and/or coastline which has been treated with erosion management actions.", - "displayType": "", - "name": "erosionLength", - "aggregationType": "SUM", - "label": "Length of stream/coastline treated (Km)", - "units": "Km", - "gmsId": "EML" - }, - { - "isOutputTarget": true, - "category": "Natural Resources Management", - "description": "The total area of erosion treated by management actions.", "displayType": "", - "name": "erosionAreaTreated", - "aggregationType": "SUM", - "label": "Erosion area treated (Ha)", - "units": "Ha", - "gmsId": "EMA" - }, - { - "groupBy": "output:erosionControlStructures", - "isOutputTarget": false, - "category": "Natural Resources Management", + "gmsId": "VAC", + "name": "assessmentEventType", + "description": "Total number of site assessments undertaken using the Commonwealth government vegetation assessment methodology.", + "label": "No. of site assessments undertaken using the Commonwealth government vegetation assessment methodology", "listName": "", - "description": "Count of the number of activities which installed structures to control erosion by the type of structure installed.", - "displayType": "piechart", - "name": "erosionStructuresInstalled", - "aggregationType": "SUM", - "label": "No. of activities which installed erosion control structures by type of structure" + "category": "Biodiversity - Site Condition Assessment", + "isOutputTarget": true }, { - "groupBy": "output:erosionType", - "category": "Natural Resources Management", - "listName": "", - "description": "Proportional breakdown of the erosion area treated by the type of erosion treated. Note that a single treatment may apply to multiple types of erosion over the same area and therefore this metric should only be interpreted as a proportional breakdown.", + "aggregationType": "HISTOGRAM", "displayType": "piechart", - "name": "erosionAreaTreated", - "aggregationType": "SUM", - "label": "Proportion of erosion area treated (Ha) by the type of erosion treated" + "name": "assessmentEventType", + "description": "Breakdown of the number of vegetation assessments using the Commonwealth methodology by the type of assessment event.", + "label": "No. of vegetation assessments using the Commonwealth methodology by the type of assessment event", + "listName": "", + "category": "Biodiversity - Site Condition Assessment" }, { - "groupBy": "output:erosionTreatmentMethod", - "category": "Natural Resources Management", - "listName": "", - "description": "Proportional breakdown of the erosion area treated by the type of erosion management/treatment method used. Note that a single treatment may apply multiple types of methods over the same area and therefore this metric should only be interpreted as a proportional breakdown.", + "aggregationType": "HISTOGRAM", "displayType": "piechart", - "name": "erosionAreaTreated", - "aggregationType": "SUM", - "label": "Proportion of erosion area treated (Ha) by the type of management method used" + "name": "typeOfSite", + "description": "Breakdown of the number of vegetation assessments using the Commonwealth methodology by the type of site.", + "label": "No. of vegetation assessments using the Commonwealth methodology by the type of site", + "listName": "", + "category": "Biodiversity - Site Condition Assessment" } ], - "name": "Erosion Management Details" + "name": "Sampling Site Information" + }, + { + "template": "groundCover", + "scores": [], + "name": "Field Sheet 1 - Ground Cover" + }, + { + "template": "exoticFauna", + "scores": [{ + "aggregationType": "HISTOGRAM", + "displayType": "piechart", + "name": "evidence", + "description": "Count of the number of occurrences of evidence of the presence of exotic fauna by the type of evidence, as identified using the Commonwealth government vegetation assessment methodology.", + "label": "No. of occurrences of evidence of the presence of exotic fauna by the type of evidence (using the Commonwealth government vegetation assessment methodology)", + "listName": "evidenceOfExoticFauna", + "category": "Biodiversity - Site Condition Assessment" + }], + "name": "Field Sheet 2 - Exotic Fauna" + }, + { + "template": "crownCover", + "scores": [], + "name": "Field Sheet 3 - Overstorey and Midstorey Projected Crown Cover" + }, + { + "template": "crownType", + "scores": [], + "name": "Field Sheet 4 - Crown Type" }, { - "template": "accessControlDetails", + "template": "speciesDiversityMeri", "scores": [ { - "isOutputTarget": true, - "category": "Natural Resources Management", - "description": "Count of the number of activities implementing access control works", - "displayType": "", - "name": "structuresInstalled", "aggregationType": "COUNT", - "label": "No. of activities implementing access control works", - "gmsId": "PAM" - }, - { - "category": "Natural Resources Management", - "description": "Sum of the total number of structures installed for access management.", - "displayType": "", - "name": "numberOfInstallations", - "aggregationType": "SUM", - "label": "Total No. of structures installed for access management" - }, - { - "isOutputTarget": true, - "category": "Natural Resources Management", - "listName": "", - "description": "Area in hectares that is being protected as a direct result of installing access control structures.", "displayType": "", - "name": "accessAreaProtected", - "aggregationType": "SUM", - "label": "Area protected by access control installations (Ha)" - }, - { - "groupBy": "output:structuresInstalled", - "category": "Natural Resources Management", - "description": "Breakdown of the number of structures installed for access management by type of structure", - "displayType": "piechart", - "name": "numberOfInstallations", - "aggregationType": "COUNT", - "label": "Proportion of structures installed for access management by type of structure" + "name": "species", + "description": "Total count of the number of rows across all species diversity tables. Represents the number of species occurrence records from site condition assessments using the Commonwealth government methodology.", + "label": "Total No. of species records (as identified using the Commonwealth government vegetation assessment methodology)", + "listName": "speciesList", + "category": "Biodiversity - Site Condition Assessment" }, { - "groupBy": "output:accessControlPurpose", - "category": "Natural Resources Management", - "description": "Breakdown of the number of access control actions undertaken by the purpose for which access control structures were installed. A single action may include more than one structure and address multiple purposes. Therefore this metric should only be interpreted as proportionally representative.", - "displayType": "piechart", - "name": "numberOfInstallations", "aggregationType": "COUNT", - "label": "Proportion of actions undertaken for access management by purpose" - }, - { - "groupBy": "output:accessManagementMethod", - "category": "Natural Resources Management", - "description": "Breakdown of the number of access control actions undertaken by the broad method used to control the access. A single action may include more than one structure and address multiple purposes. Therefore this metric should only be interpreted as proportionally representative.", "displayType": "piechart", - "name": "numberOfInstallations", - "aggregationType": "COUNT", - "label": "Proportion of actions undertaken for access management by management method" + "name": "species", + "description": "Proportional breakdown of native vs exotic species recorded as identified using the Commonwealth government vegetation assessment methodology.", + "label": "Proportion of native : exotic species recorded (as identified using the Commonwealth government vegetation assessment methodology)", + "groupBy": "output:nativeOrExotic", + "listName": "speciesList", + "category": "Biodiversity - Site Condition Assessment" } ], - "name": "Access Control Details" + "name": "Field Sheet 5 - Species Diversity" }, { - "template": "plannedMonitoring", - "scores": [{ - "category": "Sites and Activity Planning", - "listName": "plannedActions", - "description": "Breakdown of the No. of planned monitoring action by the type of monitoring action", - "displayType": "piechart", - "name": "plannedActivityType", - "aggregationType": "HISTOGRAM", - "label": "No. of planned monitoring action by the type of monitoring action" - }], - "name": "Planned Monitoring Approach" + "template": "habitatHectaresSiteCondition", + "scores": [], + "name": "Site Condition" }, { - "template": "practiceChangeDetails", + "template": "habitatHectaresLandscapeContext", + "scores": [], + "name": "Landscape Context" + }, + { + "template": "tasVegSiteCondition", + "scores": [], + "name": "Site Condition - TasVeg" + }, + { + "template": "tasVegLandscaprContext", + "scores": [], + "name": "Landscape Context - TasVeg" + }, + { + "template": "tasVegNvaMethod_F", + "scores": [], + "name": "TasVeg Native Vegetation Assessment Method - Forest Vegetation" + }, + { + "template": "tasVegNvaMethod_NF", + "scores": [], + "name": "TasVeg Native Vegetation Assessment Method - Non-Forest Vegetation" + }, + { + "template": "tasVegFloristicComposition", + "scores": [], + "name": "Floristic Composition" + }, + { + "template": "bioCondition100x50m", + "scores": [], + "name": "100 x 50m area - Ecologically Dominant Layer" + }, + { + "template": "bioCondition50x10m", + "scores": [], + "name": "50 x 10m area" + }, + { + "template": "bioCondition50x20m", + "scores": [], + "name": "50 x 20m area - Coarse Woody Debris" + }, + { + "template": "bioCondition1x1m", + "scores": [], + "name": "Five 1 x 1m plots" + }, + { + "template": "bioCondition100mTransect", + "scores": [], + "name": "100m Transect" + }, + { + "template": "heritageConservationInformation", "scores": [ { - "isOutputTarget": true, - "category": "Farm Management Practices", - "description": "The total number of unique/individual farming/fisher entities (farming/fishing businesses) that have made changes towards more sustainable management and primary production practices.", + "aggregationType": "COUNT", "displayType": "", - "name": "totalEntitiesAdoptingChange", - "aggregationType": "SUM", - "label": "Total No. of farming entities adopting sustainable practice change", - "gmsId": "MPCFE" + "gmsId": "HC HSA", + "name": "siteName", + "description": "Count of the total number of activities undertaking heritage conservation actions", + "label": "Total No. of activities undertaking heritage conservation actions", + "listName": "", + "category": "Heritage Asset Management" }, { - "isOutputTarget": true, - "category": "Farm Management Practices", - "description": "The surface area of land/water over which improved management practices have been undertaken/implemented as a result of government funded projects. ", + "aggregationType": "HISTOGRAM", "displayType": "", - "name": "totalChangePracticeTreatedArea", - "aggregationType": "SUM", - "label": "Area of land (Ha) on which improved management practices have been implemented", - "units": "Ha", - "gmsId": "MPC" + "name": "typeOfHeritage", + "description": "Breakdown of the total number of activities undertaking heritage conservation actions by type of heritage work", + "label": "No. of activities by type of heritage work", + "listName": "", + "category": "Heritage Asset Management" }, { - "isOutputTarget": true, - "category": "Farm Management Practices", - "description": "The surface area of land/water which is now managed using sustainable practices and resulting from implementation of funded projects.", + "aggregationType": "HISTOGRAM", "displayType": "", - "name": "benefitAreaHa", - "aggregationType": "SUM", - "label": "Area of land (Ha) changed to sustainable practices", - "units": "Ha", - "gmsId": "MPCSP" - }, - { - "groupBy": "output:practiceChange.industryType", - "category": "Farm Management Practices", + "name": "levelOfHeritageListing", + "description": "Breakdown of the total number of activities undertaking heritage conservation actions by level of heritage listing.", + "label": "No. of activities on sites by the level of heritage listing", "listName": "", - "description": "Breakdown of area covered by changed management practices (resulting from government funded projects) by the type of industry.", - "displayType": "piechart", - "name": "benefitAreaHa", - "aggregationType": "SUM", - "label": "Area covered by changed management practices by industry type" - }, - { - "groupBy": "output:industryType", - "category": "Farm Management Practices", - "listName": "practiceChange", - "description": "Breakdown of number of farm/fisher entities adopting changed management practices (resulting from government funded projects) by the type of industry.", - "displayType": "piechart", - "name": "entitiesAdoptingChange", - "aggregationType": "SUM", - "label": "No. of farm/fisher entities adopting changed management practices by industry type" - }, - { - "groupBy": "output:industryType", - "category": "Farm Management Practices", - "listName": "practiceChange", - "description": "Breakdown of the number of people influenced by changed management practices (resulting from government funded projects) by the type of industry.", - "displayType": "piechart", - "name": "noInfluenced", - "aggregationType": "SUM", - "label": "No. of people influenced by changed management practices by industry type" - }, - { - "groupBy": "output:practiceChangeAction", - "category": "Farm Management Practices", - "listName": "practiceChange", - "description": "Breakdown of the number of management change actions by different types of facilitation strategies used to encourage change to more sustainable management practices. Individual activities can employ multiple strategies and this result should only be interpreted as a proportional breakdown and not actual figures.", - "displayType": "piechart", - "name": "industryType", - "aggregationType": "COUNT", - "label": "Proportion of actions implementing sustainable practices by type of change facilitation strategy." - }, - { - "groupBy": "output:changePurpose", - "category": "Farm Management Practices", - "listName": "practiceChange", - "description": "Proportional breakdown of the area covered by practice changes (Ha) by the reasons for changing management practices. People can have multiple reasons for changing practices and therefore this should only be interpreted as proportional rather than actual figures.", - "displayType": "piechart", - "name": "changePracticeTreatedArea", - "aggregationType": "SUM", - "label": "Proportional breakdown of the area covered by practice changes (Ha) by the reasons for changing management practices" - }, - { - "groupBy": "output:changePurpose", - "category": "Farm Management Practices", - "listName": "practiceChange", - "description": "Proportional breakdown of the number of farming/fisher entities adopting practice change by the reasons for changing management practices. People can have multiple reasons for changing practices and therefore this should only be interpreted as proportional rather than actual figures.", - "displayType": "piechart", - "name": "entitiesAdoptingChange", - "aggregationType": "SUM", - "label": "Proportional breakdown of the No. of entities adopting practice change by the reasons for changing management practices" - }, - { - "groupBy": "output:changePurpose", - "category": "Farm Management Practices", - "listName": "practiceChange", - "description": "Proportional breakdown of the number of individual people influenced by the reasons for changing management practices. People can have multiple reasons for changing practices and therefore this should only be interpreted as proportional rather than actual figures.", - "displayType": "piechart", - "name": "noInfluenced", - "aggregationType": "SUM", - "label": "Proportional breakdown of the No. of people influenced by the reasons for changing management practices" - }, + "category": "Heritage Asset Management" + } + ], + "name": "Heritage Conservation Information" + }, + { + "template": "heritageExpectedOutcomes", + "scores": [], + "name": "Expected Heritage Outcomes" + }, + { + "template": "projectStageProgress", + "scores": [], + "name": "Overview of Project Progress" + }, + { + "template": "projectStageOutcomes", + "scores": [], + "name": "Environmental, Economic and Social Outcomes" + }, + { + "template": "projectStageUpdate", + "scores": [], + "name": "Implementation Update" + }, + { + "template": "projectStageLessons", + "scores": [], + "name": "Lessons Learned and Improvements" + }, + { + "template": "sitePlanningDetails", + "scores": [{ + "aggregationType": "COUNT", + "displayType": "", + "gmsId": "STA", + "name": "noOfWorksAreasTotal", + "description": "Represents the number of acitivities which have undertaken planning for intervention works.", + "label": "Number of site preparation actions undertaken", + "listName": "", + "category": "Project Management, Planning and Research Outputs" + }], + "name": "Site Planning Details" + }, + { + "template": "fencing", + "scores": [ { - "groupBy": "output:targetOutcomes", - "category": "Farm Management Practices", - "listName": "practiceChange", - "description": "The sum of areas for each instance of each category of public good outcome recorded. Note that an activity may achieve more than one public good outcome and hence the area may be double-counted. Therefore this should be interpreted as a proportional breakdown only.", - "displayType": "piechart", - "name": "changePracticeTreatedArea", "aggregationType": "SUM", - "label": "Proportional breakdown of the area covered by practice changes by the public good outcomes from changing management practices" + "displayType": "", + "gmsId": "FNC", + "name": "lengthOfFence", + "description": "The total length of fencing erected.", + "label": "Total length of fence (Km)", + "units": "kilometres", + "category": "Biodiversity Management", + "isOutputTarget": true }, { - "groupBy": "output:targetOutcomes", - "category": "Farm Management Practices", - "listName": "practiceChange", - "description": "Sum of the number of entities adopting practice change for each instance of each category of public good outcome recorded. Note that an activity may achieve more than one public good outcome and hence the number of entities may be double-counted. Therefore this should be interpreted as a proportional breakdown only.", - "displayType": "piechart", - "name": "entitiesAdoptingChange", "aggregationType": "SUM", - "label": "Proportional breakdown of the No. of entities adopting practice change by the public good outcomes from changing management practices" + "displayType": "piechart", + "name": "lengthOfFence", + "description": "Breakdown of the length of fence erected by the type of fence.", + "label": "Total length of fence (Km) by the type of fence erected", + "units": "kilometres", + "groupBy": "output:fenceType", + "listName": "", + "category": "Biodiversity Management" }, { - "groupBy": "output:targetOutcomes", - "category": "Farm Management Practices", - "listName": "practiceChange", - "description": "Sum of the number of individual people influenced by the reasons for changing management practices. People can have mu for changing practices and therefore this should only be interpreted as proportional rather than actual figures.", + "aggregationType": "HISTOGRAM", "displayType": "piechart", - "name": "noInfluenced", - "aggregationType": "SUM", - "label": "Proportional breakdown of the No. of people influenced by the public good outcomes from changing management practices" + "name": "fenceType", + "description": "Breakdown of the number of activities erecting fencing by the type of fence being erected.", + "label": "Proportion of activities by fence type", + "units": "", + "category": "Biodiversity Management" }, { - "groupBy": "output:practiceChangeAction", - "category": "Farm Management Practices", - "listName": "practiceChange", - "description": "The sum of areas for each instance of each category of change facilitation strategy used. Note that an activity may use more than one facilitation strategy and hence the area may be double-counted. Therefore this should be interpreted as a proportional breakdown only.", - "displayType": "piechart", - "name": "changePracticeTreatedArea", "aggregationType": "SUM", - "label": "Proportional breakdown of the area covered by practice changes by the type of change facilitation strategy" + "displayType": "piechart", + "name": "lengthOfFence", + "description": "Breakdown of the proportion of the length of fencing by purpose of fence. As a single fence can perform many purposes, the length may be multi-counted. Interpret only as length within a specific category or as a percentage of the whole.", + "label": "Length of fence (as a %) by fence purpose", + "units": "", + "groupBy": "output:purposeOfFence", + "listName": "", + "category": "Biodiversity Management" }, { - "groupBy": "output:practiceChangeAction", - "category": "Farm Management Practices", - "listName": "practiceChange", - "description": "Sum of the number of entities adopting practice change for each instance of each facilitation strategy used. Note that an activity may use more than one facilitation strategy and hence the number of entities may be double-counted. Therefore this should be interpreted as a proportional breakdown only.", - "displayType": "piechart", - "name": "entitiesAdoptingChange", "aggregationType": "SUM", - "label": "Proportional breakdown of the No. of entities adopting practice change by the types of change facilitation strategies used." + "displayType": "", + "name": "fenceAreaProtected", + "description": "The area in hectares enclosed within a protective fence", + "label": "Area protected by fencing (Ha)", + "listName": "", + "category": "Biodiversity Management", + "isOutputTarget": true }, { - "groupBy": "output:practiceChangeAction", - "category": "Farm Management Practices", - "listName": "practiceChange", - "description": "Sum of the number of individual people influenced by the strategy used to facilitate change. Multiple strategies can be used to facilitate change and therefore this should only be interpreted as proportional rather than actual figures.", + "aggregationType": "HISTOGRAM", "displayType": "piechart", - "name": "noInfluenced", - "aggregationType": "SUM", - "label": "Proportional breakdown of the No. of people influenced by the change facilitation strategy" + "name": "purposeOfFence", + "description": "Breakdown of the proportion of the number of activities erecting fencing by purpose of fence. As a single fence can perform many purposes, the length may be multi-counted. Interpret only as length within a specific category or as a percentage of the whole.", + "label": "Proportion of activities by fence purpose", + "units": "", + "listName": "", + "category": "Biodiversity Management", + "isOutputTarget": false } ], - "name": "Management Practice Change Details" + "name": "Fence Details" }, { - "template": "sustainablePracticeInitiatives", + "template": "smallGrantProgressReport", + "scores": [{ + "aggregationType": "COUNT", + "displayType": "", + "gmsId": "PR25ALG", + "name": "achievementsSummary", + "label": "No. of 25th Anniversary Landcare Grant progress reports submitted", + "listName": "", + "category": "Project Management, Planning and Research Outputs" + }], + "name": "Progress Report Details" + }, + { + "template": "smallGrantFinalReport", "scores": [], - "name": "Sustainable Practice Initiatives" + "name": "Final Report Details" }, { - "template": "otherConservationWorks", + "template": "smallGrantOutputs", "scores": [ { - "category": "Biodiversity Management", - "listName": "", - "description": "A simple count of the number of activities undertaking work which is targeted at protecting/conserving specific species.", + "aggregationType": "SUM", "displayType": "", - "name": "targetSpecies", - "aggregationType": "COUNT", - "label": "No. of activities undertaking species conservation actions", - "gmsId": "CATS" + "gmsId": "RVA25ALG", + "name": "areaRevegHa", + "description": "The area of land actually revegetated with native species by the planting of seedlings, sowing of seed and managed native regeneration actions.", + "label": "Area of revegetation works (Ha) - 25th ALG", + "units": "Ha", + "listName": "", + "category": "Revegetation", + "isOutputTarget": true }, { - "category": "Biodiversity Management", + "aggregationType": "SUM", + "displayType": "", + "gmsId": "RVN25ALG", + "name": "totalNumberPlanted", + "description": "The total number of seedlings planted.", + "label": "Number of plants planted - 25th ALG", "listName": "", - "description": "Breakdown of the number of activities undertaken to protect/conserve species by species.", - "displayType": "barchart", - "name": "targetSpecies", - "aggregationType": "HISTOGRAM", - "label": "No. of activities implementing conservation actions by species" + "category": "Revegetation", + "isOutputTarget": true }, { - "category": "Biodiversity Management", - "listName": "conservationWorks", - "description": "Count of the total number of species conservation actions undertaken", + "aggregationType": "SUM", "displayType": "", - "name": "conservationActionType", - "aggregationType": "COUNT", - "label": "Total No. of species conservation actions undertaken" + "gmsId": "RVSS25ALG", + "name": "totalSeedSownKg", + "description": "The total weight of seed sown in revegetation plots.", + "label": "Kilograms of seed sown - 25th ALG", + "units": "Kg", + "listName": "", + "category": "Revegetation", + "isOutputTarget": true }, { - "groupBy": "output:targetSpecies.name", - "category": "Biodiversity Management", - "listName": "conservationWorks", - "description": "Breakdown of the number of conservation actions undertaken by species being protected. ", - "displayType": "piechart", - "name": "conservationActionType", - "aggregationType": "COUNT", - "label": "No. of conservation actions undertaken by species protected. " + "aggregationType": "SUM", + "displayType": "", + "gmsId": "SDC25ALG", + "name": "totalSeedCollectedKg", + "description": "The total weight of seed collected for storage or propagation.", + "label": "Total seed collected (Kg) - 25th ALG", + "units": "Kg", + "listName": "", + "category": "Revegetation", + "isOutputTarget": true }, { - "category": "Biodiversity Management", - "listName": "", - "description": "The total number of individual animals in breeding programmes and plants in plant propagation programmes", - "displayType": "", - "name": "animalBreedingNos", "aggregationType": "SUM", - "label": "No. of individual animals in captive breeding programs" + "displayType": "", + "gmsId": "PPRP25ALG", + "name": "totalNumberGrown", + "description": "The total number of plants which have been propagated and nurtured to the point of being ready for planting out.", + "label": "Total No. of plants grown and ready for planting - 25th ALG", + "listName": "", + "category": "Revegetation", + "isOutputTarget": true }, { - "category": "Biodiversity Management", - "listName": "", - "description": "The total number of plants and animals returned to the wild from ", - "displayType": "", - "name": "animalReleaseNumber", "aggregationType": "SUM", - "label": "No. of individual animals released back into the wild from breeding and propagation programmes." + "displayType": "", + "name": "erosionAreaTreated", + "description": "Count of the number of activities which have implemented erosion management actions.", + "label": "No. of activities undertaking erosion control works - 25th ALG", + "units": "Ha", + "listName": "", + "category": "Natural Resources Management", + "isOutputTarget": true }, { - "groupBy": "output:conservationActionType", - "category": "Biodiversity Management", - "listName": "conservationWorks", - "description": "The total area impacted by different types of species conservation actions.", - "displayType": "piechart", - "name": "areaImpactedByWorks", "aggregationType": "SUM", - "label": "Area (Ha) impacted by conservation action type" + "displayType": "", + "gmsId": "EML25ALG", + "name": "erosionLength", + "description": "Total lineal length of stream frontage and/or coastline which has been treated with erosion management actions.", + "label": "Length of stream/coastline treated (Km) - 25th ALG", + "units": "Km", + "listName": "", + "category": "Natural Resources Management", + "isOutputTarget": true }, { - "groupBy": "", - "isOutputTarget": true, - "category": "Biodiversity Management", - "listName": "protectionMechanisms", - "description": "The total number of agreements/protection mechanisms implemented to conserve/protect species.", - "displayType": "", - "name": "numberOfProtectionMechanisms", "aggregationType": "SUM", - "label": "No. of protection mechanisms implemented" + "displayType": "", + "gmsId": "STP25ALG", + "name": "preparationAreaTotal", + "description": "Sum of the area of land specifically recorded as having preparatory works undertaken in advance of another associated activity. Site preparation works include activities such as fencing, weed or pest treatment, drainage or soil moisture management actions, etc.", + "label": "Total area prepared (Ha) for follow-up treatment actions - 25th ALG", + "units": "Ha", + "listName": "", + "category": "Sites and Activity Planning", + "isOutputTarget": true }, { - "groupBy": "output:protectionMechanism", - "category": "Biodiversity Management", - "listName": "protectionMechanisms", - "description": "Breakdown of the number of species protection mechanisms implemented of each type.", - "displayType": "piechart", - "name": "numberOfProtectionMechanisms", - "aggregationType": "COUNT", - "label": "No. of protection mechanisms implemented by protection mechanism type" + "aggregationType": "SUM", + "displayType": "", + "gmsId": "FMA25ALG", + "name": "areaOfFireHa", + "description": "The area of the fire ground actually burnt. This may be different to the total area managed.", + "label": "Burnt area (Ha) - 25th ALG", + "units": "Ha", + "listName": "", + "category": "Natural Resources Management", + "isOutputTarget": true }, { - "isOutputTarget": true, - "category": "Biodiversity Management", - "listName": "protectionMechanisms", - "description": "Sum of the areas covered by all Agreement mechanisms. Multiple mechanisms covering the same area may result in area of coverage being double-counted.", - "displayType": "", - "name": "areaUnderAgreement", "aggregationType": "SUM", - "label": "Area (Ha) covered by Agreement mechanisms" + "displayType": "", + "gmsId": "DRV25ALG", + "name": "debrisVolumeM3", + "description": "The total volume of debris removed.", + "label": "Volume of debris removed (m3) - 25th ALG", + "units": "m3", + "listName": "", + "category": "Natural Resources Management", + "isOutputTarget": true }, { - "groupBy": "output:protectionMechanism", - "category": "Biodiversity Management", - "listName": "protectionMechanisms", - "description": "Breakdown of the total area covered by each different type of agreement/protection mechanism", - "displayType": "piechart", - "name": "areaUnderAgreement", "aggregationType": "SUM", - "label": "Area (Ha) under agreement by protection mechanism type" - } - ], - "name": "Conservation Works Details" - }, - { - "template": "adminActivities", - "scores": [{ - "groupBy": "output:adminActionType", - "category": "Project Management, Planning and Research Outputs", - "listName": "adminActions", - "description": "Proportional distribution of the time (hrs) spent undertaking different kinds of project administration activities.", - "displayType": "barchart", - "name": "hoursActionTotal", - "aggregationType": "SUM", - "label": "Total hours spent undertaking different types of project administration tasks" - }], - "name": "Administration Activities" - }, - { - "template": "outcomes", - "scores": [], - "name": "Outcomes" - }, - { - "template": "evaluation", - "scores": [], - "name": "Evaluation" - }, - { - "template": "lessonsLearned", - "scores": [], - "name": "Lessons Learned" - }, - { - "template": "knowledgeTransfer", - "scores": [ + "displayType": "", + "gmsId": "PMA25ALG", + "name": "totalAreaTreatedHa", + "description": "The total area over which pest treatment activities have been undertaken. Note that re-treatments of the same area may be double-counted.", + "label": "Area covered (Ha) by pest treatment actions - 25th ALG", + "units": "Ha", + "listName": "", + "category": "Invasive Species Management - Pests & Diseases", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "PMQ25ALG", + "name": "totalPestAnimalsTreatedNo", + "description": "The total number of individual pest animals killed and colonies (ants, wasps, etc.) destroyed.", + "label": "Total No. of individuals or colonies of pest animals destroyed - 25th ALG", + "listName": "", + "category": "Invasive Species Management - Pests & Diseases", + "isOutputTarget": true + }, { - "category": "Indigenous Capacity", + "aggregationType": "SUM", + "displayType": "", + "gmsId": "WDT25ALG", + "name": "areaTreatedHa", + "description": "The total area of weeds for which an initial treatment was undertaken.", + "label": "Total new area of weeds treated (Ha) - 25th ALG", + "units": "Ha", "listName": "", - "description": "Sum of the activities which have included at least one aspect of the sharing and/or transfer of indigenous knowledge", + "category": "Invasive Species Management - Weeds", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", "displayType": "", - "name": "numberOnCountryVisits", - "aggregationType": "COUNT", - "label": "Total No. of activities involving the sharing of Indigenous knowledge" + "gmsId": "FNC25ALG", + "name": "lengthOfFence", + "description": "The total length of fencing erected.", + "label": "Total length of fence (Km) - 25th ALG", + "units": "kilometres", + "listName": "", + "category": "Biodiversity Management", + "isOutputTarget": true }, { - "category": "Indigenous Capacity", + "aggregationType": "SUM", + "displayType": "", + "gmsId": "CPEE25ALG", + "name": "numberOfEvents", + "description": "Count of the number of community participation and engagement events run.", + "label": "Total No. of community participation and engagement events run - 25th ALG", "listName": "", - "description": "Count of the number of activities which were organised or run by indigenous decision makers", + "category": "Community Engagement and Capacity Building", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", "displayType": "", - "name": "numberOnCountryVisits", - "aggregationType": "COUNT", - "label": "No. of activities organised or run by Indigenous people", - "filterBy": "indigenousDecisionMakers:Yes" + "name": "numberOfPublications", + "description": "Number of different publications produced (NOT the number of copies of a publication produced). Includes: books, films/DVDs/CDs, guides, journal articles, pamphlets, report cards, management plans, media releases and/or similar.", + "label": "Community participation and engagement (publications) - 25th ALG", + "listName": "", + "category": "Community Engagement and Capacity Building", + "isOutputTarget": true }, { - "category": "Indigenous Capacity", + "aggregationType": "SUM", + "displayType": "", + "name": "numberOfCommunityGroups", + "description": "The number of different community groups participating in the project that were not project delivery partners.", + "label": "No. of community groups that participated in delivery of the project - 25th ALG", "listName": "", - "description": "Sum of indigenous on-country visit events recorded which involved both older and younger people together.", + "category": "Community Engagement and Capacity Building", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", "displayType": "", - "name": "numberOnCountryVisits", + "name": "numberOfVolunteers", + "description": "The number of participants at activities and events who are not employed on projects. Individuals attending multiple activities will be counted for their attendance at each event.", + "label": "No of volunteers participating in project activities - 25th ALG", + "listName": "", + "category": "Community Engagement and Capacity Building", + "isOutputTarget": true + }, + { "aggregationType": "SUM", - "label": "No. of on-country visits involving both older and younger people together", - "gmsId": "IKT" + "displayType": "", + "gmsId": "MPCFE25ALG", + "name": "entitiesAdoptingChange", + "description": "The number of farming/fisher entities that implemented management practice changes during the project. Excludes those intending to change practice.", + "label": "Total No. of farming entities adopting sustainable practice change - 25th ALG", + "listName": "", + "category": "Farm Management Practices", + "isOutputTarget": true }, { - "category": "Indigenous Capacity", + "aggregationType": "SUM", + "displayType": "", + "name": "numberOfFarmingEntitiesNew", + "description": "The total number of unique farming/fisher entities participating in the project.", + "label": "Total No. of unique farming entities engaged - 25th ALG", "listName": "", - "description": "Count of the number of activities recording the documentation of indigenous knowledge.", + "category": "Farm Management Practices", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", "displayType": "", - "name": "numberOnCountryVisits", - "aggregationType": "COUNT", - "label": "No. of activities in which Indigenous knowledge was documented", - "filterBy": "indigenousKnowledgeDocumented:Yes" + "name": "numberOfIndigenousParticipants", + "description": "The number of Indigenous people attending and/or participating in activities and events. Individuals attending multiple activities will be counted for their attendance at each event.", + "label": "No of Indigenous participants at project events. - 25th ALG", + "listName": "", + "category": "Indigenous Capacity", + "isOutputTarget": true }, { + "aggregationType": "SUM", + "displayType": "", + "name": "totalEmployees", + "description": "The number of Indigenous persons employed/sub-contracted during the project (measured in persons, not FTE). Includes ongoing, non-ongoing, casual, and contracted persons.", + "label": "Total No. of Indigenous people employed - 25th ALG", + "listName": "", "category": "Indigenous Capacity", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", + "displayType": "", + "name": "indigenousPlansCompleted", + "description": "The total number of Indigenous Land and Sea Plans developed by the project.", + "label": "No. of Indigenous Land and Sea Plans completed - 25th ALG", "listName": "", - "description": "Sum of the number of datasets recorded as having been shared into the public domain.", + "category": "Project Management, Planning and Research Outputs", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", "displayType": "", + "name": "indigenousProductsDeveloped", + "description": "The total number of publications and other products (eg. videos) developed by the project to facilitate the sharing of Indigenous Ecological Knowledge.", + "label": "Indigenous knowledge transfer (no. of activities) - 25th ALG", + "listName": "", + "category": "Indigenous Capacity" + }, + { + "aggregationType": "SUM", + "displayType": "", + "gmsId": "IKM25ALG", "name": "datasetsShared", + "description": "Sum of the number of datasets recorded as having been shared into the public domain.", + "label": "Total No. of Indigenous datasets shared publicly - 25th ALG", + "listName": "", + "category": "Indigenous Capacity", + "isOutputTarget": true + }, + { "aggregationType": "SUM", - "label": "Total No. of Indigenous datasets shared publicly", - "gmsId": "IKM" + "displayType": "", + "gmsId": "PSA25ALG", + "name": "pestSurveyNo", + "description": "The total number of actions undertaken to monitor pest species.", + "label": "No. of pest species monitoring actions undertaken - 25th ALG", + "listName": "", + "category": "Invasive Species Management - Pests & Diseases", + "isOutputTarget": true }, { - "category": "Indigenous Capacity", + "aggregationType": "SUM", + "displayType": "", + "gmsId": "FBS25ALG", + "name": "faunaSurveyNo", + "description": "The number of activities undertaken of the type 'Fauna Survey - general'.", + "label": "No. of fauna surveys undertaken - 25th ALG", "listName": "", - "description": "Sum of the number of formal partnerships established. These include MOUs, agreements, joint delivery, etc. which involve indigenous people in the design, delivery and/or monitoring and guidance of project implementation.", + "category": "Biodiversity Management", + "isOutputTarget": true + }, + { + "aggregationType": "SUM", "displayType": "", - "name": "formalPartnerships", + "gmsId": "WMM25ALG WSA25ALG", + "name": "weedSurveyNo", + "description": "Count of the number of weed observation, mapping and monitoring activities undertaken.", + "label": "No. of activities undertaking weed monitoring - 25th ALG", + "listName": "", + "category": "Invasive Species Management - Weeds", + "isOutputTarget": true + }, + { "aggregationType": "SUM", - "label": "Total No. of Indigenous partnerships formally established" - } - ], - "name": "Indigenous Knowledge Transfer Details" - }, - { - "template": "plantPropagationDetails", - "scores": [ + "displayType": "", + "gmsId": "STA25ALG", + "name": "siteAssessmentNo", + "description": "Represents the number of acitivities which have undertaken planning for intervention works.", + "label": "Number of site preparation actions undertaken - 25th ALG", + "listName": "", + "category": "Project Management, Planning and Research Outputs", + "isOutputTarget": true + }, { - "isOutputTarget": true, - "category": "Revegetation", - "description": "The total number of plants which have been propagated and nurtured to the point of being ready for planting out.", + "aggregationType": "SUM", "displayType": "", - "name": "totalNumberGrown", + "gmsId": "WQSA25ALG", + "name": "waterQualitySurveyNo", + "description": "The number of water quality monitoring activities undertaken.", + "label": "No. of water quality monitoring events undertaken - 25th ALG", + "listName": "", + "category": "Natural Resources Management", + "isOutputTarget": true + }, + { "aggregationType": "SUM", - "label": "Total No. of plants grown and ready for planting ", - "gmsId": "PPRP" + "displayType": "", + "gmsId": "HC25ALG HSA25ALG", + "name": "heritageSurveyNo", + "description": "Total No. of activities undertaking heritage conservation actions", + "label": "Heritage survey and assessment (no. of survey reports) - 25th ALG", + "listName": "", + "category": "Heritage Asset Management", + "isOutputTarget": true }, { - "category": "Revegetation", - "description": "The total weight of seed which has been germinated and grown into plants ready for planting out.", + "aggregationType": "SUM", "displayType": "", - "name": "totalSeedWeight", + "name": "indigenousKnowledgeTransferActionsNo", + "description": "Sum of the activities which have included at least one aspect of the sharing and/or transfer of indigenous knowledge", + "label": "Total No. of activities involving the sharing of Indigenous knowledge - 25th ALG", + "listName": "", + "category": "Indigenous Capacity", + "isOutputTarget": true + }, + { "aggregationType": "SUM", - "label": "Total weight (Kg) of seed germinated to produce the finished stock" + "displayType": "", + "gmsId": "CGM25ALG", + "name": "conservationGrazingActionsArea", + "description": "Total area managed with conservation grazing", + "label": "Area managed with conservation grazing (Ha) - 25th ALG", + "units": "Ha", + "listName": "", + "category": "Natural Resources Management", + "isOutputTarget": true }, { - "groupBy": "output:finishedStockType", - "category": "Revegetation", - "listName": "plantPropagation", - "description": "Breakdown of the number of plants grown and ready for planting out by the type of finished stock.", - "displayType": "piechart", - "name": "numberGrown", - "aggregationType": "COUNT", - "label": "No. of plants grown by type of finished stock" + "aggregationType": "SUM", + "displayType": "", + "name": "managementPlansNo", + "description": "Count of the number of plans developed which have been classified as NEW plans (ie. not revisions of existing plans).", + "label": "No. of new plans developed - 25th ALG", + "listName": "", + "category": "Project Management, Planning and Research Outputs", + "isOutputTarget": true }, { - "groupBy": "output:germinationMethod", - "category": "Revegetation", - "listName": "plantPropagation", - "description": "Breakdown of the number of plants germinated from seed by the type of seed preparation technique used.", - "displayType": "piechart", - "name": "numberGrown", "aggregationType": "SUM", - "label": "No. of plants germinated by type of preparation technique" + "displayType": "", + "gmsId": "VAC25ALG", + "name": "vegAssessmentCommNo", + "description": "Total number of site assessments undertaken using the Commonwealth government vegetation assessment methodology.", + "label": "No. of site assessments undertaken using the Commonwealth government vegetation assessment methodology - 25th ALG", + "listName": "", + "category": "Biodiversity - Site Condition Assessment", + "isOutputTarget": true } ], - "name": "Plant Propagation Details" + "name": "Output Details" }, { - "template": "biologicalSurveyInformation", + "template": "smallGrantAquittal", "scores": [], - "name": "Survey Information" + "name": "Project Acquittal" }, { - "template": "faunaSurveyDetails", + "template": "activityAttachments", + "scores": [], + "name": "Attachments" + }, + { + "template": "summaryReportDataUpload", "scores": [ { - "isOutputTarget": true, - "category": "Biodiversity Management", - "listName": "", - "description": "The number of activities undertaken of the type 'Fauna Survey - general'.", + "aggregationType": "SUM", "displayType": "", - "name": "totalNumberOfOrganisms", - "aggregationType": "COUNT", - "label": "No. of fauna surveys undertaken", - "gmsId": "FBS" + "name": "score", + "label": "Number of plants planted", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Revegetation", + "filterBy": "Number of plants planted" }, { - "category": "Biodiversity Management", - "listName": "surveyResults", - "description": "Count of the total number of rows in the fauna survey details table.(ie. each row is a record of a species occurrence).", + "aggregationType": "SUM", "displayType": "", - "name": "species", - "aggregationType": "COUNT", - "label": "Total number of fauna species records" + "name": "score", + "label": "Area of revegetation works (Ha)", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Revegetation", + "filterBy": "Area of revegetation works (Ha)" }, { - "category": "Biodiversity Management", - "listName": "", - "description": "The sum of the number of organisms recorded in all general survey events. Note that this does not include individuals recorded in site assessment and monitoring activities.", + "aggregationType": "SUM", "displayType": "", - "name": "totalNumberOfOrganisms", + "name": "score", + "label": "Total seed collected (Kg)", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Revegetation", + "filterBy": "Total seed collected (Kg)" + }, + { "aggregationType": "SUM", - "label": "Total No. of individual animals recorded" - } - ], - "name": "Fauna Survey Details" - }, - { - "template": "floraSurveyDetails", - "scores": [ + "displayType": "", + "name": "score", + "label": "Burnt area (Ha)", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Natural Resources Management", + "filterBy": "Burnt area (Ha) - may be different to the total area managed" + }, { - "isOutputTarget": true, - "category": "Biodiversity Management", - "listName": "", - "description": "The number of activities undertaken of the type 'Flora Survey - general'.", + "aggregationType": "SUM", "displayType": "", - "name": "totalNumberOfOrganisms", - "aggregationType": "COUNT", - "label": "No. of flora surveys undertaken", - "gmsId": "FRBS" + "name": "score", + "label": "Total length of fence (Km)", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Biodiversity Management", + "filterBy": "Total length of fence (Km)" }, { - "category": "Biodiversity Management", - "listName": "surveyResultsFlora", - "description": "Count of the total number of rows in the flora survey details table.(ie. each row is a record of a species occurrence).", + "aggregationType": "SUM", "displayType": "", - "name": "species", - "aggregationType": "COUNT", - "label": "Total number of flora species records" + "name": "score", + "label": "Area covered (Ha) by pest treatment actions", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Invasive Species Management - Pests & Diseases", + "filterBy": "Area covered (Ha) by pest treatment" }, { - "category": "Biodiversity Management", - "listName": "", - "description": "The sum of the number of individual plants recorded in all general flora survey events. Note that this does not include individuals recorded in site assessment and monitoring activities.", - "displayType": "", - "name": "totalNumberOfOrganisms", "aggregationType": "SUM", - "label": "Total No. of individual plants recorded" - } - ], - "name": "Flora Survey Details" - }, - { - "template": "employmentDetails", - "scores": [ - { - "category": "Indigenous Capacity", - "listName": "", - "description": "Sum of the number of indigenous people recorded as being employed on projects", "displayType": "", - "name": "totalEmployees", - "aggregationType": "SUM", - "label": "Total No. of Indigenous people employed", - "gmsId": "IPE" + "name": "score", + "label": "Kilograms of seed sown", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Revegetation", + "filterBy": "Kilograms of seed sown" }, { - "isOutputTarget": true, - "category": "Indigenous Capacity", - "listName": "", - "description": "No. of Indigenous people employed PT (rangers)", - "displayType": "", - "name": "noOfIndigenousRangersPt", "aggregationType": "SUM", - "label": "No. of Indigenous people employed PT (rangers)" + "displayType": "", + "name": "score", + "label": "Total area treated (Ha)", + "groupBy": "output:scoreLabel", + "listName": "scores", + "filterBy": "Total area treated (Ha)" }, { - "isOutputTarget": true, - "category": "Indigenous Capacity", - "listName": "", - "description": "No. of Indigenous people employed FT (rangers)", - "displayType": "", - "name": "noOfIndigenousRangersFt", "aggregationType": "SUM", - "label": "No. of Indigenous people employed FT (rangers)" + "displayType": "", + "name": "score", + "label": "Total No. of Indigenous people employed", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Indigenous Capacity", + "filterBy": "Total No. of Indigenous people employed" }, { - "isOutputTarget": true, - "category": "Indigenous Capacity", - "listName": "", - "description": "No. of Indigenous people employed PT (non-rangers)", - "displayType": "", - "name": "noOfIndigenousNonRangersPt", "aggregationType": "SUM", - "label": "No. of Indigenous people employed PT (non-rangers)" + "displayType": "", + "name": "score", + "label": "Total No. of unique farming entities engaged", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Farm Management Practices", + "filterBy": "Total No. of unique farming entities engaged" }, { - "isOutputTarget": true, - "category": "Indigenous Capacity", - "listName": "", - "description": "No. of Indigenous people employed FT (non-rangers)", - "displayType": "", - "name": "noOfIndigenousNonRangersFt", "aggregationType": "SUM", - "label": "No. of Indigenous people employed FT (non-rangers)" - } - ], - "name": "Indigenous Employment" - }, - { - "template": "indigenousEnterprise", - "scores": [ - { - "isOutputTarget": true, - "category": "Indigenous Capacity", - "description": "Count of the number of unique (new) Indigenous enterprises established as a result of project implementation", "displayType": "", - "name": "totalNewEnterprises", - "aggregationType": "SUM", - "label": "No. of new enterprises established" + "name": "score", + "label": "Total No. of individuals or colonies of pest animals destroyed", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Invasive Species Management - Pests & Diseases", + "filterBy": "Total No. of individuals or colonies of pest animals destroyed" }, { - "isOutputTarget": true, - "category": "Indigenous Capacity", - "description": "Count of the number of unique engagements of Indigenous enterprises which have been formalised in contracts/agreements.", + "aggregationType": "SUM", "displayType": "", - "name": "totalIndigenousEnterprisesEngaged", + "name": "score", + "label": "Total No. of Indigenous people employed", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Indigenous Capacity", + "filterBy": "Total No. of Indigenous people employed" + }, + { "aggregationType": "SUM", - "label": "No. of formal (contractual) engagements with Indigenous enterprises" + "displayType": "", + "name": "score", + "label": "Total No. of unique farming entities engaged", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Farm Management Practices", + "filterBy": "Total No. of unique farming entities engaged" } ], - "name": "Indigenous Businesses" + "name": "Upload of stage 1 and 2 reporting data" }, { - "template": "pestManagementDetails", + "template": "uploadOfHistoricalReportingData", "scores": [ { - "category": "Invasive Species Management - Pests & Diseases", - "listName": "", - "description": "Count of the number of activities which are undertaking pest management actions", + "aggregationType": "SUM", "displayType": "", - "name": "partnerType", - "aggregationType": "COUNT", - "label": "No. of activities undertaking pest management" - }, - { - "category": "Invasive Species Management - Pests & Diseases", - "listName": "pestManagement", - "description": "Breakdown of the number of activities undertaking pest management actions by the management method used. As a single activity can apply multiple methods for different species, the activity count may include duplicates. Therefore this should only be interpreted as a proportional breakdown.", - "displayType": "piechart", - "name": "pestManagementMethod", - "aggregationType": "HISTOGRAM", - "label": "Proportion of activities undertaking pest management by management method", - "units": "" + "gmsId": "RVN-CEG", + "name": "score", + "description": "The total number of seedlings planted.", + "label": "Number of plants planted", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Revegetation", + "filterBy": "Number of plants planted" }, { - "groupBy": "output:treatmentType", - "isOutputTarget": true, - "category": "Invasive Species Management - Pests & Diseases", - "listName": "pestManagement", - "description": "The total area over which pest treatment activities have been undertaken. Note that re-treatments of the same area may be double-counted.", - "displayType": "", - "name": "areaTreatedHa", "aggregationType": "SUM", - "label": "Area covered (Ha) by pest treatment actions", - "filterBy": "Initial treatment", - "units": "Ha", - "gmsId": "PMA" + "displayType": "", + "gmsId": "RVA-CEG", + "name": "score", + "description": "The area of land actually revegetated with native species by the planting of seedlings, sowing of seed and managed native regeneration actions.", + "label": "Area of revegetation works (Ha)", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Revegetation", + "filterBy": "Area of revegetation works (Ha)" }, { - "groupBy": "output:targetSpecies.name", - "category": "Invasive Species Management - Pests & Diseases", - "listName": "pestManagement", - "description": "Breakdown of the total area treated by species. Both initial and follow-up treatments are aggregated.", - "displayType": "barchart", - "name": "areaTreatedHa", "aggregationType": "SUM", - "label": "Treated area (Ha) by species", - "units": "" - }, - { - "isOutputTarget": true, - "category": "Invasive Species Management - Pests & Diseases", - "listName": "pestManagement", - "description": "The total number of individual pest animals killed and colonies (ants, wasps, etc.) destroyed.", "displayType": "", - "name": "pestAnimalsTreatedNo", - "aggregationType": "SUM", - "label": "Total No. of individuals or colonies of pest animals destroyed", - "gmsId": "PMQ" + "gmsId": "RVSVL-CEG", + "name": "score", + "description": "Estimate of the average survivability of both tubestock and seedstock expressed as a percentage of plants planted. For seedstock, this includes both counted and estimated germination establishment rates.", + "label": "Average survivability of tubestock and seedstock (%)", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Revegetation", + "filterBy": "Average survivability of tubestock and seedstock (%)" }, { - "groupBy": "output:targetSpecies.name", - "isOutputTarget": false, - "category": "Invasive Species Management - Pests & Diseases", - "listName": "pestManagement", - "description": "The total number of individual pest animals killed and colonies (ants, wasps, etc.) destroyed by species.", - "displayType": "barchart", - "name": "pestAnimalsTreatedNo", "aggregationType": "SUM", - "label": "No. of individual animals and colonies killed / removed by species", - "units": "", - "gmsId": "" + "displayType": "", + "gmsId": "WDT-CEG", + "name": "score", + "description": "The total area of weeds for which an initial treatment was undertaken.", + "label": "Total new area treated for weeds (Ha)", + "units": "Ha", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Invasive Species Management - Weeds", + "filterBy": "Total new area treated for weeds (Ha)" }, { - "groupBy": "output:pestManagementMethod", - "isOutputTarget": false, - "category": "Invasive Species Management - Pests & Diseases", - "listName": "pestManagement", - "description": "The total number of individual pest animals killed and colonies (ants, wasps, etc.) destroyed by treatment method used.", - "displayType": "barchart", - "name": "pestAnimalsTreatedNo", "aggregationType": "SUM", - "label": "No. of individual animals and colonies killed / removed by treatment method" + "displayType": "", + "gmsId": "CPEE-CEG", + "name": "score", + "description": "No. of workshops/field day events held", + "label": "Total No. of community participation and engagement events run", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Community Engagement and Capacity Building", + "filterBy": "Total No. of community participation and engagement events run" }, { - "category": "Invasive Species Management - Pests & Diseases", - "listName": "", - "description": "The average per hectare cost of treating/managing pest species. This is a non-mandatory attribute and may therefore skew values.", + "aggregationType": "SUM", "displayType": "", - "name": "treatmentCostPerHa", - "aggregationType": "AVERAGE", - "label": "Average cost of treatment per hectare ($ / Ha.)", - "units": "" + "gmsId": "VOL-CEG", + "name": "score", + "description": "The number of participants at activities and events who are not employed on projects. Individuals attending multiple activities will be counted for their attendance at each event.", + "label": "No of volunteers participating in project activities", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Community Engagement and Capacity Building", + "filterBy": "No of volunteers participating in project activities" }, { - "category": "Invasive Species Management - Pests & Diseases", - "listName": "", - "description": "Breakdown of the number of pest management activities undertaken by the type of partner delivering the actions.", + "aggregationType": "SUM", "displayType": "", - "name": "partnerType", - "aggregationType": "HISTOGRAM", - "label": "Breakdown of pest management activities by type of partner" + "gmsId": "GRP-CEG", + "name": "score", + "description": "No. of groups involved in project events", + "label": "No. of groups involved in project events", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Community Engagement and Capacity Building", + "filterBy": "No. of groups involved in project events" }, { - "category": "Invasive Species Management - Pests & Diseases", - "listName": "pestManagement", - "description": "Count of species records for all pest management activities undertaken. This represents the total number of pest animal occurrence records.", + "aggregationType": "SUM", "displayType": "", - "name": "targetSpecies", - "aggregationType": "COUNT", - "label": "Total No. of pest animal records reported" + "gmsId": "SGN-CEG", + "name": "score", + "description": "No. of signs permanently installed to manage public access and/or protect environmental assets", + "label": "No. of signs permanently installed", + "groupBy": "output:scoreLabel", + "listName": "scores", + "category": "Natural Resources Management", + "filterBy": "No. of signs permanently installed" } ], - "name": "Pest Management Details" + "name": "Upload of historical summary reporting data" + }, + { + "template": "gaParticipantDetails", + "scores": [], + "name": "Participant Details" + }, + { + "template": "saStructuralDiversity", + "scores": [], + "name": "Indicator 1 - Plant Species Diversity" + }, + { + "template": "saWeedAbundanceAndThreat", + "scores": [], + "name": "Indicator 2 - Weed Abundance & Threat" + }, + { + "template": "bioConditionConsolidated", + "scores": [], + "name": "BioCondition Method" }, { - "template": "diseaseManagementDetails", + "template": "gaMonthlyReportData", "scores": [ { - "category": "Invasive Species Management - Pests & Diseases", - "listName": "", - "description": "Total number of activities undertaken to manage diseases (includes outbreaks as well as experimental and research purposes).", + "aggregationType": "SUM", "displayType": "", - "name": "targetSpecies", - "aggregationType": "COUNT", - "label": "No. of activities undertaking disease management" - }, - { - "groupBy": "output:diseaseManagementPurpose", - "category": "Invasive Species Management - Pests & Diseases", + "name": "trainingCommencedAccredited", + "label": "No. participants starting accredited training", "listName": "", - "description": "Total number of activities undertaking disease management by the purpose for undertaking the activity (includes outbreaks as well as experimental and research purposes).", - "displayType": "piechart", - "name": "targetSpecies", - "aggregationType": "COUNT", - "label": "No. of activities undertaking disease management by purpose" + "category": "Green Army" }, { - "groupBy": "output:diseaseManagementMethod", - "category": "Invasive Species Management - Pests & Diseases", + "aggregationType": "SUM", + "displayType": "", + "name": "trainingNoExited", + "label": "No. of Participants who exited training", "listName": "", - "description": "Proportion of activities undertaking disease management by method. An activity may apply multiple management methods and therefore this data should be interpreted as proportionally representative only.", - "displayType": "piechart", - "name": "targetSpecies", - "aggregationType": "COUNT", - "label": "Proportion of activities undertaking disease management by method" + "category": "Green Army" }, { - "category": "Invasive Species Management - Pests & Diseases", - "listName": "", - "description": "Total number of individuals or colonies treated / quarantined", - "displayType": "", - "name": "numberTreated", "aggregationType": "SUM", - "label": "Total number of individuals or colonies treated / quarantined" + "displayType": "", + "name": "trainingNoCompleted", + "label": "No. of Participants who completed training", + "listName": "", + "category": "Green Army" }, { - "groupBy": "", - "isOutputTarget": true, - "category": "Invasive Species Management - Pests & Diseases", - "listName": "", - "description": "Total area treated / quarantined", - "displayType": "", - "name": "areaTreatedHa", "aggregationType": "SUM", - "label": "Total area (Ha) treated / quarantined", - "gmsId": "DMA" + "displayType": "", + "name": "totalParticipantsCommenced", + "label": "No. of Participants who commenced projects", + "listName": "", + "category": "Green Army" }, { - "groupBy": "output:targetSpecies.name", - "category": "Invasive Species Management - Pests & Diseases", - "listName": "", - "description": "Total area treated / quarantined by species", - "displayType": "barchart", - "name": "areaTreatedHa", "aggregationType": "SUM", - "label": "Total area (Ha) treated / quarantined by species" + "displayType": "", + "name": "totalParticipantsNotCompleted", + "label": "No. of Participants who did not complete projects", + "listName": "", + "category": "Green Army" }, { - "groupBy": "output:diseaseManagementPurpose", - "category": "Invasive Species Management - Pests & Diseases", - "listName": "", - "description": "Total area covered by disease management actions by the purpose for undertaking the action.", - "displayType": "piechart", - "name": "areaTreatedHa", "aggregationType": "SUM", - "label": "Area (Ha.) covered by disease management actions by purpose" + "displayType": "", + "name": "totalParticipantsCompleted", + "label": "No. of Participants who completed projects", + "listName": "", + "category": "Green Army" }, { - "groupBy": "output:diseaseManagementMethod", - "category": "Invasive Species Management - Pests & Diseases", - "listName": "", - "description": "Breakdown of area treated / quarantined by management method. Note that multiple methods may be used in a single treatment event and therefore this data should only interpreted as proportionally representative.", - "displayType": "piechart", - "name": "areaTreatedHa", "aggregationType": "SUM", - "label": "Proportion of area treated / quarantined (Ha.) by management method" + "displayType": "", + "name": "totalIndigenousParticipantsCommenced", + "label": "No. of Indigenous Participants who commenced projects", + "listName": "", + "category": "Green Army" }, { - "groupBy": "output:diseaseManagementMethod", - "category": "Invasive Species Management - Pests & Diseases", - "listName": "", - "description": "Total number of individuals or colonies treated / quarantined by management method. Note that multiple methods may be used in a single treatment event and therefore this data should only interpreted as proportionally representative.", - "displayType": "piechart", - "name": "numberTreated", "aggregationType": "SUM", - "label": "Total number of individuals or colonies treated / quarantined by management method" + "displayType": "", + "name": "reportingTimeTaken", + "label": "Time taken to fulfill reporting requirements", + "listName": "", + "category": "Green Army" }, { - "groupBy": "output:diseaseManagementPurpose", - "category": "Invasive Species Management - Pests & Diseases", - "listName": "", - "description": "Average cost per hectare of undertaking disease treatment actions.", + "aggregationType": "HISTOGRAM", "displayType": "piechart", - "name": "treatmentCostPerHa", - "aggregationType": "AVERAGE", - "label": "Average cost of treatment per hectare ($ / Ha.) ($/Ha)" + "name": "projectStatus", + "description": "Projects by status", + "label": "Count of projects by project status", + "groupBy": "", + "listName": "", + "category": "Green Army" } ], - "name": "Disease Management Details" - }, - { - "template": "evidenceOfPestManagement", - "scores": [], - "name": "Evidence of Pest Management Activity" + "name": "Monthly Status Report Data" }, { - "template": "pestMonitoringDetails", + "template": "gaQuarterlyProjectReport", "scores": [ { - "category": "Invasive Species Management - Pests & Diseases", - "listName": "pestObservationMonitoringDetails", - "description": "Sum of sampling/monitoring area for each pest species record. Different species may occur over the same area of land and therefore this figure IS NOT representative of the net area sampled/monitored for all species.", - "displayType": "", - "name": "pestSampledArea", "aggregationType": "SUM", - "label": "Total area sampled (Ha) for pest animal monitoring", - "units": "" + "displayType": "", + "name": "incidentCount", + "description": "Total number of incidents", + "label": "Total number of incidents recorded", + "groupBy": "", + "listName": "", + "category": "Green Army" }, { - "isOutputTarget": true, - "category": "Invasive Species Management - Pests & Diseases", - "listName": "pestObservationMonitoringDetails", - "description": "The total number of actions undertaken to monitor pest species.", + "aggregationType": "SUM", "displayType": "", - "name": "assessmentMethod", - "aggregationType": "COUNT", - "label": "No. of pest species monitoring actions undertaken", - "gmsId": "PSA" + "name": "complaintCount", + "description": "Total number of complaints", + "label": "Total number of complaints recorded", + "groupBy": "", + "listName": "", + "category": "Green Army" }, { - "groupBy": "output:pestSpecies.name", - "category": "Invasive Species Management - Pests & Diseases", - "listName": "pestObservationMonitoringDetails", - "description": "No. of pest monitoring actions by species", - "displayType": "barchart", - "name": "pestSpecies", - "aggregationType": "COUNT", - "label": "No. of pest monitoring actions by species" + "aggregationType": "SUM", + "displayType": "", + "name": "trainingActivityCount", + "description": "Total number of training activities", + "label": "Total number of training activities", + "groupBy": "", + "listName": "", + "category": "Green Army" }, { - "groupBy": "output:pestSpecies.name", - "category": "Invasive Species Management - Pests & Diseases", - "listName": "pestObservationMonitoringDetails", - "description": "Area (Ha) sampled/monitored for pest animals by species. The value for any given species is valid, but the aggregate sum of all values will be greater than the net area actually sampled/monitored.", - "displayType": "barchart", - "name": "pestSampledArea", "aggregationType": "SUM", - "label": "Area (Ha) sampled/monitored for pest animals by species", - "units": "" + "displayType": "", + "name": "participantWithdrawals", + "description": "Total number of participant withdrawals", + "label": "Total number of participant withdrawals", + "groupBy": "", + "listName": "", + "category": "Green Army" }, { - "category": "Invasive Species Management - Pests & Diseases", - "listName": "pestObservationMonitoringDetails", - "description": "Total number of observation records by assessment method", + "aggregationType": "SUM", "displayType": "", - "name": "assessmentMethod", - "aggregationType": "HISTOGRAM", - "label": "No. of observation records by population assessment methodology" - } - ], - "name": "Pest Observation and Monitoring Details" - }, - { - "template": "revegetationMonitoringResults", - "scores": [ + "name": "participantExits", + "description": "Total number of participant exits", + "label": "Total number of participant exits", + "groupBy": "", + "listName": "", + "category": "Green Army" + }, { - "isOutputTarget": true, - "category": "Revegetation", - "description": "The total number of follow-up activities undertaken to monitor the success of revegetation actions carried out under sponsored projects.", + "aggregationType": "SUM", "displayType": "", - "name": "revegetationType", - "aggregationType": "COUNT", - "label": "Total number of revegetation monitoring activities undertaken", - "gmsId": "PSS" + "name": "participantTrainingNumber", + "description": "Total number of participants starting training", + "label": "Total number of participants starting training", + "groupBy": "", + "listName": "", + "category": "Green Army" }, { - "category": "Revegetation", - "description": "Breakdown of the number of follow-up monitoring activities by the type of counting method used.", - "displayType": "piechart", - "name": "countingMethod", - "aggregationType": "HISTOGRAM", - "label": "No. of activities monitoring revegetation works by counting method" + "aggregationType": "SUM", + "displayType": "", + "name": "participantTrainingNcNumber", + "description": "Total number of participants exiting training", + "label": "Total number of participants exiting training", + "groupBy": "", + "listName": "", + "category": "Green Army" }, { - "category": "Revegetation", + "aggregationType": "SUM", + "displayType": "", + "name": "no17Years", + "description": "Total number of participants 17 years old", + "label": "Total number of participants 17 years old", + "groupBy": "", "listName": "", - "description": "Breakdown of the number of follow-up monitoring activities by the types of revegetation method used.", + "category": "Green Army" + }, + { + "aggregationType": "SUM", "displayType": "", - "name": "revegetationType", - "aggregationType": "HISTOGRAM", - "label": "No. of activities monitoring revegetation works by revegetation method" + "name": "no18Years", + "description": "Total number of participants 18 years old", + "label": "Total number of participants 18 years old", + "groupBy": "", + "listName": "", + "category": "Green Army" }, { - "isOutputTarget": false, - "category": "Revegetation", - "description": "The total number of plants estimated to be surviving as an aggregate of all counting methods used.", + "aggregationType": "SUM", "displayType": "", - "name": "totalNumberSurviving", + "name": "no19Years", + "description": "Total number of participants 19 years old", + "label": "Total number of participants 19 years old", + "groupBy": "", + "listName": "", + "category": "Green Army" + }, + { "aggregationType": "SUM", - "label": "Total No. of plants surviving", - "gmsId": "" + "displayType": "", + "name": "no20Years", + "description": "Total number of participants 20 years old", + "label": "Total number of participants 20 years old", + "groupBy": "", + "listName": "", + "category": "Green Army" }, { - "groupBy": "output:matureHeight", - "isOutputTarget": true, - "category": "Revegetation", - "listName": "revegetationMonitoring", - "description": "Total No. of plants surviving with mature height > 2 metres", + "aggregationType": "SUM", "displayType": "", - "name": "numberSurviving", + "name": "no21Years", + "description": "Total number of participants 21 years old", + "label": "Total number of participants 21 years old", + "groupBy": "", + "listName": "", + "category": "Green Army" + }, + { "aggregationType": "SUM", - "label": "Total No. of plants surviving with mature height > 2 metres", - "filterBy": "> 2 metres", - "gmsId": "PSC" + "displayType": "", + "name": "no22Years", + "description": "Total number of participants 22 years old", + "label": "Total number of participants 22 years old", + "groupBy": "", + "listName": "", + "category": "Green Army" }, { - "isOutputTarget": true, - "category": "Revegetation", - "listName": "revegetationMonitoring", - "description": "Estimate of the average survivability of both tubestock and seedstock expressed as a percentage of plants planted. For seedstock, this includes both counted and estimated germination establishment rates.", + "aggregationType": "SUM", "displayType": "", - "name": "survivalRate", - "aggregationType": "AVERAGE", - "label": "Average survivability of tubestock and seedstock (%)" + "name": "no23Years", + "description": "Total number of participants 23 years old", + "label": "Total number of participants 23 years old", + "groupBy": "", + "listName": "", + "category": "Green Army" }, { - "groupBy": "output:species.name", - "category": "Revegetation", - "listName": "revegetationMonitoring", - "description": "Breakdown of the estimated survival rate of plants by the species planted.", - "displayType": "barchart", - "name": "survivalRate", - "aggregationType": "AVERAGE", - "label": "Average survival rate by species for monitored activities" + "aggregationType": "SUM", + "displayType": "", + "name": "no24Years", + "description": "Total number of participants 24 years old", + "label": "Total number of participants 24 years old", + "groupBy": "", + "listName": "", + "category": "Green Army" + }, + { + "aggregationType": "SUM", + "displayType": "", + "name": "totalParticipants", + "description": "Total number of participants", + "label": "Total number of participants", + "groupBy": "", + "listName": "", + "category": "Green Army" } ], - "name": "Vegetation Monitoring Results" + "name": "Three Monthly Report" }, { - "template": "waterQualityGeneralInfo", + "template": "gaTeamSupervisorAttendance", "scores": [], - "name": "General information & Participants" + "name": "Change or Absence of Team Supervisor Report" }, { - "template": "waterQualityEnvironmentalInfo", + "template": "gaDesktopAuditChecklist", "scores": [], - "name": "Environmental Information at the Time of Sampling" + "name": "Desktop Audit Checklist Details" }, { - "template": "waterQualityMeasurements", - "scores": [{ - "isOutputTarget": true, - "category": "Natural Resources Management", - "listName": "", - "description": "The number of water quality monitoring activities undertaken.", - "displayType": "", - "name": "instrumentCalibration", - "aggregationType": "COUNT", - "label": "No. of water quality monitoring events undertaken", - "gmsId": "WQSA" - }], - "name": "Water Quality Measurements" + "template": "gaEndOfProjectReport", + "scores": [], + "name": "End of Project Report Details" }, { - "template": "bfOutcomesAndMonitoring", + "template": "gaSiteVisitDetails", "scores": [], - "name": "Biodiversity Fund Outcomes & Monitoring Methodology" + "name": "Site Visit Details" + } + ], + "activities": [ + { + "outputs": ["Biodiversity Fund Outcomes & Monitoring Methodology"], + "name": "Biodiversity Fund - Outcomes and Monitoring", + "type": "Assessment", + "status": "deleted" }, { - "template": "siteAssessment", - "scores": [], - "name": "Vegetation Assessment" + "outputs": [ + "Event Details", + "Participant Information", + "Materials Provided to Participants" + ], + "gmsId": "CPEE", + "name": "Community Participation and Engagement", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" }, { - "template": "vicSurveyInfo", - "scores": [], - "name": "Vegetation Assessment - Survey Information" + "outputs": [ + "Debris Removal Details", + "Participant Information" + ], + "gmsId": "DRV DRW", + "name": "Debris Removal", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" }, { - "template": "vicHabHaV2-nativeSpecies", - "scores": [], - "name": "Native Species" + "outputs": [ + "Disease Management Details", + "Participant Information" + ], + "gmsId": "DMA", + "name": "Disease Management", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" }, { - "template": "vicHabHaV2-weedSpecies", - "scores": [], - "name": "Weed Species" + "outputs": [ + "Erosion Management Details", + "Participant Information" + ], + "supportsPhotoPoints": true, + "gmsId": "EMA EML", + "name": "Erosion Management", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" }, { - "template": "vicHabHaV2-trees", - "scores": [], - "name": "Trees" + "outputs": [ + "Survey Information", + "Fauna Survey Details", + "Participant Information" + ], + "supportsPhotoPoints": true, + "gmsId": "FBS", + "name": "Fauna Survey - general", + "supportsSites": true, + "type": "Assessment", + "category": "Assessment & monitoring" }, { - "template": "siteConditionComponents", - "scores": [], - "name": "Site Condition Components" + "outputs": [ + "Fence Details", + "Participant Information" + ], + "gmsId": "FNC", + "name": "Fencing", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" }, { - "template": "landscapeContextComponents", - "scores": [], - "name": "Landscape Context Components" + "outputs": [ + "Stock Management Details", + "Photo Points" + ], + "supportsPhotoPoints": true, + "gmsId": "CGM", + "name": "Conservation Grazing Management", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" }, { - "template": "weedAbundanceAndThreatScore", - "scores": [], - "name": "Weed Abundance & Threat Score" + "outputs": [ + "Fire Management Details", + "Participant Information", + "Photo Points" + ], + "supportsPhotoPoints": true, + "gmsId": "FMA FML", + "name": "Fire Management", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" }, { - "template": "feralAnimalAbundanceScore", - "scores": [], - "name": "Feral Animal Abundance Score" + "outputs": [ + "Survey Information", + "Flora Survey Details", + "Participant Information" + ], + "supportsPhotoPoints": true, + "gmsId": "FRBS", + "name": "Flora Survey - general", + "supportsSites": true, + "type": "Assessment", + "category": "Assessment & monitoring" }, { - "template": "feralAnimalFrequencyScore", - "scores": [], - "name": "Feral Animal Frequency Score" + "outputs": [ + "Heritage Conservation Information", + "Expected Heritage Outcomes", + "Participant Information" + ], + "gmsId": "HC HSA", + "name": "Heritage Conservation", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" }, { - "template": "bfSamplingSiteInfo", - "scores": [ - { - "isOutputTarget": true, - "category": "Biodiversity - Site Condition Assessment", - "listName": "", - "description": "Total number of site assessments undertaken using the Commonwealth government vegetation assessment methodology.", - "displayType": "", - "name": "assessmentEventType", - "aggregationType": "COUNT", - "label": "No. of site assessments undertaken using the Commonwealth government vegetation assessment methodology", - "gmsId": "VAC" - }, - { - "category": "Biodiversity - Site Condition Assessment", - "listName": "", - "description": "Breakdown of the number of vegetation assessments using the Commonwealth methodology by the type of assessment event.", - "displayType": "piechart", - "name": "assessmentEventType", - "aggregationType": "HISTOGRAM", - "label": "No. of vegetation assessments using the Commonwealth methodology by the type of assessment event" - }, - { - "category": "Biodiversity - Site Condition Assessment", - "listName": "", - "description": "Breakdown of the number of vegetation assessments using the Commonwealth methodology by the type of site.", - "displayType": "piechart", - "name": "typeOfSite", - "aggregationType": "HISTOGRAM", - "label": "No. of vegetation assessments using the Commonwealth methodology by the type of site" - } + "outputs": [ + "Indigenous Employment", + "Indigenous Businesses" ], - "name": "Sampling Site Information" + "gmsId": "IPE", + "name": "Indigenous Employment and Businesses", + "type": "Activity", + "category": "Administration, management & reporting" }, { - "template": "groundCover", - "scores": [], - "name": "Field Sheet 1 - Ground Cover" + "outputs": ["Indigenous Knowledge Transfer Details"], + "gmsId": "IKM IKT", + "name": "Indigenous Knowledge Transfer", + "type": "Activity", + "category": "Training" }, { - "template": "exoticFauna", - "scores": [{ - "category": "Biodiversity - Site Condition Assessment", - "listName": "evidenceOfExoticFauna", - "description": "Count of the number of occurrences of evidence of the presence of exotic fauna by the type of evidence, as identified using the Commonwealth government vegetation assessment methodology.", - "displayType": "piechart", - "name": "evidence", - "aggregationType": "HISTOGRAM", - "label": "No. of occurrences of evidence of the presence of exotic fauna by the type of evidence (using the Commonwealth government vegetation assessment methodology)" - }], - "name": "Field Sheet 2 - Exotic Fauna" + "outputs": [ + "Plan Development Details", + "Participant Information" + ], + "gmsId": "MPD", + "name": "Management Plan Development", + "type": "Activity", + "category": "Implementation actions" }, { - "template": "crownCover", - "scores": [], - "name": "Field Sheet 3 - Overstorey and Midstorey Projected Crown Cover" + "outputs": ["Management Practice Change Details"], + "gmsId": "MPC MPCFE MPCSP", + "name": "Management Practice Change", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" }, { - "template": "crownType", - "scores": [], - "name": "Field Sheet 4 - Crown Type" + "outputs": [ + "Conservation Works Details", + "Participant Information" + ], + "gmsId": "CATS", + "name": "Conservation Actions for Species and Communities", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" + }, + { + "outputs": [ + "Outcomes", + "Evaluation", + "Lessons Learned" + ], + "name": "Outcomes, Evaluation and Learning - final report", + "type": "Activity", + "category": "Administration, management & reporting" + }, + { + "outputs": [ + "Evidence of Pest Management Activity", + "Pest Observation and Monitoring Details", + "Participant Information", + "Photo Points" + ], + "supportsPhotoPoints": true, + "gmsId": "PSA", + "name": "Pest Animal Survey", + "supportsSites": true, + "type": "Assessment", + "category": "Assessment & monitoring", + "status": "active" + }, + { + "outputs": [ + "Pest Management Details", + "Fence Details", + "Participant Information", + "Photo Points" + ], + "supportsPhotoPoints": true, + "gmsId": "PMA PMQ", + "name": "Pest Management", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" }, { - "template": "speciesDiversityMeri", - "scores": [ - { - "category": "Biodiversity - Site Condition Assessment", - "listName": "speciesList", - "description": "Total count of the number of rows across all species diversity tables. Represents the number of species occurrence records from site condition assessments using the Commonwealth government methodology.", - "displayType": "", - "name": "species", - "aggregationType": "COUNT", - "label": "Total No. of species records (as identified using the Commonwealth government vegetation assessment methodology)" - }, - { - "groupBy": "output:nativeOrExotic", - "category": "Biodiversity - Site Condition Assessment", - "listName": "speciesList", - "description": "Proportional breakdown of native vs exotic species recorded as identified using the Commonwealth government vegetation assessment methodology.", - "displayType": "piechart", - "name": "species", - "aggregationType": "COUNT", - "label": "Proportion of native : exotic species recorded (as identified using the Commonwealth government vegetation assessment methodology)" - } + "outputs": [ + "Plant Propagation Details", + "Participant Information" ], - "name": "Field Sheet 5 - Species Diversity" + "gmsId": "PPRP", + "name": "Plant Propagation", + "type": "Activity", + "category": "Implementation actions" }, { - "template": "habitatHectaresSiteCondition", - "scores": [], - "name": "Site Condition" + "outputs": [ + "Vegetation Monitoring Results", + "Participant Information", + "Photo Points" + ], + "supportsPhotoPoints": true, + "gmsId": "PSS PSC", + "name": "Plant Survival Survey", + "supportsSites": true, + "type": "Assessment", + "category": "Assessment & monitoring" }, { - "template": "habitatHectaresLandscapeContext", - "scores": [], - "name": "Landscape Context" + "outputs": [ + "Administration Activities", + "Participant Information" + ], + "name": "Project Administration", + "type": "Activity", + "category": "Administration, management & reporting" }, { - "template": "tasVegSiteCondition", - "scores": [], - "name": "Site Condition - TasVeg" + "outputs": [ + "Access Control Details", + "Infrastructure Details", + "Participant Information" + ], + "gmsId": "PAM", + "name": "Public Access and Infrastructure", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" }, { - "template": "tasVegLandscaprContext", - "scores": [], - "name": "Landscape Context - TasVeg" + "outputs": [ + "Research Information", + "Participant Information" + ], + "name": "Research", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" }, { - "template": "tasVegNvaMethod_F", - "scores": [], - "name": "TasVeg Native Vegetation Assessment Method - Forest Vegetation" + "outputs": [ + "Revegetation Details", + "Participant Information", + "Photo Points" + ], + "supportsPhotoPoints": true, + "gmsId": "RVA RVN RVSS RVT2A RVT2B RVS2B", + "name": "Revegetation", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" }, { - "template": "tasVegNvaMethod_NF", - "scores": [], - "name": "TasVeg Native Vegetation Assessment Method - Non-Forest Vegetation" + "outputs": [ + "Seed Collection Details", + "Participant Information" + ], + "gmsId": "SDC", + "name": "Seed Collection", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" }, { - "template": "tasVegFloristicComposition", - "scores": [], - "name": "Floristic Composition" + "outputs": ["Planned Monitoring Approach"], + "name": "Site Monitoring Plan", + "supportsSites": true, + "type": "Activity", + "category": "Assessment & monitoring" }, { - "template": "bioCondition100x50m", - "scores": [], - "name": "100 x 50m area - Ecologically Dominant Layer" + "outputs": [ + "Site Preparation Actions", + "Weed Treatment Details", + "Participant Information", + "Photo Points" + ], + "supportsPhotoPoints": true, + "gmsId": "STP", + "name": "Site Preparation", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" }, { - "template": "bioCondition50x10m", - "scores": [], - "name": "50 x 10m area" + "outputs": [ + "Training Details", + "Skills Development", + "Participant Information" + ], + "gmsId": "TSD", + "name": "Training and Skills Development", + "type": "Activity", + "category": "Training" }, { - "template": "bioCondition50x20m", - "scores": [], - "name": "50 x 20m area - Coarse Woody Debris" + "outputs": ["Water Management Details"], + "gmsId": "WMA WMN", + "name": "Water Management", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" }, { - "template": "bioCondition1x1m", - "scores": [], - "name": "Five 1 x 1m plots" + "outputs": [ + "General information & Participants", + "Environmental Information at the Time of Sampling", + "Water Quality Measurements" + ], + "gmsId": "WQSA", + "name": "Water Quality Survey", + "supportsSites": true, + "type": "Assessment", + "category": "Assessment & monitoring" }, { - "template": "bioCondition100mTransect", - "scores": [], - "name": "100m Transect" + "outputs": [ + "Evidence of Weed Treatment", + "Weed Observation and Monitoring Details", + "Participant Information", + "Photo Points" + ], + "supportsPhotoPoints": true, + "gmsId": "WMM WSA", + "name": "Weed Mapping & Monitoring", + "supportsSites": true, + "type": "Assessment", + "category": "Assessment & monitoring" }, { - "template": "heritageConservationInformation", - "scores": [ - { - "category": "Heritage Asset Management", - "listName": "", - "description": "Count of the total number of activities undertaking heritage conservation actions", - "displayType": "", - "name": "siteName", - "aggregationType": "COUNT", - "label": "Total No. of activities undertaking heritage conservation actions", - "gmsId": "HC HSA" - }, - { - "category": "Heritage Asset Management", - "listName": "", - "description": "Breakdown of the total number of activities undertaking heritage conservation actions by type of heritage work", - "displayType": "", - "name": "typeOfHeritage", - "aggregationType": "HISTOGRAM", - "label": "No. of activities by type of heritage work" - }, - { - "category": "Heritage Asset Management", - "listName": "", - "description": "Breakdown of the total number of activities undertaking heritage conservation actions by level of heritage listing.", - "displayType": "", - "name": "levelOfHeritageListing", - "aggregationType": "HISTOGRAM", - "label": "No. of activities on sites by the level of heritage listing" - } + "outputs": [ + "Weed Treatment Details", + "Participant Information", + "Photo Points" ], - "name": "Heritage Conservation Information" + "supportsPhotoPoints": true, + "gmsId": "WDT", + "name": "Weed Treatment", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" }, { - "template": "heritageExpectedOutcomes", - "scores": [], - "name": "Expected Heritage Outcomes" + "outputs": [ + "Site Planning Details", + "Threatening Processes and Site Condition Risks", + "Participant Information" + ], + "supportsPhotoPoints": true, + "gmsId": "STA", + "name": "Works Planning and Risk", + "supportsSites": true, + "type": "Activity", + "category": "Implementation actions" }, { - "template": "projectStageProgress", - "scores": [], - "name": "Overview of Project Progress" + "outputs": [ + "Overview of Project Progress", + "Environmental, Economic and Social Outcomes", + "Implementation Update", + "Lessons Learned and Improvements" + ], + "name": "Progress, Outcomes and Learning - stage report", + "type": "Activity", + "category": "Administration, management & reporting" }, { - "template": "projectStageOutcomes", - "scores": [], - "name": "Environmental, Economic and Social Outcomes" + "outputs": [ + "Sampling Site Information", + "Photo Points", + "Field Sheet 1 - Ground Cover", + "Field Sheet 2 - Exotic Fauna", + "Field Sheet 3 - Overstorey and Midstorey Projected Crown Cover", + "Field Sheet 4 - Crown Type", + "Field Sheet 5 - Species Diversity" + ], + "supportsPhotoPoints": true, + "gmsId": "VAC", + "name": "Vegetation Assessment - Commonwealth government methodology", + "supportsSites": true, + "type": "Assessment", + "category": "Assessment & monitoring" }, { - "template": "projectStageUpdate", - "scores": [], - "name": "Implementation Update" + "outputs": ["BioCondition Method"], + "name": "Vegetation Assessment - BioCondition (QLD)", + "type": "Assessment", + "category": "Assessment & monitoring", + "status": "deleted" }, { - "template": "projectStageLessons", - "scores": [], - "name": "Lessons Learned and Improvements" + "outputs": ["Floristic Composition"], + "supportsPhotoPoints": true, + "name": "Vegetation Assessment - BioMetric (NSW)", + "supportsSites": true, + "type": "Assessment", + "status": "deleted" }, { - "template": "sitePlanningDetails", - "scores": [{ - "category": "Project Management, Planning and Research Outputs", - "listName": "", - "description": "Represents the number of acitivities which have undertaken planning for intervention works.", - "displayType": "", - "name": "noOfWorksAreasTotal", - "aggregationType": "COUNT", - "label": "Number of site preparation actions undertaken", - "gmsId": "STA" - }], - "name": "Site Planning Details" + "outputs": [ + "Vegetation Assessment - Survey Information", + "Native Species", + "Weed Species", + "Trees" + ], + "name": "Vegetation Assessment - Habitat Hectares v2 (VIC)", + "type": "Assessment", + "category": "Assessment & monitoring" }, { - "template": "smallGrantProgressReport", - "scores": [], - "name": "Progress Report Details" + "outputs": ["Floristic Composition"], + "supportsPhotoPoints": true, + "name": "Vegetation Assessment - Native Vegetation Condition Assessment and Monitoring (WA)", + "supportsSites": true, + "type": "Assessment", + "status": "deleted" }, { - "template": "smallGrantFinalReport", - "scores": [], - "name": "Final Report Details" + "outputs": ["TasVeg Native Vegetation Assessment Method - Forest Vegetation"], + "name": "TasVeg - Native Vegetation Assessment - Forest Vegetation", + "type": "Assessment", + "category": "Assessment & monitoring", + "status": "active" }, { - "template": "smallGrantOutputs", - "scores": [], - "name": "Output Details" + "outputs": ["TasVeg Native Vegetation Assessment Method - Non-Forest Vegetation"], + "name": "TasVeg - Native Vegetation Assessment - Non-Forest Vegetation", + "type": "Assessment", + "category": "Assessment & monitoring", + "status": "deleted" }, { - "template": "fencing", - "scores": [ - { - "isOutputTarget": true, - "category": "Biodiversity Management", - "description": "The total length of fencing erected.", - "displayType": "", - "name": "lengthOfFence", - "aggregationType": "SUM", - "label": "Total length of fence (Km)", - "units": "kilometres", - "gmsId": "FNC" - }, - { - "groupBy": "output:fenceType", - "category": "Biodiversity Management", - "listName": "", - "description": "Breakdown of the length of fence erected by the type of fence.", - "displayType": "piechart", - "name": "lengthOfFence", - "aggregationType": "SUM", - "label": "Total length of fence (Km) by the type of fence erected", - "units": "kilometres" - }, - { - "category": "Biodiversity Management", - "description": "Breakdown of the number of activities erecting fencing by the type of fence being erected.", - "displayType": "piechart", - "name": "fenceType", - "aggregationType": "HISTOGRAM", - "label": "Proportion of activities by fence type", - "units": "" - }, - { - "groupBy": "output:purposeOfFence", - "category": "Biodiversity Management", - "listName": "", - "description": "Breakdown of the proportion of the length of fencing by purpose of fence. As a single fence can perform many purposes, the length may be multi-counted. Interpret only as length within a specific category or as a percentage of the whole.", - "displayType": "piechart", - "name": "lengthOfFence", - "aggregationType": "SUM", - "label": "Length of fence (as a %) by fence purpose", - "units": "" - }, - { - "isOutputTarget": true, - "category": "Biodiversity Management", - "listName": "", - "description": "The area in hectares enclosed within a protective fence", - "displayType": "", - "name": "fenceAreaProtected", - "aggregationType": "SUM", - "label": "Area protected by fencing (Ha)" - }, - { - "isOutputTarget": false, - "category": "Biodiversity Management", - "listName": "", - "description": "Breakdown of the proportion of the number of activities erecting fencing by purpose of fence. As a single fence can perform many purposes, the length may be multi-counted. Interpret only as length within a specific category or as a percentage of the whole.", - "displayType": "piechart", - "name": "purposeOfFence", - "aggregationType": "HISTOGRAM", - "label": "Proportion of activities by fence purpose", - "units": "" - } + "outputs": [ + "Feral Animal Abundance Score", + "Feral Animal Frequency Score" ], - "name": "Fence Details" - }, - { - "template": "smallGrantAquittal", - "scores": [], - "name": "Project Acquittal" + "name": "Feral animal assessment", + "type": "Assessment", + "status": "deleted" }, { - "template": "activityAttachments", - "scores": [], - "name": "Attachments" + "outputs": [ + "Participant Information", + "Vegetation Assessment", + "Site Condition Components", + "Landscape Context Components", + "Threatening Processes and Site Condition Risks", + "Photo Points" + ], + "name": "Site assessment", + "type": "Assessment", + "status": "deleted" }, { - "template": "summaryReportDataUpload", - "scores": [ - { - "groupBy": "output:scoreLabel", - "category": "Revegetation", - "listName": "scores", - "displayType": "", - "name": "score", - "aggregationType": "SUM", - "label": "Number of plants planted", - "filterBy": "Number of plants planted" - }, - { - "groupBy": "output:scoreLabel", - "category": "Revegetation", - "listName": "scores", - "displayType": "", - "name": "score", - "aggregationType": "SUM", - "label": "Area of revegetation works (Ha)", - "filterBy": "Area of revegetation works (Ha)" - }, - { - "groupBy": "output:scoreLabel", - "category": "Revegetation", - "listName": "scores", - "displayType": "", - "name": "score", - "aggregationType": "SUM", - "label": "Total seed collected (Kg)", - "filterBy": "Total seed collected (Kg)" - }, - { - "groupBy": "output:scoreLabel", - "category": "Natural Resources Management", - "listName": "scores", - "displayType": "", - "name": "score", - "aggregationType": "SUM", - "label": "Burnt area (Ha)", - "filterBy": "Burnt area (Ha) - may be different to the total area managed" - }, - { - "groupBy": "output:scoreLabel", - "category": "Biodiversity Management", - "listName": "scores", - "displayType": "", - "name": "score", - "aggregationType": "SUM", - "label": "Total length of fence (Km)", - "filterBy": "Total length of fence (Km)" - }, - { - "groupBy": "output:scoreLabel", - "category": "Invasive Species Management - Pests & Diseases", - "listName": "scores", - "displayType": "", - "name": "score", - "aggregationType": "SUM", - "label": "Area covered (Ha) by pest treatment actions", - "filterBy": "Area covered (Ha) by pest treatment" - }, - { - "groupBy": "output:scoreLabel", - "category": "Revegetation", - "listName": "scores", - "displayType": "", - "name": "score", - "aggregationType": "SUM", - "label": "Kilograms of seed sown", - "filterBy": "Kilograms of seed sown" - }, - { - "groupBy": "output:scoreLabel", - "listName": "scores", - "displayType": "", - "name": "score", - "aggregationType": "SUM", - "label": "Total area treated (Ha)", - "filterBy": "Total area treated (Ha)" - }, - { - "groupBy": "output:scoreLabel", - "category": "Indigenous Capacity", - "listName": "scores", - "displayType": "", - "name": "score", - "aggregationType": "SUM", - "label": "Total No. of Indigenous people employed", - "filterBy": "Total No. of Indigenous people employed" - }, - { - "groupBy": "output:scoreLabel", - "category": "Farm Management Practices", - "listName": "scores", - "displayType": "", - "name": "score", - "aggregationType": "SUM", - "label": "Total No. of unique farming entities engaged", - "filterBy": "Total No. of unique farming entities engaged" - }, - { - "groupBy": "output:scoreLabel", - "category": "Invasive Species Management - Pests & Diseases", - "listName": "scores", - "displayType": "", - "name": "score", - "aggregationType": "SUM", - "label": "Total No. of individuals or colonies of pest animals destroyed", - "filterBy": "Total No. of individuals or colonies of pest animals destroyed" - }, - { - "groupBy": "output:scoreLabel", - "category": "Indigenous Capacity", - "listName": "scores", - "displayType": "", - "name": "score", - "aggregationType": "SUM", - "label": "Total No. of Indigenous people employed", - "filterBy": "Total No. of Indigenous people employed" - }, - { - "groupBy": "output:scoreLabel", - "category": "Farm Management Practices", - "listName": "scores", - "displayType": "", - "name": "score", - "aggregationType": "SUM", - "label": "Total No. of unique farming entities engaged", - "filterBy": "Total No. of unique farming entities engaged" - } + "outputs": [ + "Bushland Condition - Site Health Summary", + "Indicator 1 - Plant Species Diversity", + "Indicator 2 - Weed Abundance & Threat", + "Indicator 3 - Structural Diversity", + "Indicator 4 - Regeneration", + "Indicator 5 - Tree and Shrub Health", + "Indicator 6 - Tree Habitat", + "Indicator 7 - Feral Animals", + "Indicator 8 - Total Grazing Pressure", + "Indicator 9 - Animal Species", + "Indicator 10 - Bushland Degradation Risk", + "Benchmarks - SA" ], - "name": "Upload of stage 1 and 2 reporting data" + "name": "Vegetation Assessment - Bushland Condition Monitoring (SA)", + "type": "Assessment", + "category": "Assessment & monitoring", + "status": "deleted" }, { - "template": "gaParticipantDetails", - "scores": [], - "name": "Participant Details" + "outputs": [ + "Progress Report Details", + "Attachments" + ], + "supportsPhotoPoints": false, + "gmsId": "PR25ALG", + "name": "25th Anniversary Landcare Grants - Progress Report", + "supportsSites": false, + "type": "Report", + "category": "Small Grants", + "status": "active" }, { - "template": "saStructuralDiversity", - "scores": [], - "name": "Indicator 1 - Plant Species Diversity" + "outputs": [ + "Final Report Details", + "Output Details", + "Project Acquittal", + "Attachments" + ], + "supportsPhotoPoints": false, + "gmsId": "WDT25ALG FNC25ALG CPEE25ALG MPCFE25ALG IKM25ALG PSA25ALG FBS25ALG WMM25ALG WSA25ALG STA25ALG WQSA25ALG HC25ALG HSA25ALG CGM25ALG VAC25ALG RVA25ALG RVN25ALG EML25ALG ", + "name": "25th Anniversary Landcare Grants - Final Report", + "supportsSites": false, + "type": "Report", + "category": "Small Grants", + "status": "active" }, { - "template": "saWeedAbundanceAndThreat", - "scores": [], - "name": "Indicator 2 - Weed Abundance & Threat" + "outputs": ["Upload of stage 1 and 2 reporting data"], + "gmsId": "", + "name": "Upload of stage 1 and 2 reporting data", + "type": "Activity", + "category": "None", + "status": "deleted" }, { - "template": "bioConditionConsolidated", - "scores": [], - "name": "BioCondition Method" + "outputs": ["Upload of historical summary reporting data"], + "gmsId": "RVN-CEG RVA-CEG RVSVL-CEG WDT-CEG CPEE-CEG VOL-CEG GRP-CEG SGN-CEG", + "name": "Upload of historical summary reporting data", + "type": "Activity", + "category": "None" }, { - "template": "gaMonthlyReportData", - "scores": [ - { - "category": "Green Army", - "listName": "", - "displayType": "", - "name": "trainingCommencedAccredited", - "aggregationType": "SUM", - "label": "No. participants starting accredited training" - }, - { - "category": "Green Army", - "listName": "", - "displayType": "", - "name": "trainingNoExited", - "aggregationType": "SUM", - "label": "No. of Participants who exited training" - }, - { - "category": "Green Army", - "listName": "", - "displayType": "", - "name": "trainingNoCompleted", - "aggregationType": "SUM", - "label": "No. of Participants who completed training" - }, - { - "category": "Green Army", - "listName": "", - "displayType": "", - "name": "totalParticipantsCommenced", - "aggregationType": "SUM", - "label": "No. of Participants who commenced projects" - }, - { - "category": "Green Army", - "listName": "", - "displayType": "", - "name": "totalParticipantsNotCompleted", - "aggregationType": "SUM", - "label": "No. of Participants who did not complete projects" - }, - { - "category": "Green Army", - "listName": "", - "displayType": "", - "name": "totalParticipantsCompleted", - "aggregationType": "SUM", - "label": "No. of Participants who completed projects" - }, - { - "category": "Green Army", - "listName": "", - "displayType": "", - "name": "totalIndigenousParticipantsCommenced", - "aggregationType": "SUM", - "label": "No. of Indigenous Participants who commenced projects" - }, - { - "category": "Green Army", - "listName": "", - "displayType": "", - "name": "reportingTimeTaken", - "aggregationType": "SUM", - "label": "Time taken to fulfill reporting requirements" - }, - { - "groupBy": "", - "category": "Green Army", - "listName": "", - "description": "Projects by status", - "displayType": "piechart", - "name": "projectStatus", - "aggregationType": "HISTOGRAM", - "label": "Count of projects by project status" - } - ], - "name": "Monthly Status Report Data" + "outputs": ["Monthly Status Report Data"], + "supportsPhotoPoints": false, + "name": "Green Army - Monthly project status report", + "supportsSites": false, + "type": "Report", + "category": "Programme Reporting" }, { - "template": "gaQuarterlyProjectReport", - "scores": [ - { - "groupBy": "", - "category": "Green Army", - "listName": "", - "description": "Total number of incidents", - "displayType": "", - "name": "incidentCount", - "aggregationType": "SUM", - "label": "Total number of incidents recorded" - }, - { - "groupBy": "", - "category": "Green Army", - "listName": "", - "description": "Total number of complaints", - "displayType": "", - "name": "complaintCount", - "aggregationType": "SUM", - "label": "Total number of complaints recorded" - }, - { - "groupBy": "", - "category": "Green Army", - "listName": "", - "description": "Total number of training activities", - "displayType": "", - "name": "trainingActivityCount", - "aggregationType": "SUM", - "label": "Total number of training activities" - }, - { - "groupBy": "", - "category": "Green Army", - "listName": "", - "description": "Total number of participant withdrawals", - "displayType": "", - "name": "participantWithdrawals", - "aggregationType": "SUM", - "label": "Total number of participant withdrawals" - }, - { - "groupBy": "", - "category": "Green Army", - "listName": "", - "description": "Total number of participant exits", - "displayType": "", - "name": "participantExits", - "aggregationType": "SUM", - "label": "Total number of participant exits" - }, - { - "groupBy": "", - "category": "Green Army", - "listName": "", - "description": "Total number of participants starting training", - "displayType": "", - "name": "participantTrainingNumber", - "aggregationType": "SUM", - "label": "Total number of participants starting training" - }, - { - "groupBy": "", - "category": "Green Army", - "listName": "", - "description": "Total number of participants exiting training", - "displayType": "", - "name": "participantTrainingNcNumber", - "aggregationType": "SUM", - "label": "Total number of participants exiting training" - }, - { - "groupBy": "", - "category": "Green Army", - "listName": "", - "description": "Total number of participants 17 years old", - "displayType": "", - "name": "no17Years", - "aggregationType": "SUM", - "label": "Total number of participants 17 years old" - }, - { - "groupBy": "", - "category": "Green Army", - "listName": "", - "description": "Total number of participants 18 years old", - "displayType": "", - "name": "no18Years", - "aggregationType": "SUM", - "label": "Total number of participants 18 years old" - }, - { - "groupBy": "", - "category": "Green Army", - "listName": "", - "description": "Total number of participants 19 years old", - "displayType": "", - "name": "no19Years", - "aggregationType": "SUM", - "label": "Total number of participants 19 years old" - }, - { - "groupBy": "", - "category": "Green Army", - "listName": "", - "description": "Total number of participants 20 years old", - "displayType": "", - "name": "no20Years", - "aggregationType": "SUM", - "label": "Total number of participants 20 years old" - }, - { - "groupBy": "", - "category": "Green Army", - "listName": "", - "description": "Total number of participants 21 years old", - "displayType": "", - "name": "no21Years", - "aggregationType": "SUM", - "label": "Total number of participants 21 years old" - }, - { - "groupBy": "", - "category": "Green Army", - "listName": "", - "description": "Total number of participants 22 years old", - "displayType": "", - "name": "no22Years", - "aggregationType": "SUM", - "label": "Total number of participants 22 years old" - }, - { - "groupBy": "", - "category": "Green Army", - "listName": "", - "description": "Total number of participants 23 years old", - "displayType": "", - "name": "no23Years", - "aggregationType": "SUM", - "label": "Total number of participants 23 years old" - }, - { - "groupBy": "", - "category": "Green Army", - "listName": "", - "description": "Total number of participants 24 years old", - "displayType": "", - "name": "no24Years", - "aggregationType": "SUM", - "label": "Total number of participants 24 years old" - }, - { - "groupBy": "", - "category": "Green Army", - "listName": "", - "description": "Total number of participants", - "displayType": "", - "name": "totalParticipants", - "aggregationType": "SUM", - "label": "Total number of participants" - } - ], - "name": "Three Monthly Report" + "outputs": ["Three Monthly Report"], + "supportsPhotoPoints": false, + "name": "Green Army - Quarterly project report", + "supportsSites": false, + "type": "Report", + "category": "Programme Reporting" }, { - "template": "gaTeamSupervisorAttendance", - "scores": [], - "name": "Change or Absence of Team Supervisor Report" + "outputs": ["End of Project Report Details"], + "supportsPhotoPoints": false, + "name": "Green Army - End of Project Report", + "supportsSites": false, + "type": "Report", + "category": "Programme Reporting" }, { - "template": "gaDesktopAuditChecklist", - "scores": [], - "name": "Desktop Audit Checklist Details" + "outputs": ["Desktop Audit Checklist Details"], + "supportsPhotoPoints": false, + "name": "Green Army - Desktop Audit Checklist", + "supportsSites": false, + "type": "Report", + "category": "Programme Reporting" }, { - "template": "gaEndOfProjectReport", - "scores": [], - "name": "End of Project Report Details" + "outputs": ["Change or Absence of Team Supervisor Report"], + "supportsPhotoPoints": false, + "name": "Green Army - Change or Absence of Team Supervisor", + "supportsSites": false, + "type": "Report", + "category": "Programme Reporting" }, { - "template": "gaSiteVisitDetails", - "scores": [], - "name": "Site Visit Details" + "outputs": ["Site Visit Details"], + "supportsPhotoPoints": false, + "name": "Green Army - Site Visit Checklist", + "supportsSites": false, + "type": "Report", + "category": "Programme Reporting" } ] } \ No newline at end of file diff --git a/models/activityAttachments/dataModel.json b/models/activityAttachments/dataModel.json index cd1190fd5..20893900b 100644 --- a/models/activityAttachments/dataModel.json +++ b/models/activityAttachments/dataModel.json @@ -3,19 +3,37 @@ "dataModel": [ { "dataType": "document", - "description": "Please attach relevant supporting documents (e.g. photos, media clips, survey data, information products/publications, etc.) that provide evidence of the project's progress and / or impacts.", - "name": "supportingDocs" + "name": "supportingDocs1" }, { "dataType": "document", - "description": "You may attach other documents relevant to your project for the Department's information.", - "name": "additionalInfo" + "name": "supportingDocs2" + }, + { + "dataType": "document", + "name": "supportingDocs3" + }, + { + "dataType": "document", + "description": "", + "name": "additionalInfo1" + }, + { + "dataType": "document", + "description": "", + "name": "additionalInfo2" + }, + { + "dataType": "document", + "description": "", + "name": "additionalInfo3" } ], "viewModel": [ { "items": [{ "source": "Supporting documents are required (where available) to support the statements you have made regarding your progress/achievement.", + "computed": null, "type": "literal" }], "type": "row" @@ -23,24 +41,65 @@ { "items": [ { - "items": [{ - "source": "supportingDocs", - "preLabel": "Supporting documents:", - "type": "document" - }], + "items": [ + { + "source": "