diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..95ca8e9 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: maven + directory: "/" + schedule: + interval: "daily" \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..45d0c9d --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,45 @@ +name: CI + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + schedule: + - cron: '0 0 * * *' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'adopt' + cache: maven + - run: mvn -B package --file pom.xml + + deploy: + needs: build + if: github.event_name == 'push' && github.ref == 'refs/heads/main' + runs-on: ubuntu-latest + environment: main + env: + OSSRH_USERNAME: ${{ secrets.SONATYPE_OSSRH_USERNAME }} + OSSRH_PASSWORD: ${{ secrets.SONATYPE_OSSRH_PASSWORD }} + GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} + GPG_SECRET_KEYS: ${{ secrets.GPG_SECRET_KEYS }} + GPG_OWNERTRUST: ${{ secrets.GPG_OWNERTRUST }} + + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'adopt' + cache: maven + - run: | + echo $GPG_SECRET_KEYS | base64 --decode | gpg --import --no-tty --batch --yes + echo $GPG_OWNERTRUST | base64 --decode | gpg --import-ownertrust + mvn deploy --settings .mvn/settings.xml -Dgpg.skip=false -DskipTests=true -B \ No newline at end of file diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 0000000..182d7e2 --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,56 @@ +name: "CodeQL" + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + schedule: + - cron: '17 12 * * 0' + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'java' ] + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v1 + with: + languages: ${{ matrix.language }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + # queries: ./path/to/local/query, your-org/your-repo/queries@main + + # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). + # If this step fails, then you should remove it and run the build manually (see below) + - name: Autobuild + uses: github/codeql-action/autobuild@v1 + + # ℹ️ Command-line programs to run using the OS shell. + # 📚 https://git.io/JvXDl + + # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines + # and modify them (or add more) to build your code if your project + # uses a compiled language + + #- run: | + # make bootstrap + # make release + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v1 diff --git a/.gitignore b/.gitignore index 0e13eeb..cdfe4eb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,22 @@ -target/ -pom.xml.tag -pom.xml.releaseBackup -pom.xml.versionsBackup -pom.xml.next -release.properties -dependency-reduced-pom.xml -buildNumber.properties -.mvn/timing.properties -# https://github.com/takari/maven-wrapper#usage-without-binary-jar -.mvn/wrapper/maven-wrapper.jar +*.class + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.ear + +# exclude jar for gradle wrapper +!gradle/wrapper/*.jar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + +# build files +**/target +target +.gradle +build +.idea/ \ No newline at end of file diff --git a/.mvn/settings.xml b/.mvn/settings.xml new file mode 100644 index 0000000..2088155 --- /dev/null +++ b/.mvn/settings.xml @@ -0,0 +1,26 @@ + + + + + + ossrh + ${env.OSSRH_USERNAME} + ${env.OSSRH_PASSWORD} + + + + + + ossrh + + true + + + gpg + ${env.GPG_PASSPHRASE} + + + + \ No newline at end of file diff --git a/DHISFormatter.xml b/DHISFormatter.xml new file mode 100644 index 0000000..415e4c4 --- /dev/null +++ b/DHISFormatter.xml @@ -0,0 +1,316 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..bee4899 --- /dev/null +++ b/LICENSE @@ -0,0 +1,24 @@ +Copyright (c) 2004-2022, University of Oslo +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +* Neither the name of the HISP project nor the names of its contributors may + be used to endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/license-header b/license-header new file mode 100644 index 0000000..bdc118b --- /dev/null +++ b/license-header @@ -0,0 +1,27 @@ +/* + * Copyright (c) 2004-$YEAR, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..6af11bc --- /dev/null +++ b/pom.xml @@ -0,0 +1,199 @@ + + + 4.0.0 + + org.example + dhis2-java-sdk + 1.0.0-SNAPSHOT + + + 11 + 11 + + + + + + org.codehaus.mojo + exec-maven-plugin + 3.0.0 + + + generate-sources + + java + + + + + true + org.hisp.dhis.integration.jsonschemagen.Dhis2JsonSchemaGenerator + target/generated-resources/schemas + + + + org.hisp.dhis.integration + dhis2-json-schema-generator + 1.0.0-SNAPSHOT + + + com.github.dhis2.dhis2-core + dhis-api + 2.37.4 + + + com.github.dhis2.dhis2-core + dhis-service-dxf2 + 2.37.4 + + + org.slf4j + slf4j-api + 1.7.36 + + + junit + junit + 4.13.2 + + + + + org.jsonschema2pojo + jsonschema2pojo-maven-plugin + 1.1.1 + + ${project.build.directory}/generated-resources/schemas + org.hisp.dhis.api.v2_37_4.model + true + true + true + true + true + true + false + + + + + generate + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0-M5 + + false + + + + io.committed + speedy-spotless-maven-plugin + 0.1.3 + + + install-formatter-hook + + install-hooks + + + + + + + DHISFormatter.xml + 4.9.0 + + + + + + java,javax,org,com + + + + license-header + + + UNIX + + + + + + + + + + org.testcontainers + testcontainers-bom + 1.16.3 + pom + import + + + + + + + com.squareup.okhttp3 + okhttp + 4.9.3 + + + com.fasterxml.jackson.core + jackson-databind + 2.13.2 + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + 2.13.2 + + + org.junit.jupiter + junit-jupiter-engine + 5.8.2 + test + + + org.testcontainers + postgresql + test + + + io.rest-assured + rest-assured + 4.5.1 + test + + + org.apache.logging.log4j + log4j-slf4j-impl + 2.17.2 + test + + + + + + jitpack.io + https://jitpack.io + + + oss.sonatype.org + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + diff --git a/src/main/java/org/hisp/dhis/integration/sdk/Dhis2Client.java b/src/main/java/org/hisp/dhis/integration/sdk/Dhis2Client.java new file mode 100644 index 0000000..1208672 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/Dhis2Client.java @@ -0,0 +1,103 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk; + +import java.util.concurrent.TimeUnit; + +import okhttp3.ConnectionPool; +import okhttp3.Credentials; +import okhttp3.OkHttpClient; +import okhttp3.Request; + +import org.hisp.dhis.integration.sdk.api.converter.ConverterFactory; +import org.hisp.dhis.integration.sdk.api.operation.DeleteOperation; +import org.hisp.dhis.integration.sdk.api.operation.GetOperation; +import org.hisp.dhis.integration.sdk.api.operation.PatchOperation; +import org.hisp.dhis.integration.sdk.api.operation.PostOperation; +import org.hisp.dhis.integration.sdk.api.operation.PutOperation; +import org.hisp.dhis.integration.sdk.internal.operation.DefaultDeleteOperation; +import org.hisp.dhis.integration.sdk.internal.operation.DefaultGetOperation; +import org.hisp.dhis.integration.sdk.internal.operation.DefaultPostOperation; +import org.hisp.dhis.integration.sdk.internal.operation.DefaultPutOperation; + +public class Dhis2Client +{ + private final OkHttpClient httpClient; + + private final String apiUrl; + + private final ConverterFactory converterFactory; + + Dhis2Client( String apiUrl, String username, String password, ConverterFactory converterFactory ) + { + this.apiUrl = apiUrl; + OkHttpClient.Builder httpClientBuilder = new OkHttpClient.Builder() + .connectionPool( new ConnectionPool( 1, 5, TimeUnit.MINUTES ) ); + String credentials = Credentials.basic( username, password ); + httpClient = httpClientBuilder.addInterceptor( chain -> { + Request request = chain.request().newBuilder() + .header( "Authorization", credentials ) + .build(); + + return chain.proceed( request ); + } ).build(); + this.converterFactory = converterFactory; + } + + public PostOperation post( String path, String... pathParams ) + { + return new DefaultPostOperation( apiUrl, path, httpClient, converterFactory, pathParams ); + } + + public PutOperation put( String path, String... pathParams ) + { + return new DefaultPutOperation( apiUrl, path, httpClient, converterFactory, pathParams ); + } + + public GetOperation get( String path, String... pathParams ) + { + return new DefaultGetOperation( apiUrl, path, httpClient, converterFactory, pathParams ); + } + + public PatchOperation patch( String path, String... pathParams ) + { + throw new UnsupportedOperationException(); + // return new DefaultPatchOperation( apiUrl + path, httpClient, + // converterFactory ); + } + + public DeleteOperation delete( String path, String... pathParams ) + { + return new DefaultDeleteOperation( apiUrl, path, httpClient, converterFactory ); + } + + public OkHttpClient getHttpClient() + { + return httpClient; + } +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/Dhis2ClientBuilder.java b/src/main/java/org/hisp/dhis/integration/sdk/Dhis2ClientBuilder.java new file mode 100644 index 0000000..33e13f7 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/Dhis2ClientBuilder.java @@ -0,0 +1,71 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk; + +import org.hisp.dhis.integration.sdk.api.converter.ConverterFactory; +import org.hisp.dhis.integration.sdk.internal.converter.JacksonConverterFactory; + +public class Dhis2ClientBuilder +{ + private final String username; + + private final String password; + + private final String baseApiUrl; + + private ConverterFactory converterFactory = new JacksonConverterFactory(); + + public static Dhis2ClientBuilder newClient( String baseApiUrl, String username, String password ) + { + return new Dhis2ClientBuilder( baseApiUrl, username, password ); + } + + private Dhis2ClientBuilder( String baseApiUrl, String username, String password ) + { + this.baseApiUrl = baseApiUrl.trim(); + this.username = username; + this.password = password; + } + + public Dhis2ClientBuilder withConverterFactory( ConverterFactory converterFactory ) + { + this.converterFactory = converterFactory; + return this; + } + + public Dhis2Client build() + { + StringBuilder apiPathStringBuilder = new StringBuilder(); + apiPathStringBuilder.append( baseApiUrl ); + if ( !baseApiUrl.endsWith( "/" ) ) + { + apiPathStringBuilder.append( "/" ); + } + return new Dhis2Client( apiPathStringBuilder.toString(), username, password, converterFactory ); + } +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/Page.java b/src/main/java/org/hisp/dhis/integration/sdk/Page.java new file mode 100644 index 0000000..432b60f --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/Page.java @@ -0,0 +1,70 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk; + +import java.util.HashMap; +import java.util.Map; + +import org.hisp.dhis.api.v2_37_4.model.Pager; + +import com.fasterxml.jackson.annotation.JsonAnyGetter; +import com.fasterxml.jackson.annotation.JsonAnySetter; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; + +@JsonIgnoreProperties( ignoreUnknown = true ) +public class Page +{ + private Pager pager; + + @JsonIgnore + private final Map additionalProperties = new HashMap<>(); + + public Pager getPager() + { + return pager; + } + + public void setPager( Pager pager ) + { + this.pager = pager; + } + + @JsonAnyGetter + public Map getAdditionalProperties() + { + return additionalProperties; + } + + @JsonAnySetter + public void setAdditionalProperty( String name, Object value ) + { + this.additionalProperties.put( name, value ); + } + +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/api/Dhis2ClientException.java b/src/main/java/org/hisp/dhis/integration/sdk/api/Dhis2ClientException.java new file mode 100644 index 0000000..7c1aae3 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/api/Dhis2ClientException.java @@ -0,0 +1,57 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.api; + +public class Dhis2ClientException extends RuntimeException +{ + public Dhis2ClientException() + { + super(); + } + + public Dhis2ClientException( String message ) + { + super( message ); + } + + public Dhis2ClientException( String message, Throwable cause ) + { + super( message, cause ); + } + + public Dhis2ClientException( Throwable cause ) + { + super( cause ); + } + + protected Dhis2ClientException( String message, Throwable cause, boolean enableSuppression, + boolean writableStackTrace ) + { + super( message, cause, enableSuppression, writableStackTrace ); + } +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/api/Dhis2Response.java b/src/main/java/org/hisp/dhis/integration/sdk/api/Dhis2Response.java new file mode 100644 index 0000000..ba655c9 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/api/Dhis2Response.java @@ -0,0 +1,38 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.api; + +import java.io.InputStream; + +public interface Dhis2Response +{ + T returnAs( Class responseType ); + + InputStream read(); + +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/api/IterableDhis2Response.java b/src/main/java/org/hisp/dhis/integration/sdk/api/IterableDhis2Response.java new file mode 100644 index 0000000..b928872 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/api/IterableDhis2Response.java @@ -0,0 +1,33 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.api; + +public interface IterableDhis2Response +{ + Iterable returnAs( Class responseType, String collectionName ); +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/api/converter/ConverterFactory.java b/src/main/java/org/hisp/dhis/integration/sdk/api/converter/ConverterFactory.java new file mode 100644 index 0000000..eea1247 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/api/converter/ConverterFactory.java @@ -0,0 +1,35 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.api.converter; + +public interface ConverterFactory +{ + RequestConverter createRequestConverter( Object requestType ); + + ResponseConverter createResponseConverter( Class responseType ); +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/api/converter/RequestConverter.java b/src/main/java/org/hisp/dhis/integration/sdk/api/converter/RequestConverter.java new file mode 100644 index 0000000..c4a5e68 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/api/converter/RequestConverter.java @@ -0,0 +1,33 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.api.converter; + +public interface RequestConverter +{ + String convert( Object requestBody ); +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/api/converter/ResponseConverter.java b/src/main/java/org/hisp/dhis/integration/sdk/api/converter/ResponseConverter.java new file mode 100644 index 0000000..eab04a4 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/api/converter/ResponseConverter.java @@ -0,0 +1,40 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.api.converter; + +import java.util.List; +import java.util.Map; + +import okhttp3.ResponseBody; + +public interface ResponseConverter +{ + T convert( ResponseBody responseBody ); + + T convert( List> responseBody ); +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/api/operation/DeleteOperation.java b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/DeleteOperation.java new file mode 100644 index 0000000..2e90fa2 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/DeleteOperation.java @@ -0,0 +1,32 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.api.operation; + +public interface DeleteOperation extends ResourceOperation +{ +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/api/operation/GetOperation.java b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/GetOperation.java new file mode 100644 index 0000000..e3f7cf8 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/GetOperation.java @@ -0,0 +1,42 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.api.operation; + +public interface GetOperation extends ParameterizedOperation +{ + PagingCollectOperation withPaging(); + + SimpleCollectOperation withoutPaging(); + + GetOperation withFields( String... names ); + + GetOperation withFields( String names ); + + GetOperation withFilter( String filter ); + +} \ No newline at end of file diff --git a/src/main/java/org/hisp/dhis/integration/sdk/api/operation/Operation.java b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/Operation.java new file mode 100644 index 0000000..c3e3d6c --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/Operation.java @@ -0,0 +1,39 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.api.operation; + +public interface Operation +{ + PostOperation create( String path ); + + PutOperation update( String path ); + + GetOperation get( String path ); + + DeleteOperation delete( String path ); +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/api/operation/PagingCollectOperation.java b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/PagingCollectOperation.java new file mode 100644 index 0000000..05ba01f --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/PagingCollectOperation.java @@ -0,0 +1,35 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.api.operation; + +import org.hisp.dhis.integration.sdk.internal.LazyIterableDhis2Response; + +public interface PagingCollectOperation +{ + LazyIterableDhis2Response transfer(); +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/api/operation/ParameterizedOperation.java b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/ParameterizedOperation.java new file mode 100644 index 0000000..3f501a6 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/ParameterizedOperation.java @@ -0,0 +1,41 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.api.operation; + +import java.util.Map; + +import org.hisp.dhis.integration.sdk.api.Dhis2Response; + +public interface ParameterizedOperation +{ + ParameterizedOperation withParameters( Map parameters ); + + ParameterizedOperation withParameter( String name, String value ); + + Dhis2Response transfer(); +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/api/operation/PatchOperation.java b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/PatchOperation.java new file mode 100644 index 0000000..e2fc576 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/PatchOperation.java @@ -0,0 +1,32 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.api.operation; + +public interface PatchOperation extends ResourceOperation +{ +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/api/operation/PostOperation.java b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/PostOperation.java new file mode 100644 index 0000000..c4c2296 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/PostOperation.java @@ -0,0 +1,32 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.api.operation; + +public interface PostOperation extends ResourceOperation +{ +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/api/operation/PutOperation.java b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/PutOperation.java new file mode 100644 index 0000000..e09fe9c --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/PutOperation.java @@ -0,0 +1,32 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.api.operation; + +public interface PutOperation extends ResourceOperation +{ +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/api/operation/ResourceOperation.java b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/ResourceOperation.java new file mode 100644 index 0000000..5a54bdb --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/ResourceOperation.java @@ -0,0 +1,33 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.api.operation; + +public interface ResourceOperation extends ParameterizedOperation +{ + ResourceOperation withResource( Object resource ); +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/api/operation/SimpleCollectOperation.java b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/SimpleCollectOperation.java new file mode 100644 index 0000000..ece2583 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/api/operation/SimpleCollectOperation.java @@ -0,0 +1,35 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.api.operation; + +import org.hisp.dhis.integration.sdk.internal.SimpleIterableDhis2Response; + +public interface SimpleCollectOperation +{ + SimpleIterableDhis2Response transfer(); +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/internal/DefaultDhis2Response.java b/src/main/java/org/hisp/dhis/integration/sdk/internal/DefaultDhis2Response.java new file mode 100644 index 0000000..f933761 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/internal/DefaultDhis2Response.java @@ -0,0 +1,77 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal; + +import java.io.InputStream; + +import okhttp3.Response; + +import org.hisp.dhis.integration.sdk.api.Dhis2Response; +import org.hisp.dhis.integration.sdk.api.converter.ConverterFactory; + +public class DefaultDhis2Response implements Dhis2Response +{ + protected final Response response; + + protected final ConverterFactory converterFactory; + + public DefaultDhis2Response( Response response, ConverterFactory converterFactory ) + { + this.response = response; + this.converterFactory = converterFactory; + } + + @Override + public T returnAs( Class responseType ) + { + try + { + return converterFactory.createResponseConverter( responseType ).convert( response.body() ); + } + finally + { + response.close(); + } + } + + @Override + public InputStream read() + { + return response.body().byteStream(); + } + + public Response getResponse() + { + return response; + } + + public ConverterFactory getConverterFactory() + { + return converterFactory; + } +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/internal/LazyIterableDhis2Response.java b/src/main/java/org/hisp/dhis/integration/sdk/internal/LazyIterableDhis2Response.java new file mode 100644 index 0000000..729a5bb --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/internal/LazyIterableDhis2Response.java @@ -0,0 +1,60 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal; + +import okhttp3.OkHttpClient; + +import org.hisp.dhis.integration.sdk.Page; +import org.hisp.dhis.integration.sdk.api.Dhis2Response; +import org.hisp.dhis.integration.sdk.api.IterableDhis2Response; +import org.hisp.dhis.integration.sdk.api.converter.ConverterFactory; +import org.hisp.dhis.integration.sdk.internal.operation.page.PageIterable; + +public class LazyIterableDhis2Response implements IterableDhis2Response +{ + private final Dhis2Response dhis2Response; + + private final ConverterFactory converterFactory; + + private final OkHttpClient httpClient; + + public LazyIterableDhis2Response( Dhis2Response dhis2Response, ConverterFactory converterFactory, + OkHttpClient httpClient ) + { + this.dhis2Response = dhis2Response; + this.converterFactory = converterFactory; + this.httpClient = httpClient; + } + + @Override + public Iterable returnAs( Class responseType, String collectionName ) + { + Page firstPage = dhis2Response.returnAs( Page.class ); + return new PageIterable<>( collectionName, converterFactory, httpClient, responseType, firstPage ); + } +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/internal/SimpleIterableDhis2Response.java b/src/main/java/org/hisp/dhis/integration/sdk/internal/SimpleIterableDhis2Response.java new file mode 100644 index 0000000..b130213 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/internal/SimpleIterableDhis2Response.java @@ -0,0 +1,62 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal; + +import java.util.List; +import java.util.Map; + +import org.hisp.dhis.integration.sdk.api.Dhis2Response; +import org.hisp.dhis.integration.sdk.api.IterableDhis2Response; +import org.hisp.dhis.integration.sdk.api.converter.ConverterFactory; + +public class SimpleIterableDhis2Response implements IterableDhis2Response +{ + private final Dhis2Response dhis2Response; + + private final ConverterFactory converterFactory; + + public SimpleIterableDhis2Response( Dhis2Response dhis2Response, ConverterFactory converterFactory ) + { + this.dhis2Response = dhis2Response; + this.converterFactory = converterFactory; + } + + @Override + public Iterable returnAs( Class responseType, String collectionName ) + { + Map resources = dhis2Response.returnAs( Map.class ); + return (List) converterFactory.createResponseConverter( responseType ) + .convert( (List>) resources.get( collectionName ) ); + } + + public Iterable returnAs( Class responseType ) + { + List> collection = dhis2Response.returnAs( List.class ); + return (List) converterFactory.createResponseConverter( responseType ).convert( collection ); + } +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/internal/converter/JacksonConverterFactory.java b/src/main/java/org/hisp/dhis/integration/sdk/internal/converter/JacksonConverterFactory.java new file mode 100644 index 0000000..7ce4740 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/internal/converter/JacksonConverterFactory.java @@ -0,0 +1,49 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal.converter; + +import org.hisp.dhis.integration.sdk.api.converter.ConverterFactory; +import org.hisp.dhis.integration.sdk.api.converter.RequestConverter; +import org.hisp.dhis.integration.sdk.api.converter.ResponseConverter; + +import com.fasterxml.jackson.databind.ObjectMapper; + +public class JacksonConverterFactory implements ConverterFactory +{ + @Override + public RequestConverter createRequestConverter( Object requestType ) + { + return new JacksonRequestConverter(); + } + + @Override + public ResponseConverter createResponseConverter( Class responseType ) + { + return new JacksonResponseConverter<>( responseType ); + } +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/internal/converter/JacksonRequestConverter.java b/src/main/java/org/hisp/dhis/integration/sdk/internal/converter/JacksonRequestConverter.java new file mode 100644 index 0000000..3870557 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/internal/converter/JacksonRequestConverter.java @@ -0,0 +1,53 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal.converter; + +import org.hisp.dhis.integration.sdk.api.converter.RequestConverter; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.datatype.jdk8.Jdk8Module; + +public class JacksonRequestConverter implements RequestConverter +{ + private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper().registerModule( + new Jdk8Module().configureAbsentsAsNulls( true ) ); + + @Override + public String convert( Object requestBody ) + { + try + { + return OBJECT_MAPPER.writeValueAsString( requestBody ); + } + catch ( JsonProcessingException e ) + { + throw new RuntimeException( e ); + } + } +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/internal/converter/JacksonResponseConverter.java b/src/main/java/org/hisp/dhis/integration/sdk/internal/converter/JacksonResponseConverter.java new file mode 100644 index 0000000..3c4ffd4 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/internal/converter/JacksonResponseConverter.java @@ -0,0 +1,70 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal.converter; + +import java.io.IOException; +import java.util.List; +import java.util.Map; + +import okhttp3.ResponseBody; + +import org.hisp.dhis.integration.sdk.api.converter.ResponseConverter; + +import com.fasterxml.jackson.databind.ObjectMapper; + +public class JacksonResponseConverter implements ResponseConverter +{ + private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper(); + + private final Class returnType; + + public JacksonResponseConverter( Class returnType ) + { + this.returnType = returnType; + } + + @Override + public T convert( ResponseBody responseBody ) + { + try + { + return OBJECT_MAPPER.readValue( responseBody.charStream(), returnType ); + } + catch ( IOException e ) + { + throw new RuntimeException( e ); + } + } + + @Override + public T convert( List> responseBody ) + { + return OBJECT_MAPPER.convertValue( responseBody, + OBJECT_MAPPER.getTypeFactory().constructCollectionLikeType( List.class, returnType ) ); + } +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/AbstractOperation.java b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/AbstractOperation.java new file mode 100644 index 0000000..47e4678 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/AbstractOperation.java @@ -0,0 +1,135 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal.operation; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.concurrent.Callable; + +import okhttp3.HttpUrl; +import okhttp3.OkHttpClient; +import okhttp3.Response; + +import org.hisp.dhis.integration.sdk.api.Dhis2ClientException; +import org.hisp.dhis.integration.sdk.api.Dhis2Response; +import org.hisp.dhis.integration.sdk.api.converter.ConverterFactory; +import org.hisp.dhis.integration.sdk.api.operation.ParameterizedOperation; + +public abstract class AbstractOperation implements ParameterizedOperation +{ + protected final String url; + + protected final OkHttpClient httpClient; + + protected final ConverterFactory converterFactory; + + protected final Map> queryParams = new HashMap<>(); + + private final String[] pathParams; + + public AbstractOperation( String baseApiUrl, String path, OkHttpClient httpClient, + ConverterFactory converterFactory, String... pathParams ) + { + this.url = (baseApiUrl.endsWith( "/" ) ? baseApiUrl : baseApiUrl + "/") + + (path != null && path.startsWith( "/" ) ? path.substring( 1 ) : path); + this.httpClient = httpClient; + this.converterFactory = converterFactory; + this.pathParams = pathParams; + } + + @Override + public Dhis2Response transfer() + { + HttpUrl httpUrl = HttpUrl.parse( url ); + HttpUrl.Builder httpUrlBuilder = httpUrl.newBuilder(); + int pathParamIndex = 0; + for ( int i = 0; i < httpUrl.pathSegments().size(); i++ ) + { + String pathSegment = httpUrl.pathSegments().get( i ); + if ( pathSegment.startsWith( "{" ) && pathSegment.endsWith( "}" ) ) + { + httpUrlBuilder.setPathSegment( i, pathParams[pathParamIndex] ); + pathParamIndex++; + } + } + + for ( Map.Entry> queryParam : queryParams.entrySet() ) + { + for ( String queryValue : queryParam.getValue() ) + { + httpUrlBuilder.addQueryParameter( queryParam.getKey(), queryValue ); + + } + } + + return doTransfer( httpUrlBuilder.build() ); + } + + public abstract Dhis2Response doTransfer( HttpUrl httpUrl ); + + @Override + public ParameterizedOperation withParameters( Map parameters ) + { + return this; + } + + @Override + public ParameterizedOperation withParameter( String name, String value ) + { + List values = queryParams.computeIfAbsent( name, k -> new ArrayList<>() ); + values.add( value ); + + return this; + } + + protected Response onHttpResponse( Callable callable ) + { + Response response = null; + try + { + response = callable.call(); + if ( !response.isSuccessful() ) + { + response.close(); + throw new Dhis2ClientException( response.toString() ); + } + } + catch ( Exception e ) + { + if ( response != null ) + { + response.close(); + } + throw new Dhis2ClientException( e ); + } + + return response; + } +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/AbstractResourceOperation.java b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/AbstractResourceOperation.java new file mode 100644 index 0000000..d6f4e40 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/AbstractResourceOperation.java @@ -0,0 +1,51 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal.operation; + +import okhttp3.OkHttpClient; + +import org.hisp.dhis.integration.sdk.api.converter.ConverterFactory; +import org.hisp.dhis.integration.sdk.api.operation.ResourceOperation; + +public abstract class AbstractResourceOperation extends AbstractOperation implements ResourceOperation +{ + protected Object resource; + + public AbstractResourceOperation( String baseApiUrl, String path, OkHttpClient httpClient, + ConverterFactory converterFactory, String... pathParams ) + { + super( baseApiUrl, path, httpClient, converterFactory, pathParams ); + } + + @Override + public ResourceOperation withResource( Object resource ) + { + this.resource = resource; + return this; + } +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultDeleteOperation.java b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultDeleteOperation.java new file mode 100644 index 0000000..e0d5a51 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultDeleteOperation.java @@ -0,0 +1,58 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal.operation; + +import okhttp3.HttpUrl; +import okhttp3.OkHttpClient; + +import org.hisp.dhis.integration.sdk.api.Dhis2Response; +import org.hisp.dhis.integration.sdk.api.converter.ConverterFactory; +import org.hisp.dhis.integration.sdk.api.operation.DeleteOperation; + +public class DefaultDeleteOperation extends AbstractResourceOperation implements DeleteOperation +{ + + public DefaultDeleteOperation( String baseApiUrl, String path, OkHttpClient httpClient, + ConverterFactory converterFactory ) + { + super( baseApiUrl, path, httpClient, converterFactory ); + } + + @Override + public Dhis2Response transfer() + { + return null; + } + + @Override + public Dhis2Response doTransfer( HttpUrl httpUrl ) + { + throw new UnsupportedOperationException(); + } + +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultGetOperation.java b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultGetOperation.java new file mode 100644 index 0000000..af16556 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultGetOperation.java @@ -0,0 +1,108 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal.operation; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; + +import okhttp3.HttpUrl; +import okhttp3.OkHttpClient; +import okhttp3.Request; + +import org.hisp.dhis.integration.sdk.api.Dhis2Response; +import org.hisp.dhis.integration.sdk.api.converter.ConverterFactory; +import org.hisp.dhis.integration.sdk.api.operation.GetOperation; +import org.hisp.dhis.integration.sdk.api.operation.PagingCollectOperation; +import org.hisp.dhis.integration.sdk.api.operation.SimpleCollectOperation; +import org.hisp.dhis.integration.sdk.internal.DefaultDhis2Response; +import org.hisp.dhis.integration.sdk.internal.operation.page.DefaultPagingCollectOperation; + +public class DefaultGetOperation extends AbstractOperation implements GetOperation +{ + protected final List fields = new ArrayList<>(); + + protected String filter; + + public DefaultGetOperation( String baseApiUrl, String path, OkHttpClient httpClient, + ConverterFactory converterFactory, String... pathParams ) + { + super( baseApiUrl, path, httpClient, converterFactory, pathParams ); + } + + @Override + public Dhis2Response doTransfer( HttpUrl httpUrl ) + { + HttpUrl.Builder httpUrlBuilder = httpUrl.newBuilder(); + if ( !fields.isEmpty() ) + { + httpUrlBuilder.addQueryParameter( "fields", String.join( ",", fields ) ); + } + if ( filter != null ) + { + httpUrlBuilder.addQueryParameter( "filter", filter ); + } + + okhttp3.Response response = onHttpResponse( + () -> httpClient.newCall( new Request.Builder().url( httpUrlBuilder.build() ).get().build() ).execute() ); + return new DefaultDhis2Response( response, converterFactory ); + } + + @Override + public PagingCollectOperation withPaging() + { + return new DefaultPagingCollectOperation( converterFactory, this, httpClient ); + } + + @Override + public SimpleCollectOperation withoutPaging() + { + return new DefaultSimpleCollectOperation( converterFactory, this ); + } + + @Override + public GetOperation withFields( String... names ) + { + fields.addAll( Arrays.asList( names ) ); + return this; + } + + @Override + public GetOperation withFields( String names ) + { + fields.add( names ); + return this; + } + + @Override + public GetOperation withFilter( String filter ) + { + this.filter = filter; + return this; + } +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultPatchOperation.java b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultPatchOperation.java new file mode 100644 index 0000000..782efab --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultPatchOperation.java @@ -0,0 +1,57 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal.operation; + +import okhttp3.HttpUrl; +import okhttp3.OkHttpClient; + +import org.hisp.dhis.integration.sdk.api.Dhis2Response; +import org.hisp.dhis.integration.sdk.api.converter.ConverterFactory; +import org.hisp.dhis.integration.sdk.api.operation.PatchOperation; + +public class DefaultPatchOperation extends AbstractResourceOperation implements PatchOperation +{ + public DefaultPatchOperation( String baseApiUrl, String path, OkHttpClient httpClient, + ConverterFactory converterFactory ) + { + super( baseApiUrl, path, httpClient, converterFactory ); + } + + @Override + public Dhis2Response transfer() + { + return null; + } + + @Override + public Dhis2Response doTransfer( HttpUrl httpUrl ) + { + throw new UnsupportedOperationException(); + } + +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultPostOperation.java b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultPostOperation.java new file mode 100644 index 0000000..696eaa8 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultPostOperation.java @@ -0,0 +1,71 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal.operation; + +import okhttp3.HttpUrl; +import okhttp3.MediaType; +import okhttp3.OkHttpClient; +import okhttp3.Request; +import okhttp3.RequestBody; + +import org.hisp.dhis.integration.sdk.api.Dhis2Response; +import org.hisp.dhis.integration.sdk.api.converter.ConverterFactory; +import org.hisp.dhis.integration.sdk.api.operation.PostOperation; +import org.hisp.dhis.integration.sdk.internal.DefaultDhis2Response; + +public class DefaultPostOperation extends AbstractResourceOperation implements PostOperation +{ + public DefaultPostOperation( String baseApiUrl, String path, OkHttpClient httpClient, + ConverterFactory converterFactory, String... pathParams ) + { + super( baseApiUrl, path, httpClient, converterFactory, pathParams ); + } + + @Override + public Dhis2Response doTransfer( HttpUrl httpUrl ) + { + HttpUrl.Builder httpUrlBuilder = httpUrl.newBuilder(); + Request.Builder requestBuilder = new Request.Builder().url( httpUrlBuilder.build() ); + Request request; + converterFactory.createRequestConverter( requestBuilder.build() ).convert( resource ); + if ( resource != null ) + { + request = requestBuilder.post( RequestBody.create( + converterFactory.createRequestConverter( requestBuilder.build() ).convert( resource ).getBytes(), + MediaType.parse( "application/json" ) ) ).build(); + } + else + { + request = requestBuilder.post( RequestBody.create( new byte[] {}, MediaType.parse( "application/json" ) ) ) + .build(); + } + + okhttp3.Response response = onHttpResponse( () -> httpClient.newCall( request ).execute() ); + return new DefaultDhis2Response( response, converterFactory ); + } +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultPutOperation.java b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultPutOperation.java new file mode 100644 index 0000000..1315e83 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultPutOperation.java @@ -0,0 +1,71 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal.operation; + +import okhttp3.HttpUrl; +import okhttp3.MediaType; +import okhttp3.OkHttpClient; +import okhttp3.Request; +import okhttp3.RequestBody; + +import org.hisp.dhis.integration.sdk.api.Dhis2Response; +import org.hisp.dhis.integration.sdk.api.converter.ConverterFactory; +import org.hisp.dhis.integration.sdk.api.operation.PutOperation; +import org.hisp.dhis.integration.sdk.internal.DefaultDhis2Response; + +public class DefaultPutOperation extends AbstractResourceOperation implements PutOperation +{ + public DefaultPutOperation( String baseApiUrl, String path, OkHttpClient httpClient, + ConverterFactory converterFactory, String... pathParams ) + { + super( baseApiUrl, path, httpClient, converterFactory, pathParams ); + } + + @Override + public Dhis2Response doTransfer( HttpUrl httpUrl ) + { + Request.Builder requestBuilder = new Request.Builder().url( httpUrl ); + Request request; + converterFactory.createRequestConverter( requestBuilder.build() ).convert( resource ); + if ( resource != null ) + { + request = requestBuilder.put( RequestBody.create( + converterFactory.createRequestConverter( requestBuilder.build() ).convert( resource ).getBytes(), + MediaType.parse( "application/json" ) ) ).build(); + } + else + { + request = requestBuilder.put( RequestBody.create( new byte[] {}, MediaType.parse( "application/json" ) ) ) + .build(); + } + + okhttp3.Response response = onHttpResponse( () -> httpClient.newCall( request ).execute() ); + return new DefaultDhis2Response( response, converterFactory ); + } + +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultSimpleCollectOperation.java b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultSimpleCollectOperation.java new file mode 100644 index 0000000..991c5e7 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultSimpleCollectOperation.java @@ -0,0 +1,55 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal.operation; + +import org.hisp.dhis.integration.sdk.api.Dhis2Response; +import org.hisp.dhis.integration.sdk.api.converter.ConverterFactory; +import org.hisp.dhis.integration.sdk.api.operation.ParameterizedOperation; +import org.hisp.dhis.integration.sdk.api.operation.SimpleCollectOperation; +import org.hisp.dhis.integration.sdk.internal.SimpleIterableDhis2Response; + +public class DefaultSimpleCollectOperation implements SimpleCollectOperation +{ + private final ConverterFactory converterFactory; + + private final ParameterizedOperation parameterizedOperation; + + public DefaultSimpleCollectOperation( ConverterFactory converterFactory, + ParameterizedOperation parameterizedOperation ) + { + this.converterFactory = converterFactory; + this.parameterizedOperation = parameterizedOperation; + } + + @Override + public SimpleIterableDhis2Response transfer() + { + Dhis2Response dhis2Response = parameterizedOperation.withParameter( "paging", "false" ).transfer(); + return new SimpleIterableDhis2Response( dhis2Response, converterFactory ); + } +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/page/DefaultPagingCollectOperation.java b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/page/DefaultPagingCollectOperation.java new file mode 100644 index 0000000..03a23bf --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/page/DefaultPagingCollectOperation.java @@ -0,0 +1,60 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal.operation.page; + +import okhttp3.OkHttpClient; + +import org.hisp.dhis.integration.sdk.api.Dhis2Response; +import org.hisp.dhis.integration.sdk.api.converter.ConverterFactory; +import org.hisp.dhis.integration.sdk.api.operation.GetOperation; +import org.hisp.dhis.integration.sdk.api.operation.PagingCollectOperation; +import org.hisp.dhis.integration.sdk.internal.LazyIterableDhis2Response; + +public class DefaultPagingCollectOperation implements PagingCollectOperation +{ + private final ConverterFactory converterFactory; + + private final OkHttpClient httpClient; + + private final GetOperation getOperation; + + public DefaultPagingCollectOperation( ConverterFactory converterFactory, GetOperation getOperation, + OkHttpClient httpClient ) + { + this.converterFactory = converterFactory; + this.httpClient = httpClient; + this.getOperation = getOperation; + } + + @Override + public LazyIterableDhis2Response transfer() + { + final Dhis2Response dhis2Response = getOperation.transfer(); + return new LazyIterableDhis2Response( dhis2Response, converterFactory, httpClient ); + } +} diff --git a/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/page/PageIterable.java b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/page/PageIterable.java new file mode 100644 index 0000000..d73e7f9 --- /dev/null +++ b/src/main/java/org/hisp/dhis/integration/sdk/internal/operation/page/PageIterable.java @@ -0,0 +1,128 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal.operation.page; + +import java.io.IOException; +import java.util.Iterator; +import java.util.List; +import java.util.Map; + +import okhttp3.OkHttpClient; +import okhttp3.Request; + +import org.hisp.dhis.integration.sdk.Page; +import org.hisp.dhis.integration.sdk.api.Dhis2Response; +import org.hisp.dhis.integration.sdk.api.converter.ConverterFactory; +import org.hisp.dhis.integration.sdk.internal.DefaultDhis2Response; + +public class PageIterable implements Iterable +{ + private Dhis2Response dhis2Response; + + private Page currentPage; + + private Iterator currentIterator; + + private final ConverterFactory converterFactory; + + private final String collectionName; + + private final Class responseType; + + private final OkHttpClient httpClient; + + public PageIterable( String collectionName, ConverterFactory converterFactory, + OkHttpClient httpClient, Class responseType, Page firstPage ) + { + List collection = (List) converterFactory.createResponseConverter( responseType ) + .convert( (List>) firstPage.getAdditionalProperties().get( collectionName ) ); + this.currentIterator = collection.iterator(); + + this.currentPage = firstPage; + this.collectionName = collectionName; + this.converterFactory = converterFactory; + this.httpClient = httpClient; + this.responseType = responseType; + } + + @Override + public Iterator iterator() + { + return new Iterator() + { + @Override + public boolean hasNext() + { + if ( currentIterator.hasNext() ) + { + return true; + } + else if ( currentPage.getPager().getPage().get() >= currentPage.getPager().getPageCount().get() ) + { + return false; + } + else + { + currentIterator = fetchPage(); + return currentIterator.hasNext(); + } + } + + @Override + public T next() + { + if ( !currentIterator.hasNext() ) + { + currentIterator = fetchPage(); + } + return currentIterator.next(); + } + + private Iterator fetchPage() + { + try + { + dhis2Response = new DefaultDhis2Response( httpClient.newCall( + new Request.Builder().url( currentPage.getPager().getNextPage().get() ).build() ).execute(), + converterFactory ); + } + catch ( IOException e ) + { + throw new RuntimeException( e ); + } + + currentPage = dhis2Response.returnAs( Page.class ); + List collection = (List) converterFactory.createResponseConverter( responseType ) + .convert( + (List>) currentPage.getAdditionalProperties().get( collectionName ) ); + return collection.iterator(); + } + + }; + } +} diff --git a/src/test/java/org/hisp/dhis/integration/sdk/AbstractTestCase.java b/src/test/java/org/hisp/dhis/integration/sdk/AbstractTestCase.java new file mode 100644 index 0000000..25310b9 --- /dev/null +++ b/src/test/java/org/hisp/dhis/integration/sdk/AbstractTestCase.java @@ -0,0 +1,58 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk; + +import org.hisp.dhis.integration.sdk.internal.converter.JacksonConverterFactory; +import org.junit.jupiter.api.BeforeAll; + +import io.restassured.RestAssured; +import io.restassured.builder.RequestSpecBuilder; +import io.restassured.http.ContentType; + +public class AbstractTestCase +{ + protected static Dhis2Client dhis2Client; + + protected static JacksonConverterFactory converterFactory; + + @BeforeAll + public static void beforeAll() + { + RestAssured.baseURI = "http://" + Environment.getDhis2Container().getHost() + ":" + + Environment.getDhis2Container() + .getFirstMappedPort(); + RestAssured.requestSpecification = new RequestSpecBuilder().build().contentType( ContentType.JSON ).auth() + .preemptive() + .basic( "admin", "district" ); + RestAssured.enableLoggingOfRequestAndResponseIfValidationFails(); + + dhis2Client = Environment.getDhis2Client(); + converterFactory = new JacksonConverterFactory(); + } + +} diff --git a/src/test/java/org/hisp/dhis/integration/sdk/Environment.java b/src/test/java/org/hisp/dhis/integration/sdk/Environment.java new file mode 100644 index 0000000..05bca3f --- /dev/null +++ b/src/test/java/org/hisp/dhis/integration/sdk/Environment.java @@ -0,0 +1,141 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk; + +import java.io.IOException; +import java.nio.charset.Charset; +import java.util.Date; + +import org.hisp.dhis.api.v2_37_4.model.OrganisationUnit; +import org.hisp.dhis.api.v2_37_4.model.OrganisationUnitLevel; +import org.hisp.dhis.api.v2_37_4.model.WebMessage; +import org.testcontainers.containers.BindMode; +import org.testcontainers.containers.GenericContainer; +import org.testcontainers.containers.Network; +import org.testcontainers.containers.PostgreSQLContainer; +import org.testcontainers.containers.wait.strategy.HttpWaitStrategy; +import org.testcontainers.utility.DockerImageName; + +public final class Environment +{ + private Environment() + { + + } + + private static final Network NETWORK = Network.newNetwork(); + + private static final PostgreSQLContainer POSTGRESQL_CONTAINER; + + private static final GenericContainer DHIS2_CONTAINER; + + private static final Dhis2Client DHIS2_CLIENT; + + public static final String ORG_UNIT_ID; + + static + { + POSTGRESQL_CONTAINER = new PostgreSQLContainer<>( + DockerImageName.parse( "postgis/postgis:12-3.2-alpine" ).asCompatibleSubstituteFor( "postgres" ) ) + .withDatabaseName( "dhis2" ) + .withNetworkAliases( "db" ) + .withUsername( "dhis" ) + .withPassword( "dhis" ).withNetwork( NETWORK ); + + POSTGRESQL_CONTAINER.start(); + + DHIS2_CONTAINER = new GenericContainer<>( + "dhis2/core:2.37.4-tomcat-8.5.34-jre8-alpine" ) + .dependsOn( POSTGRESQL_CONTAINER ) + .withClasspathResourceMapping( "dhis.conf", "/DHIS2_home/dhis.conf", BindMode.READ_WRITE ) + .withNetwork( NETWORK ).withExposedPorts( 8080 ) + .waitingFor( new HttpWaitStrategy().forStatusCode( 200 ) ) + .withEnv( "WAIT_FOR_DB_CONTAINER", "db" + ":" + 5432 + " -t 0" ); + + DHIS2_CONTAINER.start(); + + DHIS2_CLIENT = Dhis2ClientBuilder.newClient( + "http://" + Environment.getDhis2Container().getHost() + ":" + Environment.getDhis2Container() + .getFirstMappedPort() + "/api", + "admin", "district" ).build(); + + importMetaData(); + ORG_UNIT_ID = createOrgUnit(); + createOrgUnitLevel(); + addOrgUnitToUser( ORG_UNIT_ID ); + } + + private static void importMetaData() + { + String metaData; + try + { + metaData = new String( + Thread.currentThread().getContextClassLoader().getResourceAsStream( "MLAG00_1.2.1_DHIS2.37.json" ) + .readAllBytes(), + Charset.defaultCharset() ); + } + catch ( IOException e ) + { + throw new RuntimeException( e ); + } + + DHIS2_CLIENT.post( "metadata" ).withResource( metaData ).withParameter( "atomicMode", "NONE" ).transfer(); + } + + private static String createOrgUnit() + { + OrganisationUnit organisationUnit = new OrganisationUnit().withName( "Acme" ).withShortName( "Acme" ) + .withOpeningDate( new Date() ); + + return DHIS2_CLIENT.post( "organisationUnits" ).withResource( organisationUnit ).transfer() + .returnAs( WebMessage.class ).getResponse().get().get( "uid" ); + } + + private static void createOrgUnitLevel() + { + OrganisationUnitLevel organisationUnitLevel = new OrganisationUnitLevel().withName( "Level 1" ) + .with( "level", 1 ); + DHIS2_CLIENT.post( "filledOrganisationUnitLevels" ).withResource( organisationUnitLevel ).transfer(); + } + + private static void addOrgUnitToUser( String orgUnitId ) + { + DHIS2_CLIENT.post( "users/M5zQapPyTZI/organisationUnits/{organisationUnitId}", orgUnitId ).transfer(); + } + + public static GenericContainer getDhis2Container() + { + return DHIS2_CONTAINER; + } + + public static Dhis2Client getDhis2Client() + { + return DHIS2_CLIENT; + } +} diff --git a/src/test/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultGetOperationTestCase.java b/src/test/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultGetOperationTestCase.java new file mode 100644 index 0000000..5d3aa5c --- /dev/null +++ b/src/test/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultGetOperationTestCase.java @@ -0,0 +1,50 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal.operation; + +import static org.junit.jupiter.api.Assertions.assertTrue; + +import org.hisp.dhis.integration.sdk.AbstractTestCase; +import org.hisp.dhis.integration.sdk.api.Dhis2Response; +import org.hisp.dhis.integration.sdk.internal.DefaultDhis2Response; +import org.junit.jupiter.api.Test; + +import io.restassured.RestAssured; + +public class DefaultGetOperationTestCase extends AbstractTestCase +{ + @Test + public void testTransfer() + { + Dhis2Response dhis2Response = new DefaultGetOperation( RestAssured.baseURI + "/api", "me", + dhis2Client.getHttpClient(), + converterFactory ).transfer(); + + assertTrue( ((DefaultDhis2Response) dhis2Response).getResponse().isSuccessful() ); + } +} diff --git a/src/test/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultPutOperationTestCase.java b/src/test/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultPutOperationTestCase.java new file mode 100644 index 0000000..2695c15 --- /dev/null +++ b/src/test/java/org/hisp/dhis/integration/sdk/internal/operation/DefaultPutOperationTestCase.java @@ -0,0 +1,57 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal.operation; + +import static org.junit.jupiter.api.Assertions.assertTrue; + +import org.hisp.dhis.api.v2_37_4.model.OrganisationUnit; +import org.hisp.dhis.integration.sdk.AbstractTestCase; +import org.hisp.dhis.integration.sdk.Environment; +import org.hisp.dhis.integration.sdk.api.Dhis2Response; +import org.hisp.dhis.integration.sdk.internal.DefaultDhis2Response; +import org.junit.jupiter.api.Test; + +import io.restassured.RestAssured; + +public class DefaultPutOperationTestCase extends AbstractTestCase +{ + @Test + public void testTransfer() + { + OrganisationUnit organisationUnit = dhis2Client.get( "organisationUnits/{id}", Environment.ORG_UNIT_ID ) + .transfer().returnAs( OrganisationUnit.class ); + organisationUnit.setAddress( "Alice in Wonderland" ); + + Dhis2Response dhis2Response = new DefaultPutOperation( RestAssured.baseURI + "/api", + "organisationUnits/{orgUnitId}", + dhis2Client.getHttpClient(), + converterFactory, Environment.ORG_UNIT_ID ).withResource( organisationUnit ).transfer(); + + assertTrue( ((DefaultDhis2Response) dhis2Response).getResponse().isSuccessful() ); + } +} diff --git a/src/test/java/org/hisp/dhis/integration/sdk/internal/operation/SimpleCollectOperationTestCase.java b/src/test/java/org/hisp/dhis/integration/sdk/internal/operation/SimpleCollectOperationTestCase.java new file mode 100644 index 0000000..a250217 --- /dev/null +++ b/src/test/java/org/hisp/dhis/integration/sdk/internal/operation/SimpleCollectOperationTestCase.java @@ -0,0 +1,57 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal.operation; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +import java.util.List; +import java.util.stream.Collectors; +import java.util.stream.StreamSupport; + +import org.hisp.dhis.api.v2_37_4.model.OrganisationUnit; +import org.hisp.dhis.integration.sdk.AbstractTestCase; +import org.junit.jupiter.api.Test; + +import io.restassured.RestAssured; + +public class SimpleCollectOperationTestCase extends AbstractTestCase +{ + @Test + public void testTransfer() + { + Iterable organisationUnitIterable = new DefaultSimpleCollectOperation( + converterFactory, + new DefaultGetOperation( RestAssured.baseURI + "/api/", "organisationUnits", dhis2Client.getHttpClient(), + converterFactory ) ).transfer().returnAs( OrganisationUnit.class, "organisationUnits" ); + + List organisationAsUnits = StreamSupport + .stream( organisationUnitIterable.spliterator(), false ).collect( Collectors.toList() ); + + assertEquals( 1, organisationAsUnits.size() ); + } +} diff --git a/src/test/java/org/hisp/dhis/integration/sdk/internal/operation/page/PagingCollectOperationTestCase.java b/src/test/java/org/hisp/dhis/integration/sdk/internal/operation/page/PagingCollectOperationTestCase.java new file mode 100644 index 0000000..86d7673 --- /dev/null +++ b/src/test/java/org/hisp/dhis/integration/sdk/internal/operation/page/PagingCollectOperationTestCase.java @@ -0,0 +1,59 @@ +/* + * Copyright (c) 2004-2022, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.integration.sdk.internal.operation.page; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +import java.util.List; +import java.util.stream.Collectors; +import java.util.stream.StreamSupport; + +import org.hisp.dhis.api.v2_37_4.model.OrganisationUnit; +import org.hisp.dhis.integration.sdk.AbstractTestCase; +import org.hisp.dhis.integration.sdk.internal.operation.DefaultGetOperation; +import org.junit.jupiter.api.Test; + +import io.restassured.RestAssured; + +public class PagingCollectOperationTestCase extends AbstractTestCase +{ + @Test + public void testTransfer() + { + Iterable organisationUnitIterable = new DefaultPagingCollectOperation( converterFactory, + new DefaultGetOperation( RestAssured.baseURI + "/api/", "organisationUnits", dhis2Client.getHttpClient(), + converterFactory ), + dhis2Client.getHttpClient() ).transfer() + .returnAs( OrganisationUnit.class, "organisationUnits" ); + + List organisationAsUnits = StreamSupport + .stream( organisationUnitIterable.spliterator(), false ).collect( Collectors.toList() ); + + assertEquals( 1, organisationAsUnits.size() ); + } +} diff --git a/src/test/resources/MLAG00_1.2.1_DHIS2.37.json b/src/test/resources/MLAG00_1.2.1_DHIS2.37.json new file mode 100644 index 0000000..8189ff6 --- /dev/null +++ b/src/test/resources/MLAG00_1.2.1_DHIS2.37.json @@ -0,0 +1,62702 @@ +{ + "attributes": [], + "categories": [ + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "IvYR8mc6prX" + } + ], + "categoryOptions": [ + { + "id": "UPvKbcqTEY3" + }, + { + "id": "pa0cY66MrG6" + }, + { + "id": "wTpH7wugXzZ" + } + ], + "dataDimension": false, + "dataDimensionType": "DISAGGREGATION", + "dimension": "mFoasCYViMW", + "dimensionType": "CATEGORY", + "externalAccess": false, + "favorite": false, + "id": "mFoasCYViMW", + "items": [ + { + "id": "UPvKbcqTEY3" + }, + { + "id": "pa0cY66MrG6" + }, + { + "id": "wTpH7wugXzZ" + } + ], + "name": "Age (malaria)", + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Age (malaria)", + "translations": [ + { + "locale": "cs", + "property": "NAME", + "value": "Věk (malárie)" + }, + { + "locale": "id", + "property": "NAME", + "value": "Usia (malaria)" + }, + { + "locale": "ar", + "property": "NAME", + "value": "العمر (الملاريا)" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Idade (malária)" + }, + { + "locale": "fr", + "property": "NAME", + "value": "Age (paludisme)" + }, + { + "locale": "es", + "property": "NAME", + "value": "Edad (malaria)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "attributeValues": [], + "categoryCombos": [], + "categoryOptions": [ + { + "id": "ftXCKvbuGgj" + }, + { + "id": "dENFBee17Oi" + }, + { + "id": "aeQKV9Y2Ium" + } + ], + "dataDimension": false, + "dataDimensionType": "DISAGGREGATION", + "dimension": "xocjlnNuDzU", + "dimensionType": "CATEGORY", + "externalAccess": false, + "favorite": false, + "id": "xocjlnNuDzU", + "items": [ + { + "id": "ftXCKvbuGgj" + }, + { + "id": "dENFBee17Oi" + }, + { + "id": "aeQKV9Y2Ium" + } + ], + "name": "Age (reproductive and maternal)", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Age (reproductive and maternal)", + "translations": [ + { + "locale": "id", + "property": "NAME", + "value": "Usia (reproduksi dan maternal)" + }, + { + "locale": "es", + "property": "NAME", + "value": "Edad (reproductiva y materna)" + }, + { + "locale": "fr", + "property": "NAME", + "value": "Age (maternel et reproductif)" + }, + { + "locale": "cs", + "property": "NAME", + "value": "Věk (reprodukční a mateřský)" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Idade (reprodutiva e materna)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "bjDvmb4bfuf" + } + ], + "categoryOptions": [ + { + "id": "xYerKDKCefk" + } + ], + "code": "default", + "dataDimension": false, + "dataDimensionType": "DISAGGREGATION", + "dimension": "GLevLNI9wkl", + "dimensionType": "CATEGORY", + "externalAccess": false, + "favorite": false, + "id": "GLevLNI9wkl", + "items": [ + { + "id": "xYerKDKCefk" + } + ], + "name": "default", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "default", + "translations": [ + { + "locale": "uz_UZ", + "property": "NAME", + "value": "standart" + }, + { + "locale": "uz", + "property": "NAME", + "value": "Стандарт" + }, + { + "locale": "ar", + "property": "NAME", + "value": "الافتراضي" + }, + { + "locale": "id", + "property": "NAME", + "value": "Putus berobat/default" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Padrão" + }, + { + "locale": "cs", + "property": "NAME", + "value": "výchozí" + }, + { + "locale": "ru", + "property": "NAME", + "value": "по умолчанию" + }, + { + "locale": "fr", + "property": "NAME", + "value": "défaut" + }, + { + "locale": "es", + "property": "NAME", + "value": "default" + }, + { + "locale": "nb", + "property": "NAME", + "value": "standard" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "JuuvtzLw22M" + } + ], + "categoryOptions": [ + { + "id": "FYTYL2zIeUe" + }, + { + "id": "mmepRq1pnwq" + }, + { + "id": "YKaVC5vFh4Q" + } + ], + "dataDimension": false, + "dataDimensionType": "DISAGGREGATION", + "dimension": "Xaol8a2c51w", + "dimensionType": "CATEGORY", + "externalAccess": false, + "favorite": false, + "id": "Xaol8a2c51w", + "items": [ + { + "id": "FYTYL2zIeUe" + }, + { + "id": "mmepRq1pnwq" + }, + { + "id": "YKaVC5vFh4Q" + } + ], + "name": "Foci classification", + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci classification", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "VkQPxB6VdoG" + } + ], + "categoryOptions": [ + { + "id": "MP15bHaQh2x" + }, + { + "id": "FFA9e1yIXCT" + } + ], + "code": "SEX", + "dataDimension": false, + "dataDimensionType": "DISAGGREGATION", + "dimension": "FRwO58KwwJt", + "dimensionType": "CATEGORY", + "externalAccess": false, + "favorite": false, + "id": "FRwO58KwwJt", + "items": [ + { + "id": "MP15bHaQh2x" + }, + { + "id": "FFA9e1yIXCT" + } + ], + "name": "Sex", + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Sex", + "translations": [ + { + "locale": "uz_UZ", + "property": "NAME", + "value": "Jinsi" + }, + { + "locale": "nb", + "property": "NAME", + "value": "Kjønn" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Sexo" + }, + { + "locale": "cs", + "property": "NAME", + "value": "Pohlaví" + }, + { + "locale": "es", + "property": "NAME", + "value": "Sexo" + }, + { + "locale": "ar", + "property": "NAME", + "value": "الجنس" + }, + { + "locale": "id", + "property": "NAME", + "value": "Jenis Kelamin" + }, + { + "locale": "uz", + "property": "NAME", + "value": "Жинси" + }, + { + "locale": "ru", + "property": "NAME", + "value": "Пол" + }, + { + "locale": "fr", + "property": "NAME", + "value": "Sexe" + }, + { + "locale": "de", + "property": "NAME", + "value": "Sexo" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "categoryCombos": [ + { + "attributeValues": [], + "categories": [ + { + "id": "mFoasCYViMW" + }, + { + "id": "FRwO58KwwJt" + } + ], + "categoryOptionCombos": [ + { + "id": "AroSt3y4ir0" + }, + { + "id": "b449dBrOSFK" + }, + { + "id": "bWFxj7MF1qR" + }, + { + "id": "j21YQgQ9GzP" + }, + { + "id": "t5FrQ0GTvGf" + }, + { + "id": "kQBGXKMwoqR" + } + ], + "dataDimensionType": "DISAGGREGATION", + "externalAccess": false, + "favorite": false, + "id": "IvYR8mc6prX", + "isDefault": false, + "name": "Age and sex (malaria)", + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipTotal": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "attributeValues": [], + "categories": [ + { + "id": "mFoasCYViMW" + } + ], + "categoryOptionCombos": [ + { + "id": "hF0pQZIn6Ch" + }, + { + "id": "rtfSaMjPyq6" + }, + { + "id": "oPcWGgS2Liz" + } + ], + "dataDimensionType": "DISAGGREGATION", + "externalAccess": false, + "favorite": false, + "id": "BwnnrV1AkNj", + "isDefault": false, + "name": "Age (malaria)", + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipTotal": false, + "translations": [ + { + "locale": "pt", + "property": "NAME", + "value": "Idade (malária)" + }, + { + "locale": "es", + "property": "NAME", + "value": "Edad (malaria)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "attributeValues": [], + "categories": [ + { + "id": "xocjlnNuDzU" + } + ], + "categoryOptionCombos": [ + { + "id": "BcTmquO9Vhw" + }, + { + "id": "MhS0mKLqv9I" + }, + { + "id": "kprxF3rp7G0" + } + ], + "dataDimensionType": "DISAGGREGATION", + "externalAccess": false, + "favorite": false, + "id": "jGaNULROqin", + "isDefault": false, + "name": "Age (reproductive and maternal)", + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "skipTotal": false, + "translations": [ + { + "locale": "id", + "property": "NAME", + "value": "Usia (reproduksi dan maternal)" + }, + { + "locale": "es", + "property": "NAME", + "value": "Edad (reproductiva y materna)" + }, + { + "locale": "fr", + "property": "NAME", + "value": "Age (maternel et reproductif)" + }, + { + "locale": "cs", + "property": "NAME", + "value": "Věk (reprodukční a mateřský)" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Idade (reprodutiva e materna)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categories": [ + { + "id": "GLevLNI9wkl" + } + ], + "categoryOptionCombos": [ + { + "id": "HllvX50cXC0" + } + ], + "code": "default", + "dataDimensionType": "DISAGGREGATION", + "externalAccess": false, + "favorite": false, + "id": "bjDvmb4bfuf", + "isDefault": true, + "name": "default", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipTotal": false, + "translations": [ + { + "locale": "uz_UZ", + "property": "NAME", + "value": "standart" + }, + { + "locale": "uz", + "property": "NAME", + "value": "Стандарт" + }, + { + "locale": "ar", + "property": "NAME", + "value": "الافتراضي" + }, + { + "locale": "id", + "property": "NAME", + "value": "Putus berobat/default" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Padrão" + }, + { + "locale": "cs", + "property": "NAME", + "value": "výchozí" + }, + { + "locale": "ru", + "property": "NAME", + "value": "по умолчанию" + }, + { + "locale": "fr", + "property": "NAME", + "value": "défaut" + }, + { + "locale": "es", + "property": "NAME", + "value": "default" + }, + { + "locale": "nb", + "property": "NAME", + "value": "standard" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categories": [ + { + "id": "Xaol8a2c51w" + } + ], + "categoryOptionCombos": [ + { + "id": "gjWSzL7cfIe" + }, + { + "id": "Ngi3BgUod0E" + }, + { + "id": "WPJQS4ogrRm" + } + ], + "dataDimensionType": "DISAGGREGATION", + "externalAccess": false, + "favorite": false, + "id": "JuuvtzLw22M", + "isDefault": false, + "name": "Foci classification", + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipTotal": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "attributeValues": [], + "categories": [ + { + "id": "FRwO58KwwJt" + } + ], + "categoryOptionCombos": [ + { + "id": "aakXCEEzhGy" + }, + { + "id": "PiYRwg1gzqV" + } + ], + "dataDimensionType": "DISAGGREGATION", + "externalAccess": false, + "favorite": false, + "id": "VkQPxB6VdoG", + "isDefault": false, + "name": "Sex", + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "skipTotal": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "categoryOptionCombos": [ + { + "attributeValues": [], + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "categoryOptions": [ + { + "id": "UPvKbcqTEY3" + } + ], + "code": "MAL-0004Y", + "dimensionItem": "oPcWGgS2Liz", + "externalAccess": false, + "favorite": false, + "id": "oPcWGgS2Liz", + "ignoreApproval": false, + "legendSets": [], + "name": "0-4 years", + "periodOffset": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "shortName": "0-4 years", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "0-4 ans" + }, + { + "locale": "uz", + "property": "NAME", + "value": "0-4 ёш" + }, + { + "locale": "es", + "property": "NAME", + "value": "0-4 años" + }, + { + "locale": "ru", + "property": "NAME", + "value": "0-4 лет" + }, + { + "locale": "nb", + "property": "NAME", + "value": "0-4 år" + }, + { + "locale": "cs", + "property": "NAME", + "value": "0-4 roky" + }, + { + "locale": "ar", + "property": "NAME", + "value": "0-4 سنوات" + }, + { + "locale": "pt", + "property": "NAME", + "value": "0-4 anos" + }, + { + "locale": "id", + "property": "NAME", + "value": "0-4 tahun" + } + ], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "categoryOptions": [ + { + "id": "UPvKbcqTEY3" + }, + { + "id": "FFA9e1yIXCT" + } + ], + "code": "MAL-0004YF", + "dimensionItem": "t5FrQ0GTvGf", + "externalAccess": false, + "favorite": false, + "id": "t5FrQ0GTvGf", + "ignoreApproval": false, + "legendSets": [], + "name": "0-4 years, Female", + "periodOffset": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "shortName": "0-4 years, Female", + "translations": [ + { + "locale": "pt", + "property": "NAME", + "value": "0-4 anos, Feminino" + }, + { + "locale": "cs", + "property": "NAME", + "value": "0-4 let, žena" + }, + { + "locale": "ar", + "property": "NAME", + "value": "-4-0 سنوات ، إناث" + }, + { + "locale": "fr", + "property": "NAME", + "value": "0-4 ans, féminin" + }, + { + "locale": "id", + "property": "NAME", + "value": "0-4 Tahun, Perempuan" + }, + { + "locale": "uz", + "property": "NAME", + "value": "0-4 ёш, Аёл" + }, + { + "locale": "es", + "property": "NAME", + "value": "0-4 años, Femenino" + }, + { + "locale": "ru", + "property": "NAME", + "value": "0-4 лет, Женщины" + }, + { + "locale": "nb", + "property": "NAME", + "value": "0-4 år, kvinne" + } + ], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "categoryOptions": [ + { + "id": "MP15bHaQh2x" + }, + { + "id": "UPvKbcqTEY3" + } + ], + "code": "MAL-0004YM", + "dimensionItem": "b449dBrOSFK", + "externalAccess": false, + "favorite": false, + "id": "b449dBrOSFK", + "ignoreApproval": false, + "legendSets": [], + "name": "0-4 years, Male", + "periodOffset": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "shortName": "0-4 years, Male", + "translations": [ + { + "locale": "nb", + "property": "NAME", + "value": "0-4 år, mann" + }, + { + "locale": "id", + "property": "NAME", + "value": "0-4 Tahun, Laki-laki" + }, + { + "locale": "cs", + "property": "NAME", + "value": "0-4 roky, muž" + }, + { + "locale": "ar", + "property": "NAME", + "value": "0-4 سنوات، ذكور" + }, + { + "locale": "uz", + "property": "NAME", + "value": "0-4 ёш, Эркак" + }, + { + "locale": "ru", + "property": "NAME", + "value": "0-4 лет, Мужчины" + }, + { + "locale": "pt", + "property": "NAME", + "value": "0-4 anos, Masculino" + }, + { + "locale": "fr", + "property": "NAME", + "value": "0-4 ans, masculin" + }, + { + "locale": "es", + "property": "NAME", + "value": "0-4 años, Masculino" + } + ], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "jGaNULROqin" + }, + "categoryOptions": [ + { + "id": "ftXCKvbuGgj" + } + ], + "code": "RMH-1014Y", + "dimensionItem": "BcTmquO9Vhw", + "externalAccess": false, + "favorite": false, + "id": "BcTmquO9Vhw", + "ignoreApproval": false, + "legendSets": [], + "name": "10-14 years", + "periodOffset": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "shortName": "10-14 years", + "translations": [ + { + "locale": "nb", + "property": "NAME", + "value": "10-14 år" + }, + { + "locale": "id", + "property": "NAME", + "value": "10-14 tahun" + }, + { + "locale": "es", + "property": "NAME", + "value": "10-14 años" + }, + { + "locale": "fr", + "property": "NAME", + "value": "10-14 ans" + }, + { + "locale": "cs", + "property": "NAME", + "value": "10-14 let" + }, + { + "locale": "pt", + "property": "NAME", + "value": "10-14 anos" + } + ], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "jGaNULROqin" + }, + "categoryOptions": [ + { + "id": "dENFBee17Oi" + } + ], + "code": "RMH-1519Y", + "dimensionItem": "kprxF3rp7G0", + "externalAccess": false, + "favorite": false, + "id": "kprxF3rp7G0", + "ignoreApproval": false, + "legendSets": [], + "name": "15-19 years", + "periodOffset": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "shortName": "15-19 years", + "translations": [ + { + "locale": "es", + "property": "NAME", + "value": "15-19 años" + }, + { + "locale": "id", + "property": "NAME", + "value": "15-19 Tahun" + }, + { + "locale": "cs", + "property": "NAME", + "value": "15-19 let" + }, + { + "locale": "pt", + "property": "NAME", + "value": "15-19 anos" + }, + { + "locale": "nb", + "property": "NAME", + "value": "15-19 år" + }, + { + "locale": "fr", + "property": "NAME", + "value": "15-19 ans" + } + ], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "categoryOptions": [ + { + "id": "wTpH7wugXzZ" + } + ], + "code": "MAL-15PLUSY", + "dimensionItem": "hF0pQZIn6Ch", + "externalAccess": false, + "favorite": false, + "id": "hF0pQZIn6Ch", + "ignoreApproval": false, + "legendSets": [], + "name": "15+ years", + "periodOffset": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "shortName": "15+ years", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "15+ ans" + } + ], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "categoryOptions": [ + { + "id": "wTpH7wugXzZ" + }, + { + "id": "FFA9e1yIXCT" + } + ], + "code": "MAL-15PLUSYF", + "dimensionItem": "kQBGXKMwoqR", + "externalAccess": false, + "favorite": false, + "id": "kQBGXKMwoqR", + "ignoreApproval": false, + "legendSets": [], + "name": "15+ years, Female", + "periodOffset": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "shortName": "15+ years, Female", + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "categoryOptions": [ + { + "id": "MP15bHaQh2x" + }, + { + "id": "wTpH7wugXzZ" + } + ], + "code": "MAL-15PLUSYM", + "dimensionItem": "AroSt3y4ir0", + "externalAccess": false, + "favorite": false, + "id": "AroSt3y4ir0", + "ignoreApproval": false, + "legendSets": [], + "name": "15+ years, Male", + "periodOffset": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "shortName": "15+ years, Male", + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "jGaNULROqin" + }, + "categoryOptions": [ + { + "id": "aeQKV9Y2Ium" + } + ], + "code": "RMH-20PLUSY", + "dimensionItem": "MhS0mKLqv9I", + "externalAccess": false, + "favorite": false, + "id": "MhS0mKLqv9I", + "ignoreApproval": false, + "legendSets": [], + "name": "20+ years", + "periodOffset": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "shortName": "20+ years", + "translations": [ + { + "locale": "nb", + "property": "NAME", + "value": "20+ år" + }, + { + "locale": "fr", + "property": "NAME", + "value": "20 ans et plus" + }, + { + "locale": "id", + "property": "NAME", + "value": "20+ Tahun" + }, + { + "locale": "pt", + "property": "NAME", + "value": "20+ anos" + }, + { + "locale": "es", + "property": "NAME", + "value": "20+ años" + }, + { + "locale": "cs", + "property": "NAME", + "value": "20+ let" + } + ], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "categoryOptions": [ + { + "id": "pa0cY66MrG6" + } + ], + "code": "MAL-0514Y", + "dimensionItem": "rtfSaMjPyq6", + "externalAccess": false, + "favorite": false, + "id": "rtfSaMjPyq6", + "ignoreApproval": false, + "legendSets": [], + "name": "5-14 years", + "periodOffset": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "shortName": "5-14 years", + "translations": [ + { + "locale": "pt", + "property": "NAME", + "value": "5-14 anos" + }, + { + "locale": "es", + "property": "NAME", + "value": "5-14 años" + }, + { + "locale": "ru", + "property": "NAME", + "value": "5-14 лет" + }, + { + "locale": "fr", + "property": "NAME", + "value": "5-14 ans" + } + ], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "categoryOptions": [ + { + "id": "pa0cY66MrG6" + }, + { + "id": "FFA9e1yIXCT" + } + ], + "code": "MAL-0514YF", + "dimensionItem": "bWFxj7MF1qR", + "externalAccess": false, + "favorite": false, + "id": "bWFxj7MF1qR", + "ignoreApproval": false, + "legendSets": [], + "name": "5-14 years, Female", + "periodOffset": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "shortName": "5-14 years, Female", + "translations": [ + { + "locale": "nb", + "property": "NAME", + "value": "5-14 år, kvinne" + }, + { + "locale": "uz", + "property": "NAME", + "value": "5-14 ёш, Аёл" + }, + { + "locale": "es", + "property": "NAME", + "value": "5-14 años, Femenino" + }, + { + "locale": "cs", + "property": "NAME", + "value": "5-14 let, žena" + }, + { + "locale": "ru", + "property": "NAME", + "value": "5-14 лет, жен." + }, + { + "locale": "pt", + "property": "NAME", + "value": "5-14 anos, Feminino" + }, + { + "locale": "id", + "property": "NAME", + "value": "5-14 Tahun, Perempuan" + }, + { + "locale": "ar", + "property": "NAME", + "value": "5-14 سنوات، إناث" + }, + { + "locale": "fr", + "property": "NAME", + "value": "5-14 ans, Féminin" + } + ], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "categoryOptions": [ + { + "id": "MP15bHaQh2x" + }, + { + "id": "pa0cY66MrG6" + } + ], + "code": "MAL-0514YM", + "dimensionItem": "j21YQgQ9GzP", + "externalAccess": false, + "favorite": false, + "id": "j21YQgQ9GzP", + "ignoreApproval": false, + "legendSets": [], + "name": "5-14 years, Male", + "periodOffset": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "shortName": "5-14 years, Male", + "translations": [ + { + "locale": "pt", + "property": "NAME", + "value": "5-14 anos, Masculino" + }, + { + "locale": "id", + "property": "NAME", + "value": "5-14 Tahun, Laki-laki" + }, + { + "locale": "es", + "property": "NAME", + "value": "5-14 años, Masculino" + }, + { + "locale": "cs", + "property": "NAME", + "value": "5-14 let, Muž" + }, + { + "locale": "fr", + "property": "NAME", + "value": "5-14 ans, Masculin" + }, + { + "locale": "nb", + "property": "NAME", + "value": "5-14 år, mann" + }, + { + "locale": "ru", + "property": "NAME", + "value": "5-14 лет, муж." + }, + { + "locale": "uz", + "property": "NAME", + "value": "5-14 ёш, Эркак" + }, + { + "locale": "ar", + "property": "NAME", + "value": "5-14 سنوات، ذكور" + } + ], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "categoryOptions": [ + { + "id": "FYTYL2zIeUe" + } + ], + "code": "MAL-AFOCI", + "dimensionItem": "Ngi3BgUod0E", + "externalAccess": false, + "favorite": false, + "id": "Ngi3BgUod0E", + "ignoreApproval": false, + "legendSets": [], + "name": "Active foci", + "periodOffset": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "shortName": "Active foci", + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "categoryOptions": [ + { + "id": "YKaVC5vFh4Q" + } + ], + "code": "MAL-CFOCI", + "dimensionItem": "gjWSzL7cfIe", + "externalAccess": false, + "favorite": false, + "id": "gjWSzL7cfIe", + "ignoreApproval": false, + "legendSets": [], + "name": "Cleared-up foci", + "periodOffset": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "shortName": "Cleared-up foci", + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "categoryOptions": [ + { + "id": "xYerKDKCefk" + } + ], + "code": "DEFAULT", + "dimensionItem": "HllvX50cXC0", + "externalAccess": false, + "favorite": false, + "id": "HllvX50cXC0", + "ignoreApproval": false, + "legendSets": [], + "name": "default", + "periodOffset": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "shortName": "default", + "translations": [ + { + "locale": "uz_UZ", + "property": "NAME", + "value": "standart" + }, + { + "locale": "uz", + "property": "NAME", + "value": "Стандарт" + }, + { + "locale": "ar", + "property": "NAME", + "value": "الافتراضي" + }, + { + "locale": "id", + "property": "NAME", + "value": "Putus berobat/default" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Padrão" + }, + { + "locale": "cs", + "property": "NAME", + "value": "výchozí" + }, + { + "locale": "ru", + "property": "NAME", + "value": "по умолчанию" + }, + { + "locale": "fr", + "property": "NAME", + "value": "défaut" + }, + { + "locale": "es", + "property": "NAME", + "value": "default" + }, + { + "locale": "nb", + "property": "NAME", + "value": "standard" + } + ], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "VkQPxB6VdoG" + }, + "categoryOptions": [ + { + "id": "FFA9e1yIXCT" + } + ], + "code": "F", + "dimensionItem": "aakXCEEzhGy", + "externalAccess": false, + "favorite": false, + "id": "aakXCEEzhGy", + "ignoreApproval": false, + "legendSets": [], + "name": "Female", + "periodOffset": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "shortName": "Female", + "translations": [ + { + "locale": "ar", + "property": "NAME", + "value": "إناث" + }, + { + "locale": "es", + "property": "NAME", + "value": "Femenino" + }, + { + "locale": "uz", + "property": "NAME", + "value": "Аёл" + }, + { + "locale": "cs", + "property": "NAME", + "value": "ženský" + }, + { + "locale": "nb", + "property": "NAME", + "value": "Kvinne" + }, + { + "locale": "ru", + "property": "NAME", + "value": "женский" + }, + { + "locale": "uz_UZ", + "property": "NAME", + "value": "Аyol" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Feminino" + }, + { + "locale": "fr", + "property": "NAME", + "value": "Féminin" + }, + { + "locale": "id", + "property": "NAME", + "value": "Perempuan" + } + ], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "VkQPxB6VdoG" + }, + "categoryOptions": [ + { + "id": "MP15bHaQh2x" + } + ], + "code": "M", + "dimensionItem": "PiYRwg1gzqV", + "externalAccess": false, + "favorite": false, + "id": "PiYRwg1gzqV", + "ignoreApproval": false, + "legendSets": [], + "name": "Male", + "periodOffset": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "shortName": "Male", + "translations": [ + { + "locale": "es", + "property": "NAME", + "value": "Masculino" + }, + { + "locale": "cs", + "property": "NAME", + "value": "muž" + }, + { + "locale": "ru", + "property": "NAME", + "value": "Мужчина" + }, + { + "locale": "ar", + "property": "NAME", + "value": "ذكور" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Masculino" + }, + { + "locale": "uz", + "property": "NAME", + "value": "Эркак" + }, + { + "locale": "fr", + "property": "NAME", + "value": "Masculin" + }, + { + "locale": "uz_UZ", + "property": "NAME", + "value": "Erkak" + }, + { + "locale": "nb", + "property": "NAME", + "value": "Mann" + }, + { + "locale": "id", + "property": "NAME", + "value": "Laki-laki" + } + ], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "categoryOptions": [ + { + "id": "mmepRq1pnwq" + } + ], + "code": "MAL-RFOCI", + "dimensionItem": "WPJQS4ogrRm", + "externalAccess": false, + "favorite": false, + "id": "WPJQS4ogrRm", + "ignoreApproval": false, + "legendSets": [], + "name": "Residual foci", + "periodOffset": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "shortName": "Residual foci", + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "categoryOptionGroupSets": [ + { + "attributeValues": [], + "categoryOptionGroups": [ + { + "id": "V9t81g7Wspa" + }, + { + "id": "yuathFHLjNe" + } + ], + "dataDimension": true, + "dataDimensionType": "DISAGGREGATION", + "description": "Age categorisation in years.", + "dimension": "AzDcxg4bW1N", + "dimensionType": "CATEGORY_OPTION_GROUP_SET", + "externalAccess": false, + "favorite": false, + "id": "AzDcxg4bW1N", + "items": [ + { + "id": "yuathFHLjNe" + }, + { + "id": "V9t81g7Wspa" + }, + { + "id": "SqvDE9fTeGl" + }, + { + "id": "YXE2HxNf3YB" + } + ], + "name": "Age in years (0-4, 5-14, 15+, unknown)", + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Age in years (0-4, 5-14, 15+, unknown)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Age (paludisme avec inconnu)" + }, + { + "locale": "uz", + "property": "DESCRIPTION", + "value": "Ёш бўйича категориялар, йилларда." + }, + { + "locale": "id", + "property": "DESCRIPTION", + "value": "Kategorisasi usia dalam tahun" + }, + { + "locale": "cs", + "property": "DESCRIPTION", + "value": "Věková kategorizace v letech." + }, + { + "locale": "pt", + "property": "DESCRIPTION", + "value": "Categorização de idade em anos." + }, + { + "locale": "nb", + "property": "DESCRIPTION", + "value": "Alderkategorisering i år" + }, + { + "locale": "es", + "property": "DESCRIPTION", + "value": "Categorización de edad en años" + }, + { + "locale": "fr", + "property": "DESCRIPTION", + "value": "Catégorisation âge en année" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "attributeValues": [], + "categoryOptionGroups": [ + { + "id": "RoYZKp6iDnH" + }, + { + "id": "TYpLRwKGE2K" + }, + { + "id": "qiaJA9sMzj2" + } + ], + "dataDimension": true, + "dataDimensionType": "DISAGGREGATION", + "description": "Age categorisation in years.", + "dimension": "EQAlIqdqcI1", + "dimensionType": "CATEGORY_OPTION_GROUP_SET", + "externalAccess": false, + "favorite": false, + "id": "EQAlIqdqcI1", + "items": [ + { + "id": "RoYZKp6iDnH" + }, + { + "id": "qiaJA9sMzj2" + }, + { + "id": "TYpLRwKGE2K" + }, + { + "id": "YXE2HxNf3YB" + } + ], + "name": "Age in years (10-14, 15-19, 20+, unknown)", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Age in years (10-14, 15-19, 20+, unknown)", + "translations": [ + { + "locale": "uz", + "property": "DESCRIPTION", + "value": "Ёш бўйича категориялар, йилларда." + }, + { + "locale": "fr", + "property": "NAME", + "value": "Age en année (10-14, 15-19, 20 ans et plus, inconnu)" + }, + { + "locale": "cs", + "property": "DESCRIPTION", + "value": "Věková kategorizace v letech." + }, + { + "locale": "pt", + "property": "DESCRIPTION", + "value": "Categorização de idade em anos." + }, + { + "locale": "nb", + "property": "DESCRIPTION", + "value": "Alderkategorisering i år" + }, + { + "locale": "fr", + "property": "DESCRIPTION", + "value": "Catégorisation âge en année" + }, + { + "locale": "id", + "property": "DESCRIPTION", + "value": "Kategorisasi usia dalam tahun" + }, + { + "locale": "cs", + "property": "NAME", + "value": "Věk v letech (10-14, 15-19, 20+, neznámý)" + }, + { + "locale": "id", + "property": "NAME", + "value": "Usia dalam tahun (10-14, 15-19, 20+, tidak diketahui)" + }, + { + "locale": "es", + "property": "NAME", + "value": "Edad en años (10-14, 15-19, 20+, desconocido)" + }, + { + "locale": "nb", + "property": "NAME", + "value": "Alder i år (10-14, 15-19, 20+, ukjent)" + }, + { + "locale": "es", + "property": "DESCRIPTION", + "value": "Categorización de edad en años" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Idade em anos (10-14, 15-19, 20+, desconhecida)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryOptionGroups": [ + { + "id": "bqoVhX2RfG4" + }, + { + "id": "EVYKU2fIc6G" + } + ], + "dataDimension": true, + "dataDimensionType": "DISAGGREGATION", + "description": "Sex (Male/Female)", + "dimension": "CMrvZp5rmoC", + "dimensionType": "CATEGORY_OPTION_GROUP_SET", + "externalAccess": false, + "favorite": false, + "id": "CMrvZp5rmoC", + "items": [ + { + "id": "bqoVhX2RfG4" + }, + { + "id": "EVYKU2fIc6G" + } + ], + "name": "Sex (Male/Female)", + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Sex (Male/Female)", + "translations": [ + { + "locale": "pt", + "property": "DESCRIPTION", + "value": "Sexo (Masculino/Feminino)" + }, + { + "locale": "nb", + "property": "NAME", + "value": "Kjønn (mann/kvinne)" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Sexo (Masculino/Feminino)" + }, + { + "locale": "id", + "property": "DESCRIPTION", + "value": "Jenis Kelamin (Laki-laki/Perempuan)" + }, + { + "locale": "id", + "property": "NAME", + "value": "Jenis Kelamin (Laki-laki/Perempuan)" + }, + { + "locale": "ru", + "property": "NAME", + "value": "Пол (мужчина / женщина)" + }, + { + "locale": "ru", + "property": "DESCRIPTION", + "value": "Пол (мужчина / женщина)" + }, + { + "locale": "cs", + "property": "DESCRIPTION", + "value": "Pohlaví (muž / žena)" + }, + { + "locale": "es", + "property": "NAME", + "value": "Sexo (Masculino/Femenino)" + }, + { + "locale": "es", + "property": "DESCRIPTION", + "value": "Sexo (Masculino/Femenino)" + }, + { + "locale": "cs", + "property": "NAME", + "value": "Pohlaví (muž / žena)" + }, + { + "locale": "uz", + "property": "DESCRIPTION", + "value": "Жинс (Эркак/Аёл)" + }, + { + "locale": "ar", + "property": "DESCRIPTION", + "value": "الجنس (ذكور/إناث)" + }, + { + "locale": "uz", + "property": "NAME", + "value": "Жинс (Эркак/Аёл)" + }, + { + "locale": "fr", + "property": "DESCRIPTION", + "value": "Sexe (Masculin/Féminin)" + }, + { + "locale": "ar", + "property": "NAME", + "value": "الجنس (ذكور/إناث)" + }, + { + "locale": "nb", + "property": "DESCRIPTION", + "value": "Kjønn (mann/kvinne)" + }, + { + "locale": "fr", + "property": "NAME", + "value": "Sexe (Masculin/Féminin)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "categoryOptionGroups": [ + { + "attributeValues": [], + "categoryOptions": [ + { + "id": "UPvKbcqTEY3" + } + ], + "code": "P0Y--P5Y", + "dataDimensionType": "DISAGGREGATION", + "dimensionItem": "yuathFHLjNe", + "dimensionItemType": "CATEGORY_OPTION_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [ + { + "id": "AzDcxg4bW1N" + } + ], + "id": "yuathFHLjNe", + "legendSets": [], + "name": "0-4 years", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "0-4 y", + "translations": [ + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "0-4 a" + }, + { + "locale": "fr", + "property": "NAME", + "value": "0-4 ans" + }, + { + "locale": "uz", + "property": "NAME", + "value": "0-4 ёш" + }, + { + "locale": "uz", + "property": "SHORT_NAME", + "value": "0-4 ёш" + }, + { + "locale": "es", + "property": "NAME", + "value": "0-4 años" + }, + { + "locale": "nb", + "property": "NAME", + "value": "0-4 år" + }, + { + "locale": "cs", + "property": "NAME", + "value": "0-4 roky" + }, + { + "locale": "ru", + "property": "NAME", + "value": "0-4 лет" + }, + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "0-4 r" + }, + { + "locale": "pt", + "property": "NAME", + "value": "0-4 anos" + }, + { + "locale": "id", + "property": "NAME", + "value": "0-4 tahun" + }, + { + "locale": "es", + "property": "SHORT_NAME", + "value": "0-4 a" + }, + { + "locale": "ar", + "property": "SHORT_NAME", + "value": "0-4 سنوات" + }, + { + "locale": "nb", + "property": "SHORT_NAME", + "value": "0-4 år" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "0-4" + }, + { + "locale": "ar", + "property": "NAME", + "value": "0-4 سنوات" + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "0-4 t" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryOptions": [ + { + "id": "ftXCKvbuGgj" + } + ], + "code": "P10Y--P15Y", + "dataDimensionType": "DISAGGREGATION", + "dimensionItem": "RoYZKp6iDnH", + "dimensionItemType": "CATEGORY_OPTION_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [ + { + "id": "EQAlIqdqcI1" + } + ], + "id": "RoYZKp6iDnH", + "legendSets": [], + "name": "10-14 years", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "10-14 y", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "10-14 ans " + }, + { + "locale": "nb", + "property": "NAME", + "value": "10-14 år" + }, + { + "locale": "id", + "property": "NAME", + "value": "10-14 tahun" + }, + { + "locale": "es", + "property": "NAME", + "value": "10-14 años" + }, + { + "locale": "es", + "property": "SHORT_NAME", + "value": "10-14 a" + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "10-14 Tahun" + }, + { + "locale": "fr", + "property": "NAME", + "value": "10-14 ans" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "10-14 a" + }, + { + "locale": "nb", + "property": "SHORT_NAME", + "value": "10-14 år" + }, + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "10-14 let" + }, + { + "locale": "cs", + "property": "NAME", + "value": "10-14 let" + }, + { + "locale": "pt", + "property": "NAME", + "value": "10-14 anos" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryOptions": [ + { + "id": "dENFBee17Oi" + } + ], + "code": "P15Y--P20Y", + "dataDimensionType": "DISAGGREGATION", + "dimensionItem": "qiaJA9sMzj2", + "dimensionItemType": "CATEGORY_OPTION_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [ + { + "id": "EQAlIqdqcI1" + } + ], + "id": "qiaJA9sMzj2", + "legendSets": [], + "name": "15-19 years", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "15-19 y", + "translations": [ + { + "locale": "es", + "property": "SHORT_NAME", + "value": "15-19 a" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "15-19 anos" + }, + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "15-19 r" + }, + { + "locale": "es", + "property": "NAME", + "value": "15-19 años" + }, + { + "locale": "id", + "property": "NAME", + "value": "15-19 Tahun" + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "15-19 Tahun" + }, + { + "locale": "cs", + "property": "NAME", + "value": "15-19 let" + }, + { + "locale": "pt", + "property": "NAME", + "value": "15-19 anos" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "15-19 ans" + }, + { + "locale": "nb", + "property": "NAME", + "value": "15-19 år" + }, + { + "locale": "fr", + "property": "NAME", + "value": "15-19 ans" + }, + { + "locale": "nb", + "property": "SHORT_NAME", + "value": "15-19 år" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryOptions": [ + { + "id": "wTpH7wugXzZ" + } + ], + "dataDimensionType": "DISAGGREGATION", + "dimensionItem": "HkomAEMQt5e", + "dimensionItemType": "CATEGORY_OPTION_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [], + "id": "HkomAEMQt5e", + "legendSets": [], + "name": "15+ years (specific age)", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "15+ years (specific)", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "15 ans et plus (spécifique)" + }, + { + "locale": "nb", + "property": "SHORT_NAME", + "value": "15+ år (spesifikk)" + }, + { + "locale": "ru", + "property": "NAME", + "value": "15+ лет (точный возраст)" + }, + { + "locale": "nb", + "property": "NAME", + "value": "15+ år (spesifikk alder)" + }, + { + "locale": "uz", + "property": "SHORT_NAME", + "value": "15+ ёш (аниқ)" + }, + { + "locale": "pt", + "property": "NAME", + "value": "15+ anos (idade específica)" + }, + { + "locale": "es", + "property": "SHORT_NAME", + "value": "15+ años (específica)" + }, + { + "locale": "fr", + "property": "NAME", + "value": "15 ans et plus (âge spécifique)" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "15+ anos (específica)" + }, + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "15+ let (konkrétní)" + }, + { + "locale": "es", + "property": "NAME", + "value": "15+ años (edad específica)" + }, + { + "locale": "uz", + "property": "NAME", + "value": "15+ ёш (аниқ ёш)" + }, + { + "locale": "cs", + "property": "NAME", + "value": "15+ let (konkrétní věk)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryOptions": [ + { + "id": "aeQKV9Y2Ium" + } + ], + "dataDimensionType": "DISAGGREGATION", + "dimensionItem": "TYpLRwKGE2K", + "dimensionItemType": "CATEGORY_OPTION_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [ + { + "id": "EQAlIqdqcI1" + } + ], + "id": "TYpLRwKGE2K", + "legendSets": [], + "name": "20+ years", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "20+ y", + "translations": [ + { + "locale": "nb", + "property": "NAME", + "value": "20+ år" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "20 ans et plus" + }, + { + "locale": "fr", + "property": "NAME", + "value": "20 ans et plus" + }, + { + "locale": "id", + "property": "NAME", + "value": "20+ Tahun" + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "20+ Tahun" + }, + { + "locale": "es", + "property": "SHORT_NAME", + "value": "20+ a" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "20+ a" + }, + { + "locale": "pt", + "property": "NAME", + "value": "20+ anos" + }, + { + "locale": "nb", + "property": "SHORT_NAME", + "value": "20+ år" + }, + { + "locale": "es", + "property": "NAME", + "value": "20+ años" + }, + { + "locale": "cs", + "property": "NAME", + "value": "20+ let" + }, + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "20 a více let" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryOptions": [ + { + "id": "pa0cY66MrG6" + } + ], + "dataDimensionType": "DISAGGREGATION", + "dimensionItem": "V9t81g7Wspa", + "dimensionItemType": "CATEGORY_OPTION_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [ + { + "id": "AzDcxg4bW1N" + } + ], + "id": "V9t81g7Wspa", + "legendSets": [], + "name": "5-14 years", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "5-14 y", + "translations": [ + { + "locale": "cs", + "property": "NAME", + "value": "5-14 let" + }, + { + "locale": "ar", + "property": "NAME", + "value": "5-14 سنوات" + }, + { + "locale": "es", + "property": "NAME", + "value": "5-14 años" + }, + { + "locale": "id", + "property": "NAME", + "value": "5-14 Tahun" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "5-14 a" + }, + { + "locale": "nb", + "property": "NAME", + "value": "5-14 år" + }, + { + "locale": "nb", + "property": "SHORT_NAME", + "value": "5-14 år" + }, + { + "locale": "uz", + "property": "SHORT_NAME", + "value": "5-14 ёш" + }, + { + "locale": "es", + "property": "SHORT_NAME", + "value": "5-14 a" + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "5-14 Thn" + }, + { + "locale": "pt", + "property": "NAME", + "value": "5-14 anos" + }, + { + "locale": "ru", + "property": "SHORT_NAME", + "value": "5-14 лет" + }, + { + "locale": "ru", + "property": "NAME", + "value": "5-14 лет" + }, + { + "locale": "uz", + "property": "NAME", + "value": "5-14 ёш" + }, + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "5-14 let" + }, + { + "locale": "fr", + "property": "NAME", + "value": "5-14 ans" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "5-14" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryOptions": [ + { + "id": "FFA9e1yIXCT" + } + ], + "code": "F", + "dataDimensionType": "DISAGGREGATION", + "dimensionItem": "bqoVhX2RfG4", + "dimensionItemType": "CATEGORY_OPTION_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [ + { + "id": "CMrvZp5rmoC" + } + ], + "id": "bqoVhX2RfG4", + "legendSets": [], + "name": "Female", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Female", + "translations": [ + { + "locale": "uz", + "property": "NAME", + "value": "Аёл" + }, + { + "locale": "nb", + "property": "NAME", + "value": "Kvinne" + }, + { + "locale": "ru", + "property": "NAME", + "value": "женский" + }, + { + "locale": "ar", + "property": "SHORT_NAME", + "value": "إناث" + }, + { + "locale": "es", + "property": "SHORT_NAME", + "value": "Femenino" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Feminino" + }, + { + "locale": "fr", + "property": "NAME", + "value": "Féminin" + }, + { + "locale": "ar", + "property": "NAME", + "value": "إناث" + }, + { + "locale": "es", + "property": "NAME", + "value": "Femenino" + }, + { + "locale": "nb", + "property": "SHORT_NAME", + "value": "Kvinne" + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "Wanita" + }, + { + "locale": "ru", + "property": "SHORT_NAME", + "value": "женский" + }, + { + "locale": "uz_UZ", + "property": "SHORT_NAME", + "value": "Аyol" + }, + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "ženský" + }, + { + "locale": "uz", + "property": "SHORT_NAME", + "value": "Аёл" + }, + { + "locale": "cs", + "property": "NAME", + "value": "ženský" + }, + { + "locale": "uz_UZ", + "property": "NAME", + "value": "Аyol" + }, + { + "locale": "id", + "property": "NAME", + "value": "Wanita" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "Feminino" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Féminin" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryOptions": [ + { + "id": "MP15bHaQh2x" + } + ], + "code": "M", + "dataDimensionType": "DISAGGREGATION", + "dimensionItem": "EVYKU2fIc6G", + "dimensionItemType": "CATEGORY_OPTION_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [ + { + "id": "CMrvZp5rmoC" + } + ], + "id": "EVYKU2fIc6G", + "legendSets": [], + "name": "Male", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Male", + "translations": [ + { + "locale": "cs", + "property": "NAME", + "value": "muž" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Masculino" + }, + { + "locale": "ar", + "property": "NAME", + "value": "ذكور" + }, + { + "locale": "ru", + "property": "NAME", + "value": "мужской" + }, + { + "locale": "ar", + "property": "SHORT_NAME", + "value": "ذكور" + }, + { + "locale": "uz", + "property": "SHORT_NAME", + "value": "Эркак" + }, + { + "locale": "uz_UZ", + "property": "NAME", + "value": "Erkak" + }, + { + "locale": "id", + "property": "NAME", + "value": "Laki-laki" + }, + { + "locale": "nb", + "property": "SHORT_NAME", + "value": "Mann" + }, + { + "locale": "es", + "property": "NAME", + "value": "Masculino" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Masculin" + }, + { + "locale": "uz", + "property": "NAME", + "value": "Эркак" + }, + { + "locale": "uz_UZ", + "property": "SHORT_NAME", + "value": "Erkak" + }, + { + "locale": "ru", + "property": "SHORT_NAME", + "value": "мужской" + }, + { + "locale": "fr", + "property": "NAME", + "value": "Masculin" + }, + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "muž" + }, + { + "locale": "es", + "property": "SHORT_NAME", + "value": "Masculino" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "Masculino" + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "Laki-laki" + }, + { + "locale": "nb", + "property": "NAME", + "value": "Mann" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "categoryOptions": [ + { + "attributeValues": [], + "categories": [ + { + "id": "prZlmHqhxLO" + }, + { + "id": "xHd2kREtJIQ" + }, + { + "id": "ZUL55wDDyJ5" + }, + { + "id": "Zh31lLGRQaG" + }, + { + "id": "cWCABxOGWjc" + }, + { + "id": "mFoasCYViMW" + }, + { + "id": "avoOKxQrkPC" + }, + { + "id": "RrZWSJ6CsLs" + }, + { + "id": "FoUE8OoKd3a" + }, + { + "id": "Q3xIIv2LDJF" + }, + { + "id": "jKGKs9gWC3u" + } + ], + "categoryOptionCombos": [ + { + "id": "RhyMQrYkcmt" + }, + { + "id": "bvHzx3xflb9" + }, + { + "id": "b449dBrOSFK" + }, + { + "id": "icarblC2ixW" + }, + { + "id": "dwp7Frm692X" + }, + { + "id": "Ter1Z3EGkQM" + }, + { + "id": "GAOdRubDZb0" + }, + { + "id": "JzrkRqzvWhH" + }, + { + "id": "t5FrQ0GTvGf" + }, + { + "id": "oPiYwMFcq1r" + }, + { + "id": "lZ73ggV9KBU" + }, + { + "id": "wRsvJp4MHNW" + }, + { + "id": "qYSg0OMIsOS" + }, + { + "id": "QnH2D2lGsQg" + }, + { + "id": "jMacn8knhdO" + }, + { + "id": "DUEO4rsPGes" + }, + { + "id": "CdOi53ChPVR" + }, + { + "id": "dFyufuJx6QZ" + }, + { + "id": "pDytzKy77yR" + }, + { + "id": "lUJJSQQ4e3m" + }, + { + "id": "DSn8HCZ3nqB" + }, + { + "id": "AtDcGOp9mpo" + }, + { + "id": "jQqLIn3xasU" + }, + { + "id": "uSC1ybGUEIW" + }, + { + "id": "fQ59eeXTE19" + }, + { + "id": "d1XzGx028Z8" + }, + { + "id": "lpN6Bb3nZHi" + }, + { + "id": "G8Qk5mKppVw" + }, + { + "id": "LJ81ATdhYYM" + }, + { + "id": "QOxR4qVgu0j" + }, + { + "id": "qIwjZD4M6Zz" + }, + { + "id": "oDWo5SdfUBw" + }, + { + "id": "AhqePctFfDf" + }, + { + "id": "oPcWGgS2Liz" + }, + { + "id": "EYUBVev6ypM" + }, + { + "id": "EFk6pU8L1aB" + }, + { + "id": "gQFIQV6abt6" + }, + { + "id": "Nu5DUxw6f6n" + }, + { + "id": "Wppa6YegH3g" + }, + { + "id": "TNiUPENUijR" + }, + { + "id": "OGiH0Y9GZPv" + }, + { + "id": "X7SGUlfmJa5" + }, + { + "id": "TJwBbR5efS9" + }, + { + "id": "YUSpF39nFJp" + }, + { + "id": "Y7lX4ySLvni" + }, + { + "id": "rIjuchPHhSU" + }, + { + "id": "ahgn5DHCw1M" + }, + { + "id": "BWWRkwU2P6T" + }, + { + "id": "PcXvX2I0Z1b" + } + ], + "categoryOptionGroups": [ + { + "id": "yuathFHLjNe" + } + ], + "code": "P0Y--P5Y", + "dimensionItem": "UPvKbcqTEY3", + "dimensionItemType": "CATEGORY_OPTION", + "externalAccess": false, + "favorite": false, + "id": "UPvKbcqTEY3", + "isDefault": false, + "legendSets": [], + "name": "0-4 years", + "organisationUnits": [], + "periodOffset": 0, + "publicAccess": "rwr-----", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rwr-----", + "userGroups": {}, + "users": {} + }, + "shortName": "0-4 y", + "translations": [ + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "0-4 a" + }, + { + "locale": "fr", + "property": "NAME", + "value": "0-4 ans" + }, + { + "locale": "uz", + "property": "NAME", + "value": "0-4 ёш" + }, + { + "locale": "uz", + "property": "SHORT_NAME", + "value": "0-4 ёш" + }, + { + "locale": "es", + "property": "NAME", + "value": "0-4 años" + }, + { + "locale": "nb", + "property": "NAME", + "value": "0-4 år" + }, + { + "locale": "cs", + "property": "NAME", + "value": "0-4 roky" + }, + { + "locale": "ru", + "property": "NAME", + "value": "0-4 лет" + }, + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "0-4 r" + }, + { + "locale": "pt", + "property": "NAME", + "value": "0-4 anos" + }, + { + "locale": "id", + "property": "NAME", + "value": "0-4 tahun" + }, + { + "locale": "es", + "property": "SHORT_NAME", + "value": "0-4 a" + }, + { + "locale": "ar", + "property": "SHORT_NAME", + "value": "0-4 سنوات" + }, + { + "locale": "nb", + "property": "SHORT_NAME", + "value": "0-4 år" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "0-4" + }, + { + "locale": "ar", + "property": "NAME", + "value": "0-4 سنوات" + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "0-4 t" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categories": [ + { + "id": "xHd2kREtJIQ" + }, + { + "id": "ZUL55wDDyJ5" + }, + { + "id": "Zh31lLGRQaG" + }, + { + "id": "NJ1xK7XnCTi" + }, + { + "id": "valXLoGdsvj" + }, + { + "id": "JP1Yz66gAwr" + }, + { + "id": "RMOM83kAEgy" + }, + { + "id": "ojMueHBl8sh" + }, + { + "id": "J53uyepZLU8" + }, + { + "id": "LRbLVRPeWhB" + }, + { + "id": "xocjlnNuDzU" + }, + { + "id": "RrZWSJ6CsLs" + }, + { + "id": "sHW0QVMEfdk" + } + ], + "categoryOptionCombos": [ + { + "id": "J2HRxxUq632" + }, + { + "id": "ejIyXXlURdf" + }, + { + "id": "BLh6W4xZLJp" + }, + { + "id": "Re1akLPrCLE" + }, + { + "id": "YfsCrUZhmF6" + }, + { + "id": "qK2c3NVlktz" + }, + { + "id": "S2lZJerwG7j" + }, + { + "id": "SV1RvPdmAkj" + }, + { + "id": "dpc9zLMZLoO" + }, + { + "id": "P152KoONKQp" + }, + { + "id": "hAlzfbohoz6" + }, + { + "id": "bEtjCuWdWjm" + }, + { + "id": "jmS8gbfhggJ" + }, + { + "id": "BcTmquO9Vhw" + }, + { + "id": "J3rzqRpFD4m" + }, + { + "id": "FSxtGeGY12j" + }, + { + "id": "ZnTO9yutncc" + }, + { + "id": "OrbYSCIJT9o" + }, + { + "id": "yEIMf6jbzgh" + }, + { + "id": "bnkF8HpCLrr" + }, + { + "id": "ItWExu07Ee4" + }, + { + "id": "XUXU9zyHXN9" + }, + { + "id": "orgBTcOH4HB" + }, + { + "id": "wRv4KSJaDrS" + }, + { + "id": "JkzwyuGFOW3" + }, + { + "id": "wbwPXjkMRxt" + }, + { + "id": "qwn0KjcDNEL" + }, + { + "id": "CFf1gcHQECO" + }, + { + "id": "xS4W0FPPNmy" + }, + { + "id": "xiwHk098SAw" + }, + { + "id": "UIonUk6NM4R" + }, + { + "id": "IS8yNJnXHUM" + }, + { + "id": "VifO26E9KyE" + }, + { + "id": "jX6Dk3dgzHa" + }, + { + "id": "cU9skq4tE2Y" + }, + { + "id": "rOEwFMdYGU3" + }, + { + "id": "rvc2EzhNwTy" + }, + { + "id": "AK6biqQfAzR" + }, + { + "id": "qrQbDBl4M1C" + }, + { + "id": "oGuIL85rVHo" + }, + { + "id": "Y4lTbx0iLHU" + }, + { + "id": "dAHrwhScx3Y" + }, + { + "id": "OvHovoFIu0w" + }, + { + "id": "RTTozfklTrb" + }, + { + "id": "RTK6blB5zae" + }, + { + "id": "UYJui8IgHt5" + }, + { + "id": "Oqyx4dOA1gi" + }, + { + "id": "yusHpEaacjP" + }, + { + "id": "UlTNK9Wi7bK" + }, + { + "id": "IE7FRLKRfVV" + }, + { + "id": "rSOaMnTKOUV" + }, + { + "id": "HiHljPPgI8x" + }, + { + "id": "I995TeO0KW7" + }, + { + "id": "qNDWMn2GYcr" + }, + { + "id": "ZvznjNCLBiF" + }, + { + "id": "AfQQGmLqDLZ" + }, + { + "id": "Gl6J1SvoDLu" + }, + { + "id": "zuhQhnj3rWK" + }, + { + "id": "yfmzqRIgKth" + }, + { + "id": "ssg9h5ShCHx" + }, + { + "id": "o10H9LYYGZX" + }, + { + "id": "vvpjmqp0psR" + } + ], + "categoryOptionGroups": [ + { + "id": "RoYZKp6iDnH" + } + ], + "code": "P10Y--P15Y", + "dimensionItem": "ftXCKvbuGgj", + "dimensionItemType": "CATEGORY_OPTION", + "externalAccess": false, + "favorite": false, + "id": "ftXCKvbuGgj", + "isDefault": false, + "legendSets": [], + "name": "10-14 years", + "organisationUnits": [], + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "10-14 y", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "10-14 ans " + }, + { + "locale": "nb", + "property": "NAME", + "value": "10-14 år" + }, + { + "locale": "id", + "property": "NAME", + "value": "10-14 tahun" + }, + { + "locale": "es", + "property": "NAME", + "value": "10-14 años" + }, + { + "locale": "es", + "property": "SHORT_NAME", + "value": "10-14 a" + }, + { + "locale": "fr", + "property": "NAME", + "value": "10-14 ans" + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "10-14 Tahun" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "10-14 a" + }, + { + "locale": "nb", + "property": "SHORT_NAME", + "value": "10-14 år" + }, + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "10-14 let" + }, + { + "locale": "cs", + "property": "NAME", + "value": "10-14 let" + }, + { + "locale": "pt", + "property": "NAME", + "value": "10-14 anos" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categories": [ + { + "id": "xHd2kREtJIQ" + }, + { + "id": "Zh31lLGRQaG" + }, + { + "id": "NJ1xK7XnCTi" + }, + { + "id": "RMOM83kAEgy" + }, + { + "id": "ojMueHBl8sh" + }, + { + "id": "zbdegRhn8nd" + }, + { + "id": "J53uyepZLU8" + }, + { + "id": "xocjlnNuDzU" + }, + { + "id": "RrZWSJ6CsLs" + }, + { + "id": "sHW0QVMEfdk" + }, + { + "id": "C1zeLDT1q5i" + }, + { + "id": "uJ9g9UBSbR2" + } + ], + "categoryOptionCombos": [ + { + "id": "zGluN37vC5S" + }, + { + "id": "DT4rb4cngYD" + }, + { + "id": "qINWpSyiduh" + }, + { + "id": "NXKOBpZT43g" + }, + { + "id": "pLhLQLTOLkt" + }, + { + "id": "s4t4ipqTD8m" + }, + { + "id": "xWH5aydYogt" + }, + { + "id": "U3ZhI1qcYJC" + }, + { + "id": "Sy29xu1F8F7" + }, + { + "id": "i0xLAFe98Ih" + }, + { + "id": "JThEoOuPjRD" + }, + { + "id": "kprxF3rp7G0" + }, + { + "id": "IF1FNcu5fSM" + }, + { + "id": "tbig8cXf9Jv" + }, + { + "id": "ZgjYZNtOqc7" + }, + { + "id": "mZHpRuybIb7" + }, + { + "id": "zGzCMiKbthv" + }, + { + "id": "agBfBfUuflQ" + }, + { + "id": "UL5mmrNuFuC" + }, + { + "id": "n9ARjauVsZ9" + }, + { + "id": "SAXw7gN0CcC" + }, + { + "id": "k9AiX2Iisw6" + }, + { + "id": "ScexP1q20vp" + }, + { + "id": "ODoqtXm9kx1" + }, + { + "id": "TnJBlIhSTSv" + }, + { + "id": "C3SNsiCa2Sd" + }, + { + "id": "DVvZ80lrydq" + }, + { + "id": "TGh2DOwS78m" + }, + { + "id": "F9pPSHdgzwj" + }, + { + "id": "gpuPeTwwR93" + }, + { + "id": "pU8Ajn46iwe" + }, + { + "id": "W2TUD82Alhb" + }, + { + "id": "AmLD9itp9BR" + }, + { + "id": "prCGBlfdmBK" + }, + { + "id": "OvAkh3z7dqK" + }, + { + "id": "jJSpT2gHWJA" + }, + { + "id": "X6DpP3KvEPq" + }, + { + "id": "UP1RLgb0lSQ" + }, + { + "id": "i2ZxgolQtwL" + }, + { + "id": "hKmBTXDUCvI" + }, + { + "id": "wRrGrknXiUJ" + }, + { + "id": "XH2Lp9NJ2h6" + }, + { + "id": "FS5VzodiGFz" + }, + { + "id": "JzOahCBuY7o" + }, + { + "id": "S0myvujdp96" + }, + { + "id": "NZ0ZVDsUOF3" + }, + { + "id": "sx3u16x80nV" + }, + { + "id": "qkeAEfiAG5m" + }, + { + "id": "Y3CGWbR5V4N" + }, + { + "id": "odVfPr260P0" + }, + { + "id": "RU1PoQ4DoEv" + }, + { + "id": "Bg9reDXyayU" + }, + { + "id": "KbRs3MUO6qj" + }, + { + "id": "CTWSo1P4qyZ" + }, + { + "id": "HfBU9IXI8nC" + }, + { + "id": "hGKVjwQgNmF" + }, + { + "id": "c8PAiDJTP5V" + }, + { + "id": "fqKJ3Q6Oivk" + }, + { + "id": "e4fWKSt8WBd" + }, + { + "id": "qRwCAcptUS7" + }, + { + "id": "hRK9rhZLDUG" + } + ], + "categoryOptionGroups": [ + { + "id": "qiaJA9sMzj2" + } + ], + "code": "P15Y--P20Y", + "dimensionItem": "dENFBee17Oi", + "dimensionItemType": "CATEGORY_OPTION", + "externalAccess": false, + "favorite": false, + "id": "dENFBee17Oi", + "isDefault": false, + "legendSets": [], + "name": "15-19 years", + "organisationUnits": [], + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "15-19 y", + "translations": [ + { + "locale": "es", + "property": "SHORT_NAME", + "value": "15-19 a" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "15-19 anos" + }, + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "15-19 r" + }, + { + "locale": "es", + "property": "NAME", + "value": "15-19 años" + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "15-19 Tahun" + }, + { + "locale": "id", + "property": "NAME", + "value": "15-19 Tahun" + }, + { + "locale": "cs", + "property": "NAME", + "value": "15-19 let" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "15-19 ans" + }, + { + "locale": "pt", + "property": "NAME", + "value": "15-19 anos" + }, + { + "locale": "nb", + "property": "NAME", + "value": "15-19 år" + }, + { + "locale": "fr", + "property": "NAME", + "value": "15-19 ans" + }, + { + "locale": "nb", + "property": "SHORT_NAME", + "value": "15-19 år" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categories": [ + { + "id": "ukxtyAtpvay" + }, + { + "id": "FoUE8OoKd3a" + }, + { + "id": "mFoasCYViMW" + } + ], + "categoryOptionCombos": [ + { + "id": "AroSt3y4ir0" + }, + { + "id": "fTcneyBaLyH" + }, + { + "id": "hF0pQZIn6Ch" + }, + { + "id": "a72PMVLM7y3" + }, + { + "id": "ey3hbWIkaJ6" + }, + { + "id": "JPko43UMgN4" + }, + { + "id": "kQBGXKMwoqR" + }, + { + "id": "sdgaBKAPl7j" + } + ], + "categoryOptionGroups": [ + { + "id": "HkomAEMQt5e" + } + ], + "code": "P15Y--P999Y", + "dimensionItem": "wTpH7wugXzZ", + "dimensionItemType": "CATEGORY_OPTION", + "externalAccess": false, + "favorite": false, + "id": "wTpH7wugXzZ", + "isDefault": false, + "legendSets": [], + "name": "15+ years", + "organisationUnits": [], + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "15+ y", + "translations": [ + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "15+ r" + }, + { + "locale": "nb", + "property": "SHORT_NAME", + "value": "15+ år" + }, + { + "locale": "fr", + "property": "NAME", + "value": "15+ ans" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "15+ y" + }, + { + "locale": "id", + "property": "NAME", + "value": "15+ Tahun" + }, + { + "locale": "cs", + "property": "NAME", + "value": "15+ let" + }, + { + "locale": "pt", + "property": "NAME", + "value": "15+ anos" + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "15+ Thn" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "15+ ans" + }, + { + "locale": "nb", + "property": "NAME", + "value": "15+ år" + }, + { + "locale": "uz", + "property": "SHORT_NAME", + "value": "15+ ёш" + }, + { + "locale": "uz", + "property": "NAME", + "value": "15+ ёш" + }, + { + "locale": "ru", + "property": "NAME", + "value": "15+ лет" + }, + { + "locale": "es", + "property": "SHORT_NAME", + "value": "15+ a" + }, + { + "locale": "es", + "property": "NAME", + "value": "15+ años" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categories": [ + { + "id": "xocjlnNuDzU" + }, + { + "id": "Zh31lLGRQaG" + }, + { + "id": "RMOM83kAEgy" + }, + { + "id": "ojMueHBl8sh" + } + ], + "categoryOptionCombos": [ + { + "id": "BPhRLx13uKS" + }, + { + "id": "ybkxFTjmZ9m" + }, + { + "id": "CzbhUfOZVxl" + }, + { + "id": "qokH8ECXxgP" + }, + { + "id": "dGM3GIlWOXU" + }, + { + "id": "lagEXIXJAky" + }, + { + "id": "rN5oMG7RVrR" + }, + { + "id": "LlcyDM4oAeQ" + }, + { + "id": "MhS0mKLqv9I" + }, + { + "id": "N8Wrw2jhPgK" + }, + { + "id": "Gb0sSCazwHT" + }, + { + "id": "FICjrvRgFi9" + }, + { + "id": "EXhiTmVSW6O" + }, + { + "id": "F381x6tHks3" + }, + { + "id": "jerr6tTqnrA" + }, + { + "id": "N3M76xpx6bb" + }, + { + "id": "hDivFMtQTTv" + }, + { + "id": "aSxlcB12A2O" + }, + { + "id": "fZXfh4QNOpT" + }, + { + "id": "WIZZ3GGIypP" + }, + { + "id": "ZIRZGCOIwD2" + }, + { + "id": "NmDnOkneASz" + }, + { + "id": "BbCxngcarLf" + }, + { + "id": "RaJjtJbqs0c" + }, + { + "id": "mmRKhu5z19R" + }, + { + "id": "zviFqMz7XAf" + }, + { + "id": "jx5puKUMUZx" + }, + { + "id": "ZGmL8qWNdzy" + }, + { + "id": "zClUyEKfEq4" + }, + { + "id": "W54KVlQADoq" + } + ], + "categoryOptionGroups": [ + { + "id": "TYpLRwKGE2K" + } + ], + "code": "P20Y--P9999Y", + "dimensionItem": "aeQKV9Y2Ium", + "dimensionItemType": "CATEGORY_OPTION", + "externalAccess": false, + "favorite": false, + "id": "aeQKV9Y2Ium", + "isDefault": false, + "legendSets": [], + "name": "20+ years", + "organisationUnits": [], + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "20+ y", + "translations": [ + { + "locale": "nb", + "property": "NAME", + "value": "20+ år" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "20 ans et plus" + }, + { + "locale": "fr", + "property": "NAME", + "value": "20 ans et plus" + }, + { + "locale": "id", + "property": "NAME", + "value": "20+ Tahun" + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "20+ Tahun" + }, + { + "locale": "es", + "property": "SHORT_NAME", + "value": "20+ a" + }, + { + "locale": "pt", + "property": "NAME", + "value": "20+ anos" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "20+ a" + }, + { + "locale": "nb", + "property": "SHORT_NAME", + "value": "20+ år" + }, + { + "locale": "cs", + "property": "NAME", + "value": "20+ let" + }, + { + "locale": "es", + "property": "NAME", + "value": "20+ años" + }, + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "20 a více let" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categories": [ + { + "id": "prZlmHqhxLO" + }, + { + "id": "FoUE8OoKd3a" + }, + { + "id": "Q3xIIv2LDJF" + }, + { + "id": "mFoasCYViMW" + } + ], + "categoryOptionCombos": [ + { + "id": "rtfSaMjPyq6" + }, + { + "id": "yrPacW5BotF" + }, + { + "id": "bWFxj7MF1qR" + }, + { + "id": "j21YQgQ9GzP" + }, + { + "id": "bMkvQ4PSTz3" + }, + { + "id": "rDzmnH2ECiL" + }, + { + "id": "xevNodrE0jP" + }, + { + "id": "aIDylQ6ka3n" + }, + { + "id": "PEaQ7efLnLb" + }, + { + "id": "YEgJBndPbIM" + } + ], + "categoryOptionGroups": [ + { + "id": "V9t81g7Wspa" + } + ], + "code": "P5Y--P15Y", + "dimensionItem": "pa0cY66MrG6", + "dimensionItemType": "CATEGORY_OPTION", + "externalAccess": false, + "favorite": false, + "id": "pa0cY66MrG6", + "isDefault": false, + "legendSets": [], + "name": "5-14 years", + "organisationUnits": [], + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "5-14 y", + "translations": [ + { + "locale": "cs", + "property": "NAME", + "value": "5-14 let" + }, + { + "locale": "ar", + "property": "NAME", + "value": "5-14 سنوات" + }, + { + "locale": "es", + "property": "NAME", + "value": "5-14 años" + }, + { + "locale": "id", + "property": "NAME", + "value": "5-14 Tahun" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "5-14 a" + }, + { + "locale": "nb", + "property": "NAME", + "value": "5-14 år" + }, + { + "locale": "nb", + "property": "SHORT_NAME", + "value": "5-14 år" + }, + { + "locale": "uz", + "property": "SHORT_NAME", + "value": "5-14 ёш" + }, + { + "locale": "es", + "property": "SHORT_NAME", + "value": "5-14 a" + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "5-14 Thn" + }, + { + "locale": "pt", + "property": "NAME", + "value": "5-14 anos" + }, + { + "locale": "ru", + "property": "SHORT_NAME", + "value": "5-14 лет" + }, + { + "locale": "ru", + "property": "NAME", + "value": "5-14 лет" + }, + { + "locale": "uz", + "property": "NAME", + "value": "5-14 ёш" + }, + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "5-14 let" + }, + { + "locale": "fr", + "property": "NAME", + "value": "5-14 ans" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "5-14" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categories": [ + { + "id": "Xaol8a2c51w" + } + ], + "categoryOptionCombos": [ + { + "id": "Ngi3BgUod0E" + } + ], + "categoryOptionGroups": [], + "code": "AFOCI", + "dimensionItem": "FYTYL2zIeUe", + "dimensionItemType": "CATEGORY_OPTION", + "externalAccess": false, + "favorite": false, + "id": "FYTYL2zIeUe", + "isDefault": false, + "legendSets": [], + "name": "Active foci", + "organisationUnits": [], + "periodOffset": 0, + "publicAccess": "r-r-----", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-r-----", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-r-----", + "id": "ZXEVDM9XRea" + }, + "fRSrUJ6SMGH": { + "access": "--rw----", + "id": "fRSrUJ6SMGH" + }, + "suMb19wGXPR": { + "access": "rwr-----", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Active", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rwr-----", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-r-----", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + }, + { + "access": "--rw----", + "id": "fRSrUJ6SMGH", + "userGroupUid": "fRSrUJ6SMGH" + } + ] + }, + { + "attributeValues": [], + "categories": [ + { + "id": "Xaol8a2c51w" + } + ], + "categoryOptionCombos": [ + { + "id": "gjWSzL7cfIe" + } + ], + "categoryOptionGroups": [], + "code": "CFOCI", + "dimensionItem": "YKaVC5vFh4Q", + "dimensionItemType": "CATEGORY_OPTION", + "externalAccess": false, + "favorite": false, + "id": "YKaVC5vFh4Q", + "isDefault": false, + "legendSets": [], + "name": "Cleared-up foci", + "organisationUnits": [], + "periodOffset": 0, + "publicAccess": "r-r-----", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-r-----", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-r-----", + "id": "ZXEVDM9XRea" + }, + "fRSrUJ6SMGH": { + "access": "--rw----", + "id": "fRSrUJ6SMGH" + }, + "suMb19wGXPR": { + "access": "rwr-----", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Cleared-up", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rwr-----", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-r-----", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + }, + { + "access": "--rw----", + "id": "fRSrUJ6SMGH", + "userGroupUid": "fRSrUJ6SMGH" + } + ] + }, + { + "attributeValues": [], + "categories": [ + { + "id": "GLevLNI9wkl" + } + ], + "categoryOptionCombos": [ + { + "id": "HllvX50cXC0" + } + ], + "categoryOptionGroups": [], + "code": "DEFAULT", + "dimensionItem": "xYerKDKCefk", + "dimensionItemType": "CATEGORY_OPTION", + "externalAccess": false, + "favorite": false, + "id": "xYerKDKCefk", + "isDefault": true, + "legendSets": [], + "name": "default", + "organisationUnits": [], + "periodOffset": 0, + "publicAccess": "rwrw----", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rwrw----", + "userGroups": {}, + "users": {} + }, + "shortName": "default", + "translations": [ + { + "locale": "es", + "property": "SHORT_NAME", + "value": "default" + }, + { + "locale": "uz", + "property": "NAME", + "value": "Стандарт" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "défaut" + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "Putus berobat/default" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Padrão" + }, + { + "locale": "cs", + "property": "NAME", + "value": "výchozí" + }, + { + "locale": "ru", + "property": "NAME", + "value": "по умолчанию" + }, + { + "locale": "nb", + "property": "SHORT_NAME", + "value": "standard" + }, + { + "locale": "es", + "property": "NAME", + "value": "default" + }, + { + "locale": "uz_UZ", + "property": "NAME", + "value": "standart" + }, + { + "locale": "uz", + "property": "SHORT_NAME", + "value": "Стандарт" + }, + { + "locale": "ar", + "property": "NAME", + "value": "الافتراضي" + }, + { + "locale": "id", + "property": "NAME", + "value": "Putus berobat/default" + }, + { + "locale": "ar", + "property": "SHORT_NAME", + "value": "الافتراضي" + }, + { + "locale": "uz_UZ", + "property": "SHORT_NAME", + "value": "standart" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "Padrão" + }, + { + "locale": "ru", + "property": "SHORT_NAME", + "value": "по умолчанию" + }, + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "výchozí" + }, + { + "locale": "fr", + "property": "NAME", + "value": "défaut" + }, + { + "locale": "nb", + "property": "NAME", + "value": "standard" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categories": [ + { + "id": "b7peexUktxt" + }, + { + "id": "q8pLe270AmU" + }, + { + "id": "FRwO58KwwJt" + } + ], + "categoryOptionCombos": [ + { + "id": "VvdznDS1Jcv" + }, + { + "id": "t9r0WNolYN2" + }, + { + "id": "JzrkRqzvWhH" + }, + { + "id": "TIn0jG2EVnA" + }, + { + "id": "PWh3RWTZSRH" + }, + { + "id": "gPWH4piZwC0" + }, + { + "id": "G5DTdXwMaia" + }, + { + "id": "r0MSIEuQfwF" + }, + { + "id": "Xrbw9OSFk0m" + }, + { + "id": "KkvWAfJXVre" + }, + { + "id": "dRrbsWdnSnU" + }, + { + "id": "QnH2D2lGsQg" + }, + { + "id": "cO1vAjqfkUz" + }, + { + "id": "Y0I5Dk5IZqp" + }, + { + "id": "ItWExu07Ee4" + }, + { + "id": "UsfG8ndZHxV" + }, + { + "id": "GiRwR3FD86i" + }, + { + "id": "aIDylQ6ka3n" + }, + { + "id": "qwn0KjcDNEL" + }, + { + "id": "d4hDUWHgyHA" + }, + { + "id": "fQ59eeXTE19" + }, + { + "id": "BbCxngcarLf" + }, + { + "id": "JepUukzD91g" + }, + { + "id": "srFeKDklL1g" + }, + { + "id": "w1W0eGecUME" + }, + { + "id": "Sw0WwH8AM10" + }, + { + "id": "D0g8d1tsNnv" + }, + { + "id": "SZ9ccMeGlS6" + }, + { + "id": "pU8Ajn46iwe" + }, + { + "id": "W2TUD82Alhb" + }, + { + "id": "a9DCE2wtNP3" + }, + { + "id": "qC3uwBZLIfz" + }, + { + "id": "lY1D0sxS9gJ" + }, + { + "id": "vxIitZ64zx7" + }, + { + "id": "jJSpT2gHWJA" + }, + { + "id": "H9SWzT8B10p" + }, + { + "id": "JV1HAIIwUbQ" + }, + { + "id": "NZ10jDzwugk" + }, + { + "id": "CAfB8ipjDhr" + }, + { + "id": "L9lGoMl4PWJ" + }, + { + "id": "M07m2cbTWHc" + }, + { + "id": "syYBleZRdLM" + }, + { + "id": "RzvnXjQu1cm" + }, + { + "id": "OynTkhmy135" + }, + { + "id": "QMzK2ItBYKq" + }, + { + "id": "CzbhUfOZVxl" + }, + { + "id": "SIxMfxXNBVo" + }, + { + "id": "s4t4ipqTD8m" + }, + { + "id": "nYKWbW4JvkC" + }, + { + "id": "sdgaBKAPl7j" + }, + { + "id": "aakXCEEzhGy" + }, + { + "id": "Na9iihNhL41" + }, + { + "id": "ZnTO9yutncc" + }, + { + "id": "OtVDUfis1UB" + }, + { + "id": "vlUlPv9RUAs" + }, + { + "id": "bWFxj7MF1qR" + }, + { + "id": "b6QLRPACegE" + }, + { + "id": "obhML8YUkd3" + }, + { + "id": "YSXeQGEdt0M" + }, + { + "id": "xu4Rvm1YOoW" + }, + { + "id": "lr11sRUhtcW" + }, + { + "id": "H7gS7xiJHNy" + }, + { + "id": "nmAGf5IwUtM" + }, + { + "id": "xS4W0FPPNmy" + }, + { + "id": "xiwHk098SAw" + }, + { + "id": "vQjoZc1ka1S" + }, + { + "id": "qoufJuq9ijQ" + }, + { + "id": "AmyL0WxG3d1" + }, + { + "id": "G8Qk5mKppVw" + }, + { + "id": "F9pPSHdgzwj" + }, + { + "id": "fP0kAy95WOI" + }, + { + "id": "YHlsIGH0vzs" + }, + { + "id": "kz9PKqMwjE9" + }, + { + "id": "MQPOGL8Mmeq" + }, + { + "id": "rDzmnH2ECiL" + }, + { + "id": "rRj4IINDJym" + }, + { + "id": "q3rHLudY7iM" + }, + { + "id": "aLEzhkHI3v0" + }, + { + "id": "UP1RLgb0lSQ" + }, + { + "id": "LKgmRuovjop" + }, + { + "id": "WZOowfzMVQ7" + }, + { + "id": "ABD5MnnbaL6" + }, + { + "id": "bhS8lXg8ssx" + }, + { + "id": "xwhhHGdlASq" + }, + { + "id": "lSdgPONlgBo" + }, + { + "id": "MCWLRNrBBOq" + }, + { + "id": "ey3hbWIkaJ6" + }, + { + "id": "Rka5G5sZm5e" + }, + { + "id": "ZvznjNCLBiF" + }, + { + "id": "FsZSFGKirY0" + }, + { + "id": "om4a6v4NjIR" + }, + { + "id": "PEaQ7efLnLb" + }, + { + "id": "dkzJLwlGp7s" + }, + { + "id": "ZpvqjZ9iDSn" + }, + { + "id": "xOXudYm03M6" + }, + { + "id": "aaGPZXZmim1" + }, + { + "id": "d6vHlpGxfbZ" + }, + { + "id": "vvpjmqp0psR" + }, + { + "id": "RGN8s9mWgRw" + }, + { + "id": "W54KVlQADoq" + }, + { + "id": "J2HRxxUq632" + }, + { + "id": "DO5tKTy9Vzx" + }, + { + "id": "IdLfgkfPvX6" + }, + { + "id": "sFJsKLHLBFj" + }, + { + "id": "qINWpSyiduh" + }, + { + "id": "NSCL13k9qpQ" + }, + { + "id": "GAOdRubDZb0" + }, + { + "id": "qosgezgFgG0" + }, + { + "id": "T9NHeIM5Awi" + }, + { + "id": "E5e1RPDrDP9" + }, + { + "id": "j1vuFRfxqUV" + }, + { + "id": "wRsvJp4MHNW" + }, + { + "id": "xUdHhdg2qKE" + }, + { + "id": "XBA2FwYbPZ1" + }, + { + "id": "chjRVdKJqq7" + }, + { + "id": "Gl4z25YlDxZ" + }, + { + "id": "CdOi53ChPVR" + }, + { + "id": "g5XAclU6mWm" + }, + { + "id": "IS8yNJnXHUM" + }, + { + "id": "BU50ZMiGRCL" + }, + { + "id": "dvlv8phhokx" + }, + { + "id": "UycnQgi3zDk" + }, + { + "id": "lMo9HzUDdeM" + }, + { + "id": "ly72sXh6ryW" + }, + { + "id": "iUe9y7FGGws" + }, + { + "id": "rm1P2TnbrQt" + }, + { + "id": "FMg0Ods49SJ" + }, + { + "id": "QrWbLOiGNz0" + }, + { + "id": "AIi5seClKYD" + }, + { + "id": "EmXw9M7N35N" + }, + { + "id": "Lic97hqxsNP" + }, + { + "id": "z1os6QcIpAe" + }, + { + "id": "QviyVaCKsM3" + }, + { + "id": "HfBU9IXI8nC" + }, + { + "id": "A1oWP34aFov" + }, + { + "id": "ZVHwjmy6cHt" + }, + { + "id": "WrvTre0X7nx" + }, + { + "id": "fqKJ3Q6Oivk" + }, + { + "id": "bufRJe4KUs5" + }, + { + "id": "gSBt0sW2xt7" + }, + { + "id": "z7mHVm62pEJ" + }, + { + "id": "E03CigZ4AM9" + }, + { + "id": "Npi7p5alUvv" + }, + { + "id": "uUaY47zylM9" + }, + { + "id": "pLhLQLTOLkt" + }, + { + "id": "ABYB6U68hMU" + }, + { + "id": "t5FrQ0GTvGf" + }, + { + "id": "oPiYwMFcq1r" + }, + { + "id": "h72VZMAIXNp" + }, + { + "id": "Nkfsj2NfhIQ" + }, + { + "id": "wLVUm8AFQ6W" + }, + { + "id": "aFYZy6ksI07" + }, + { + "id": "UezrwlwKQ8r" + }, + { + "id": "vszxYqG88e4" + }, + { + "id": "mLB4HuBX14Q" + }, + { + "id": "jNN8tZtfXvz" + }, + { + "id": "pDytzKy77yR" + }, + { + "id": "GXkDk7Qq8mG" + }, + { + "id": "dAoxGf1oUsc" + }, + { + "id": "cRX5XsDF7pU" + }, + { + "id": "kQBGXKMwoqR" + }, + { + "id": "iDQwY0C5NJ7" + }, + { + "id": "GHDbaPccoPh" + }, + { + "id": "C2UWU4uTYJM" + }, + { + "id": "VDX4411bEwZ" + }, + { + "id": "Ome7OFC7t6j" + }, + { + "id": "L2EXy3ciGPu" + }, + { + "id": "jX6Dk3dgzHa" + }, + { + "id": "KX4bVY2tJHh" + }, + { + "id": "zRMd2oGYtuG" + }, + { + "id": "IRk7FGPwIXD" + }, + { + "id": "PgKi2DQbjY9" + }, + { + "id": "Hm3M3g1zeti" + }, + { + "id": "EFk6pU8L1aB" + }, + { + "id": "cfJ88kcKfs2" + }, + { + "id": "ysu85dgwScU" + }, + { + "id": "zjahAH6Kcd8" + }, + { + "id": "hTTSLrG15qa" + }, + { + "id": "FWxLSWmBfd0" + }, + { + "id": "R3JoapCwkz4" + }, + { + "id": "StKnVbly3TR" + }, + { + "id": "X7SGUlfmJa5" + }, + { + "id": "hrPYhzRokAX" + }, + { + "id": "doV3TW4iOxr" + }, + { + "id": "vyiCoNQzpLw" + }, + { + "id": "AAZGdCiOlh1" + }, + { + "id": "Lwb0yEbt4s6" + }, + { + "id": "s9FUyDBCcQv" + } + ], + "categoryOptionGroups": [ + { + "id": "bqoVhX2RfG4" + } + ], + "code": "F", + "dimensionItem": "FFA9e1yIXCT", + "dimensionItemType": "CATEGORY_OPTION", + "externalAccess": false, + "favorite": false, + "id": "FFA9e1yIXCT", + "isDefault": false, + "legendSets": [], + "name": "Female", + "organisationUnits": [], + "periodOffset": 0, + "publicAccess": "r-r-----", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-r-----", + "userGroups": {}, + "users": {} + }, + "shortName": "Female", + "translations": [ + { + "locale": "uz", + "property": "NAME", + "value": "Аёл" + }, + { + "locale": "fr", + "property": "NAME", + "value": "Femme" + }, + { + "locale": "nb", + "property": "NAME", + "value": "Kvinne" + }, + { + "locale": "ru", + "property": "NAME", + "value": "женский" + }, + { + "locale": "ar", + "property": "SHORT_NAME", + "value": "إناث" + }, + { + "locale": "es", + "property": "SHORT_NAME", + "value": "Femenino" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Feminino" + }, + { + "locale": "id", + "property": "NAME", + "value": "Perempuan" + }, + { + "locale": "ar", + "property": "NAME", + "value": "إناث" + }, + { + "locale": "es", + "property": "NAME", + "value": "Femenino" + }, + { + "locale": "nb", + "property": "SHORT_NAME", + "value": "Kvinne" + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "Wanita" + }, + { + "locale": "ru", + "property": "SHORT_NAME", + "value": "женский" + }, + { + "locale": "uz_UZ", + "property": "SHORT_NAME", + "value": "Аyol" + }, + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "ženský" + }, + { + "locale": "uz", + "property": "SHORT_NAME", + "value": "Аёл" + }, + { + "locale": "cs", + "property": "NAME", + "value": "ženský" + }, + { + "locale": "uz_UZ", + "property": "NAME", + "value": "Аyol" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "Feminino" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Féminin" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categories": [ + { + "id": "b7peexUktxt" + }, + { + "id": "q8pLe270AmU" + }, + { + "id": "FRwO58KwwJt" + } + ], + "categoryOptionCombos": [ + { + "id": "Kk4BzXqHkss" + }, + { + "id": "Fc8NhmtCEn2" + }, + { + "id": "gUs5cSl65rZ" + }, + { + "id": "pX7UtgdkY8e" + }, + { + "id": "JtGMAcD0Btm" + }, + { + "id": "WrTcXFoa5TX" + }, + { + "id": "dpc9zLMZLoO" + }, + { + "id": "km6QxpA8Gew" + }, + { + "id": "P152KoONKQp" + }, + { + "id": "xWH5aydYogt" + }, + { + "id": "lIqSozdCr27" + }, + { + "id": "OnHaA5Ff7sd" + }, + { + "id": "qYSg0OMIsOS" + }, + { + "id": "BASyNwLzKwY" + }, + { + "id": "IXlywNL1MqN" + }, + { + "id": "mZHpRuybIb7" + }, + { + "id": "Hgeo6ZzEURv" + }, + { + "id": "Bwf4rpSBwjD" + }, + { + "id": "DSn8HCZ3nqB" + }, + { + "id": "cSytPhyPaJ3" + }, + { + "id": "DNFpBIiKmcT" + }, + { + "id": "LQQMOZTyZmD" + }, + { + "id": "xTIVgHCnGUD" + }, + { + "id": "UIkTt8eXUEI" + }, + { + "id": "PgmLRiqPKgd" + }, + { + "id": "d1XzGx028Z8" + }, + { + "id": "uIIFBU3NJCl" + }, + { + "id": "ZTM6ooK5E4V" + }, + { + "id": "Buv6Vt7rlaN" + }, + { + "id": "fTcneyBaLyH" + }, + { + "id": "RQChXxsEGmX" + }, + { + "id": "Hqno1sfL72D" + }, + { + "id": "eFTchJuCpi5" + }, + { + "id": "PH5tkMx1LPX" + }, + { + "id": "KQghaefFRXy" + }, + { + "id": "A3IN56PRGLF" + }, + { + "id": "Bm6HPRKSRA4" + }, + { + "id": "UY2pKMUhHJC" + }, + { + "id": "TUUDNrDX7L7" + }, + { + "id": "Tjy4Mc08yCX" + }, + { + "id": "JbMZodPV4Wc" + }, + { + "id": "rm9JXEYNCpD" + }, + { + "id": "F0DxP1DUjXH" + }, + { + "id": "bm2siOxEk6w" + }, + { + "id": "g9xZJLTm0eN" + }, + { + "id": "QMj2DBdJ3ru" + }, + { + "id": "INbHdVKas9i" + }, + { + "id": "ekiyrh9UULj" + }, + { + "id": "SV1RvPdmAkj" + }, + { + "id": "S2lZJerwG7j" + }, + { + "id": "V1MPpCmUf4t" + }, + { + "id": "w7NYLKLaWuB" + }, + { + "id": "AroSt3y4ir0" + }, + { + "id": "ox4ZRileubR" + }, + { + "id": "ZPJsUdGlqp0" + }, + { + "id": "JPko43UMgN4" + }, + { + "id": "rN5oMG7RVrR" + }, + { + "id": "FSxtGeGY12j" + }, + { + "id": "tbig8cXf9Jv" + }, + { + "id": "BwXehES3as4" + }, + { + "id": "vblxXtbDltI" + }, + { + "id": "gr116O1OJMR" + }, + { + "id": "BkWkUaiTxpG" + }, + { + "id": "i6EGYMCUiyp" + }, + { + "id": "k9AiX2Iisw6" + }, + { + "id": "ODoqtXm9kx1" + }, + { + "id": "CXzq4njIiKg" + }, + { + "id": "C3SNsiCa2Sd" + }, + { + "id": "WIZZ3GGIypP" + }, + { + "id": "nACYHQS6RTn" + }, + { + "id": "SPAs4dddXut" + }, + { + "id": "X1F29jvUsi0" + }, + { + "id": "KuHpVjsOQKx" + }, + { + "id": "ZJFWAWtxBVA" + }, + { + "id": "lbHoYiePn1V" + }, + { + "id": "EkYGK1boXsk" + }, + { + "id": "rOEwFMdYGU3" + }, + { + "id": "tbuqWJKRUXS" + }, + { + "id": "JwCdtXKTTK1" + }, + { + "id": "V2fVPSSzIOd" + }, + { + "id": "prCGBlfdmBK" + }, + { + "id": "he4BYAzAAfX" + }, + { + "id": "VzS1TbWvOYU" + }, + { + "id": "H61EFQrcLkp" + }, + { + "id": "wY6kS8VVWH9" + }, + { + "id": "V5c6mo2oDxP" + }, + { + "id": "EEgOAHnVBPh" + }, + { + "id": "i2ZxgolQtwL" + }, + { + "id": "j6dSWJ3QikR" + }, + { + "id": "ngSl2T34kx8" + }, + { + "id": "F9mySvLgUiB" + }, + { + "id": "vJ6enc1w0lu" + }, + { + "id": "j21YQgQ9GzP" + }, + { + "id": "sx3u16x80nV" + }, + { + "id": "LVapJ1Do3Nt" + }, + { + "id": "Ap9HpZcuUIw" + }, + { + "id": "Y7lX4ySLvni" + }, + { + "id": "S17lTK4VVeE" + }, + { + "id": "yfmzqRIgKth" + }, + { + "id": "o10H9LYYGZX" + }, + { + "id": "MysvJzZ0ADY" + }, + { + "id": "s8mcd0VkZjn" + }, + { + "id": "oxiytSdX9Xn" + }, + { + "id": "U7QVs96PsSu" + }, + { + "id": "Fp4PJVzgmDZ" + }, + { + "id": "qFz7OICuv0Z" + }, + { + "id": "uhLnCuMwCGm" + }, + { + "id": "VLskkRRCPef" + }, + { + "id": "bnlJeV2gepK" + }, + { + "id": "KLFLwpmZLYl" + }, + { + "id": "lkud0aMZAs0" + }, + { + "id": "fGPIkhFU9gZ" + }, + { + "id": "jDXghbrVqW9" + }, + { + "id": "SJ88ViIZtZf" + }, + { + "id": "s1ctBzp8ut9" + }, + { + "id": "lUJJSQQ4e3m" + }, + { + "id": "jQqLIn3xasU" + }, + { + "id": "EgYbpH9AslA" + }, + { + "id": "VAs3JJtHIs0" + }, + { + "id": "fztYfIH4hSy" + }, + { + "id": "IWFrV7VrJuu" + }, + { + "id": "A25iL9Ir3U0" + }, + { + "id": "vWK7BsPJK05" + }, + { + "id": "iZsmTBBoaQJ" + }, + { + "id": "yrPacW5BotF" + }, + { + "id": "k0o1m2V1tFI" + }, + { + "id": "Y77o2D3VwQR" + }, + { + "id": "bMkvQ4PSTz3" + }, + { + "id": "jEIJae2BtTG" + }, + { + "id": "bgOEJC1SROA" + }, + { + "id": "Vva8jEdMGyx" + }, + { + "id": "Q9yv4UvymT4" + }, + { + "id": "S2oEOoLxitZ" + }, + { + "id": "YEgJBndPbIM" + }, + { + "id": "S600AfMQbKQ" + }, + { + "id": "IE7FRLKRfVV" + }, + { + "id": "Y1jJoXL4Hj7" + }, + { + "id": "C4uarIaLXeW" + }, + { + "id": "QwFzPJDIL4s" + }, + { + "id": "WxYtSjitrsK" + }, + { + "id": "HC99MmWb4FY" + }, + { + "id": "BAJrVjxh8K9" + }, + { + "id": "PiYRwg1gzqV" + }, + { + "id": "ahgn5DHCw1M" + }, + { + "id": "pMXhaBdpYUL" + }, + { + "id": "PcXvX2I0Z1b" + }, + { + "id": "UdKHt4kcT0M" + }, + { + "id": "zviFqMz7XAf" + }, + { + "id": "pbEHv92gnci" + }, + { + "id": "Ygknknrfxvu" + }, + { + "id": "b449dBrOSFK" + }, + { + "id": "eQpb7Ho5x2O" + }, + { + "id": "vsG6W671YoN" + }, + { + "id": "bB5hQrGwaD1" + }, + { + "id": "ZNQ7Du0SMoQ" + }, + { + "id": "pbUGL3XO9V8" + }, + { + "id": "dXptXxZmlWw" + }, + { + "id": "NZkmbtZAFtN" + }, + { + "id": "d1kXlTczBQO" + }, + { + "id": "AXgnJb5b1Je" + }, + { + "id": "PwBF9kiGSTp" + }, + { + "id": "gMDoZ8IxLFd" + }, + { + "id": "sZfMjxTAjRd" + }, + { + "id": "db1Qfx9p1Bf" + }, + { + "id": "IRTgxWQOQ8v" + }, + { + "id": "FaLnUSglZDP" + }, + { + "id": "uSC1ybGUEIW" + }, + { + "id": "zjOFUnSP4cf" + }, + { + "id": "JhWtBLlXgxP" + }, + { + "id": "DldnIb3tYwA" + }, + { + "id": "rvc2EzhNwTy" + }, + { + "id": "YSO87QL7UuD" + }, + { + "id": "oEsLwo2ah7U" + }, + { + "id": "nosZSeJC3Gl" + }, + { + "id": "rkF9T1IfEZD" + }, + { + "id": "H0mzaMCOq2e" + }, + { + "id": "G6rjm7iNazk" + }, + { + "id": "La7qhX47tpb" + }, + { + "id": "blmd5n5wfkK" + }, + { + "id": "ZD0HUpjYf98" + }, + { + "id": "lYKDjAH090w" + }, + { + "id": "KMTXoNkoiAc" + }, + { + "id": "E0Tnnapx4G5" + }, + { + "id": "S0myvujdp96" + }, + { + "id": "h36QRTxHjMG" + }, + { + "id": "YUSpF39nFJp" + }, + { + "id": "rIjuchPHhSU" + }, + { + "id": "yGOZKtVYLGz" + } + ], + "categoryOptionGroups": [ + { + "id": "EVYKU2fIc6G" + } + ], + "code": "M", + "dimensionItem": "MP15bHaQh2x", + "dimensionItemType": "CATEGORY_OPTION", + "externalAccess": false, + "favorite": false, + "id": "MP15bHaQh2x", + "isDefault": false, + "legendSets": [], + "name": "Male", + "organisationUnits": [], + "periodOffset": 0, + "publicAccess": "r-r-----", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-r-----", + "userGroups": {}, + "users": {} + }, + "shortName": "Male", + "translations": [ + { + "locale": "cs", + "property": "NAME", + "value": "muž" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Masculino" + }, + { + "locale": "ar", + "property": "NAME", + "value": "ذكور" + }, + { + "locale": "ru", + "property": "NAME", + "value": "мужской" + }, + { + "locale": "ar", + "property": "SHORT_NAME", + "value": "ذكور" + }, + { + "locale": "uz", + "property": "SHORT_NAME", + "value": "Эркак" + }, + { + "locale": "uz_UZ", + "property": "NAME", + "value": "Erkak" + }, + { + "locale": "id", + "property": "NAME", + "value": "Laki-laki" + }, + { + "locale": "nb", + "property": "SHORT_NAME", + "value": "Mann" + }, + { + "locale": "es", + "property": "NAME", + "value": "Masculino" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Masculin" + }, + { + "locale": "uz", + "property": "NAME", + "value": "Эркак" + }, + { + "locale": "uz_UZ", + "property": "SHORT_NAME", + "value": "Erkak" + }, + { + "locale": "ru", + "property": "SHORT_NAME", + "value": "мужской" + }, + { + "locale": "fr", + "property": "NAME", + "value": "Masculin" + }, + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "muž" + }, + { + "locale": "es", + "property": "SHORT_NAME", + "value": "Masculino" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "Masculino" + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "Laki-laki" + }, + { + "locale": "nb", + "property": "NAME", + "value": "Mann" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categories": [ + { + "id": "Xaol8a2c51w" + } + ], + "categoryOptionCombos": [ + { + "id": "WPJQS4ogrRm" + } + ], + "categoryOptionGroups": [], + "code": "RES_FOCI", + "dimensionItem": "mmepRq1pnwq", + "dimensionItemType": "CATEGORY_OPTION", + "externalAccess": false, + "favorite": false, + "id": "mmepRq1pnwq", + "isDefault": false, + "legendSets": [], + "name": "Residual foci", + "organisationUnits": [], + "periodOffset": 0, + "publicAccess": "r-r-----", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-r-----", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-r-----", + "id": "ZXEVDM9XRea" + }, + "fRSrUJ6SMGH": { + "access": "--rw----", + "id": "fRSrUJ6SMGH" + }, + "suMb19wGXPR": { + "access": "rwr-----", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Residual", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rwr-----", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-r-----", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + }, + { + "access": "--rw----", + "id": "fRSrUJ6SMGH", + "userGroupUid": "fRSrUJ6SMGH" + } + ] + } + ], + "constants": [], + "dashboards": [ + { + "attributeValues": [], + "code": "MAL_STOCK", + "dashboardItems": [ + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 4, + "id": "kGpjb3QJC47", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "text": "SPACER_ITEM_FOR_DASHBOARD_LAYOUT_CONVENIENCE", + "translations": [], + "type": "TEXT", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 57, + "x": 0, + "y": 199 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 12, + "id": "pyIjHs9i63n", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "text": "*DEFINITIONS:*\nClosing balance = Opening balance + Received - Distributed - Redistributed - Discarded -->Automatically calculated indicator to count the remaining items at the end of the period\nStock on hand = physical stock count at the end of the period\nUsable stock = Opening balance + received\nCoverage time = Usable stock / Distributed + Discarded + Redistributed = nb. of months\n\nStock discrepancy = Stock on hand - closing balance\nIf discrepancy = 0 and 9 --> Stock on hand = closing balance (green cell) - acceptable discrepancy -\nIf discrepancy < 0 --> closing balance > stock on hand (dark red cell)\nIf discrepancy > 9 --> closing balance < stock on hand (light red cell)", + "translations": [], + "type": "TEXT", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 57, + "x": 0, + "y": 0 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 13, + "id": "k2VLrBTOikW", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "q4lZvYKBohV" + }, + "width": 27, + "x": 0, + "y": 12 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 13, + "id": "Muv3LenY6qJ", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "PNoYjlfeAfD" + }, + "width": 9, + "x": 27, + "y": 12 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 36, + "id": "VIOIFEVWS9N", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "map": { + "id": "Iwk0AIqANFI" + }, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "MAP", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 10, + "x": 36, + "y": 12 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 36, + "id": "Aev0r0LDNjh", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "map": { + "id": "ftdO69wPX7n" + }, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "MAP", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 11, + "x": 46, + "y": 12 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 23, + "id": "svuxlng6Mtv", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "wBjmnGxpBhy" + }, + "width": 17, + "x": 0, + "y": 25 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 23, + "id": "rp1Nf2HU6U5", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "u5O5Io0rtav" + }, + "width": 19, + "x": 17, + "y": 25 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 4, + "id": "Uh09vUgyCDT", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "text": "SPACER_ITEM_FOR_DASHBOARD_LAYOUT_CONVENIENCE", + "translations": [], + "type": "TEXT", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 57, + "x": 0, + "y": 48 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 14, + "id": "yPP4bTUOTqn", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "UIgM3wfpuDv" + }, + "width": 27, + "x": 0, + "y": 52 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 14, + "id": "yUXqXSvSBtD", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "WdMfLZwEGih" + }, + "width": 9, + "x": 27, + "y": 52 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 34, + "id": "tmO9m2RRJhj", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "map": { + "id": "Oj0tAh55DjD" + }, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "MAP", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 11, + "x": 36, + "y": 52 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 34, + "id": "XG6MN6syUck", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "map": { + "id": "Hl08cF6zvw1" + }, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "MAP", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 10, + "x": 47, + "y": 52 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "qei9qQjBkxZ", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "U78hxMa95Zb" + }, + "width": 17, + "x": 0, + "y": 66 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "oZ975ZEZupX", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "DxEj12FUBH7" + }, + "width": 19, + "x": 17, + "y": 66 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 4, + "id": "GaWVjLlMSfB", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "text": "SPACER_ITEM_FOR_DASHBOARD_LAYOUT_CONVENIENCE", + "translations": [], + "type": "TEXT", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 57, + "x": 0, + "y": 86 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 15, + "id": "FRWuYTs5TgV", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "rhDXNWkNwBS" + }, + "width": 23, + "x": 0, + "y": 90 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 15, + "id": "WiSMgIcCctv", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "oODq4oDEcBU" + }, + "width": 7, + "x": 23, + "y": 90 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 35, + "id": "ZlTd3JkvNlK", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "map": { + "id": "KF5vZLVpYJv" + }, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "MAP", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 15, + "x": 30, + "y": 90 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 35, + "id": "o8kpa2O2Krr", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "map": { + "id": "uwxMr52SxjE" + }, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "MAP", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 12, + "x": 45, + "y": 90 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "ioh26RzeQRL", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "crtJKEjULHN" + }, + "width": 30, + "x": 0, + "y": 105 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 4, + "id": "PlUMIKlHe5L", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "text": "SPACER_ITEM_FOR_DASHBOARD_LAYOUT_CONVENIENCE", + "translations": [], + "type": "TEXT", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 57, + "x": 0, + "y": 125 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 14, + "id": "nXsNhBLcWT9", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "J2wuAUXZeYw" + }, + "width": 25, + "x": 0, + "y": 129 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 14, + "id": "xgcRO3zEwJp", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "hxigEHxwMss" + }, + "width": 8, + "x": 25, + "y": 129 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 33, + "id": "zwsXrkc8UVH", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "map": { + "id": "L2DpofVDPFY" + }, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "MAP", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 12, + "x": 33, + "y": 129 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 33, + "id": "QvGcfBfFlnL", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "map": { + "id": "upKEZrMval4" + }, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "MAP", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 12, + "x": 45, + "y": 129 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 19, + "id": "nH8bRFnbhPn", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "dGDFOvzgkdw" + }, + "width": 33, + "x": 0, + "y": 143 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 4, + "id": "EuYjGzt8Uw8", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "text": "SPACER_ITEM_FOR_DASHBOARD_LAYOUT_CONVENIENCE", + "translations": [], + "type": "TEXT", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 57, + "x": 0, + "y": 162 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 14, + "id": "ToJSy6zI02J", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "vBv9CkukHXr" + }, + "width": 21, + "x": 0, + "y": 166 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 14, + "id": "jQnb389gven", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "uDKGtAjZyQn" + }, + "width": 6, + "x": 21, + "y": 166 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 33, + "id": "c2RoT9os4RY", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "map": { + "id": "oUX9xgrBW5w" + }, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "MAP", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 15, + "x": 27, + "y": 166 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 33, + "id": "zBl0EJIY6bx", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "map": { + "id": "xp7wFqgHXfa" + }, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "MAP", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 15, + "x": 42, + "y": 166 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 19, + "id": "UB65VbSz2q7", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "I6ItxljZV76" + }, + "width": 27, + "x": 0, + "y": 180 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 14, + "id": "zuGKeuqpq0h", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "hg3TLfpnmMK" + }, + "width": 22, + "x": 0, + "y": 203 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 14, + "id": "LyhZh68HU4n", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "KJ6MBCbC77f" + }, + "width": 6, + "x": 22, + "y": 203 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 34, + "id": "DHXbx139PR8", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "map": { + "id": "A6jfttWWf26" + }, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "MAP", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 14, + "x": 28, + "y": 203 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 34, + "id": "DRSRr6hgI5V", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "map": { + "id": "hiqBHfHKDsf" + }, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "MAP", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 15, + "x": 42, + "y": 203 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "Ko1VSolPyG6", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "Y50TU1bYMgG" + }, + "width": 28, + "x": 0, + "y": 217 + } + ], + "externalAccess": false, + "favorite": false, + "id": "rGl6NA03QF9", + "itemCount": 38, + "name": "Malaria stock", + "publicAccess": "rw------", + "restrictFilters": false, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "code": "MAL_TRENDS_COVERAGE", + "dashboardItems": [ + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 18, + "id": "FE6Gs0kiknP", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "yJNAGE2iN7e" + }, + "width": 29, + "x": 0, + "y": 0 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 18, + "id": "iG90O2UgrG0", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "odF8xIAXyzh" + }, + "width": 29, + "x": 29, + "y": 0 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 18, + "id": "CpeqQWlVPlI", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "iSZUMq4XZyd" + }, + "width": 29, + "x": 29, + "y": 18 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 18, + "id": "xnIYGQ09XTW", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "Xx6WI5IfnoQ" + }, + "width": 29, + "x": 0, + "y": 18 + } + ], + "externalAccess": false, + "favorite": false, + "id": "Ly3jbrmhRpB", + "itemCount": 4, + "name": "Malaria Trends and Coverage", + "publicAccess": "--------", + "restrictFilters": false, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Tendances et couvertures" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_BR", + "dashboardItems": [ + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "bndKqtV1ZGl", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "bIwPfcT9JVN" + }, + "width": 58, + "x": 0, + "y": 0 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "imp9cY9m5EA", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "QqZNdTABzsZ" + }, + "width": 29, + "x": 29, + "y": 20 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "COP5m9xs6iY", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "tq6l6xuECZo" + }, + "width": 29, + "x": 29, + "y": 40 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 21, + "id": "x2O1LS4MZx7", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "Q0H2GvXlpYB" + }, + "width": 29, + "x": 0, + "y": 100 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "GBuwmMa1iGE", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "mmdI4h7KdLL" + }, + "width": 29, + "x": 0, + "y": 40 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "Jx1yxCt3wvY", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "pnEMZYfUAZt" + }, + "width": 29, + "x": 0, + "y": 60 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "zmF1CHyKwiL", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "SKJkOTlS8vN" + }, + "width": 29, + "x": 29, + "y": 60 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "NGkPe7Z2xco", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "XG7LBCz7nQn" + }, + "width": 29, + "x": 0, + "y": 80 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "eEluY5AA8eb", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "eqbjzgCFSFs" + }, + "width": 29, + "x": 29, + "y": 80 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "iFoBSxTa8n3", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "wSudey0Yc2R" + }, + "width": 29, + "x": 0, + "y": 20 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 21, + "id": "VMJj8auur7X", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "qo7xD7OTGcF" + }, + "width": 29, + "x": 29, + "y": 100 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 21, + "id": "pVa6oAu2DFk", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "Cyy6FR0wEGe" + }, + "width": 17, + "x": 0, + "y": 121 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 21, + "id": "ukizcelacKo", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "GmqjzU8Crmi" + }, + "width": 17, + "x": 17, + "y": 121 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 21, + "id": "g3Iv72l0jO5", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "uZ03Z5GgJJ0" + }, + "width": 29, + "x": 0, + "y": 142 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 21, + "id": "CnpABmw7iMA", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "wleqcZVkF9U" + }, + "width": 24, + "x": 34, + "y": 121 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 21, + "id": "jpEIVXB1NNd", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "T4eg1e5rjXE" + }, + "width": 29, + "x": 0, + "y": 163 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 21, + "id": "DFhKOg6whQd", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "d1RmmimorCK" + }, + "width": 29, + "x": 29, + "y": 142 + } + ], + "externalAccess": false, + "favorite": false, + "id": "sLldHZZgnFx", + "itemCount": 17, + "name": "MAL - Malaria Burden Reduction", + "publicAccess": "r-------", + "restrictFilters": false, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Réduction de fardeau" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_DQ", + "dashboardItems": [ + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 19, + "id": "GONrBVSt5F7", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "sgTE8MwRu38" + }, + "width": 22, + "x": 36, + "y": 19 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 19, + "id": "BqvKizpoIsa", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "g6am8vrCpkm" + }, + "width": 22, + "x": 36, + "y": 0 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "TOJLkiaKGuU", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "Nd1Vpv1eWuy" + }, + "width": 29, + "x": 29, + "y": 76 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 19, + "id": "OlTklTLg7pU", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "uvzNDbkmNEp" + }, + "width": 29, + "x": 0, + "y": 96 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 19, + "id": "iwectp2cms7", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "bmGtBDNFQUQ" + }, + "width": 29, + "x": 29, + "y": 96 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "KcEKWoKLWHf", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "j8AshcRp31c" + }, + "width": 29, + "x": 0, + "y": 76 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 19, + "id": "JEKL2piQ2vy", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "wyHtEhO9WJx" + }, + "width": 29, + "x": 0, + "y": 57 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 19, + "id": "XW8Rdv3YHwk", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "MqF4vunDaSH" + }, + "width": 36, + "x": 0, + "y": 19 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 19, + "id": "Y4uYGqBTfS1", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "XHJUbmzHSK0" + }, + "width": 29, + "x": 0, + "y": 38 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 19, + "id": "g3uCUO2DaDo", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "uGfyrJEQAWx" + }, + "width": 29, + "x": 29, + "y": 38 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 19, + "id": "dAjnVAES0su", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "L6B1ookZQMW" + }, + "width": 29, + "x": 29, + "y": 57 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 24, + "id": "gFSsBtLc6oC", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "UCT3c9PPCQZ" + }, + "width": 58, + "x": 0, + "y": 115 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 19, + "id": "eLIsIGsfy1P", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "p29zcNGL0Aj" + }, + "width": 36, + "x": 0, + "y": 0 + } + ], + "externalAccess": false, + "favorite": false, + "id": "xRjeIawqMbW", + "itemCount": 13, + "name": "MAL - Malaria Data Quality", + "publicAccess": "r-------", + "restrictFilters": false, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "fRSrUJ6SMGH": { + "access": "r-------", + "id": "fRSrUJ6SMGH" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "r-------", + "id": "fRSrUJ6SMGH", + "userGroupUid": "fRSrUJ6SMGH" + }, + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_EL", + "dashboardItems": [ + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "JIwgBYsqp5J", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "bIwPfcT9JVN" + }, + "width": 29, + "x": 0, + "y": 0 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "xQiwj7LABJm", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "PvxM8Xg87Nj" + }, + "width": 29, + "x": 29, + "y": 0 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "X3DsfWcC2Cz", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "sV93XsyzYKh" + }, + "width": 29, + "x": 0, + "y": 20 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "BkQyoFMYVei", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "E0Ct7kfn7ah" + }, + "width": 29, + "x": 29, + "y": 20 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "PLRIsIlzbW2", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "uE5LUxEM6sT" + }, + "width": 29, + "x": 0, + "y": 40 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "khbUS36sTys", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "hQwk2byL539" + }, + "width": 29, + "x": 29, + "y": 40 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "efZGfuQaLQO", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "teaDKAvi59w" + }, + "width": 29, + "x": 0, + "y": 60 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "UWm7wNOGTHG", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "aBCOG3NeVon" + }, + "width": 29, + "x": 29, + "y": 60 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 21, + "id": "G91X6FRCnJt", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "V5hgP357C9f" + }, + "width": 20, + "x": 0, + "y": 80 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 21, + "id": "agFPpsXbwRH", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "jsaymgD3TfZ" + }, + "width": 19, + "x": 20, + "y": 80 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 21, + "id": "fdfVdMcKAKH", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "oRXnqWYlWP5" + }, + "width": 19, + "x": 39, + "y": 80 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "LYvhzMB6lXG", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "SxiXWx4gFQN" + }, + "width": 25, + "x": 0, + "y": 101 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "IfIz0OvA2SN", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "lFI58Q1aW8Q" + }, + "width": 16, + "x": 25, + "y": 101 + } + ], + "externalAccess": false, + "favorite": false, + "id": "b8F1kKlV9Fk", + "itemCount": 13, + "name": "MAL - Malaria Elimination", + "publicAccess": "r-------", + "restrictFilters": false, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Élimination" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_MAPS", + "dashboardItems": [ + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 29, + "id": "DU6QNCEaZBx", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "map": { + "id": "uNj85CCHumE" + }, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "MAP", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 28, + "x": 0, + "y": 0 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 29, + "id": "e7GxLaKwTNk", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "map": { + "id": "XFGdbwY5OA9" + }, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "MAP", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 29, + "x": 29, + "y": 29 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 29, + "id": "VEpAXSbCpZk", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "map": { + "id": "R2aoozdWrnW" + }, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "MAP", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 29, + "x": 0, + "y": 29 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 29, + "id": "VJ0s3O43N5M", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "map": { + "id": "ZEBh5DFbW73" + }, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "MAP", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "width": 29, + "x": 29, + "y": 0 + } + ], + "externalAccess": false, + "favorite": false, + "id": "VUUrmGS7x42", + "itemCount": 4, + "name": "MAL - Malaria Maps", + "publicAccess": "--------", + "restrictFilters": false, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Cartes" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_QC", + "dashboardItems": [ + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "ekPnvSKp0Y2", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "Mbgcb9pdFR1" + }, + "width": 29, + "x": 0, + "y": 0 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "CdC9ijmEL83", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "uX3m5YW9cuM" + }, + "width": 29, + "x": 29, + "y": 0 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "iap2hP85T9J", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "zbZhaW2GXQV" + }, + "width": 29, + "x": 0, + "y": 20 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "kbiZhonjStw", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "zt23Bi5f3F3" + }, + "width": 29, + "x": 29, + "y": 20 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "xHlTUgbgtkD", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "v5tVurZ9vUf" + }, + "width": 29, + "x": 0, + "y": 40 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 20, + "id": "v4xhUMI9Kf2", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "NORMAL", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "tU3rJIp9STm" + }, + "width": 29, + "x": 29, + "y": 40 + }, + { + "attributeValues": [], + "contentCount": 1, + "externalAccess": false, + "favorite": false, + "favorites": [], + "height": 22, + "id": "ow9Vb2YzuM6", + "interpretationCount": 0, + "interpretationLikeCount": 0, + "reports": [], + "resources": [], + "shape": "FULL_WIDTH", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "type": "VISUALIZATION", + "userAccesses": [], + "userGroupAccesses": [], + "users": [], + "visualization": { + "id": "yieNDIkKEu2" + }, + "width": 58, + "x": 0, + "y": 60 + } + ], + "externalAccess": false, + "favorite": false, + "id": "GEq9y3pVbrb", + "itemCount": 7, + "name": "MAL - Malaria Quality Control", + "publicAccess": "r-------", + "restrictFilters": false, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Contrôle de la qualité" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + } + ], + "dataElementGroups": [ + { + "aggregationType": "SUM", + "attributeValues": [], + "code": "MAL_YEARLY", + "dataElements": [ + { + "id": "tpz77FcntKx" + }, + { + "id": "MJFRkoiH4KQ" + }, + { + "id": "NywGy6uMS5r" + }, + { + "id": "cOVhTyW8zN6" + }, + { + "id": "EpyvZBsqMmM" + }, + { + "id": "WBmvvafUwT8" + }, + { + "id": "FRbgzTZ74Hh" + }, + { + "id": "dFaBg0HpoIL" + }, + { + "id": "UH47dKFqTRK" + } + ], + "dimensionItem": "SUfd3Z4AILC", + "dimensionItemType": "DATA_ELEMENT_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [], + "id": "SUfd3Z4AILC", + "legendSets": [], + "name": "Malaria annual data", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Malaria annual data", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "aggregationType": "SUM", + "attributeValues": [], + "code": "MAL_BR", + "dataElements": [ + { + "id": "jtyuEfbNbkb" + }, + { + "id": "QUk2XwhVL7n" + }, + { + "id": "d7vgVlFnviU" + }, + { + "id": "WoVoIProU89" + }, + { + "id": "cE8SDxizo5s" + }, + { + "id": "BjDrgVrkBI3" + }, + { + "id": "M91K9z70dl4" + }, + { + "id": "vTRrNdOOT9g" + }, + { + "id": "l7gcisIvTBN" + }, + { + "id": "WNcIBqTodHr" + }, + { + "id": "yHS1RqIFeD7" + }, + { + "id": "GxlrIgMyEf4" + }, + { + "id": "YcZAfNmFuje" + }, + { + "id": "VL73cqNHxBJ" + }, + { + "id": "IUrl6HtHVQI" + }, + { + "id": "SXGjaEobp6V" + }, + { + "id": "Ae0TUkWm1wo" + }, + { + "id": "enVf9I39FRZ" + }, + { + "id": "OCuA0tI3BCi" + }, + { + "id": "GVkqWp9gP5b" + }, + { + "id": "QJUcVI1zY5y" + }, + { + "id": "iMcQ1MedqGo" + }, + { + "id": "kRasaq1REFp" + }, + { + "id": "vCwegNjEuxN" + }, + { + "id": "GEgULJaUkyQ" + }, + { + "id": "lYsfXxCw6Qi" + }, + { + "id": "jvjJ901K56K" + }, + { + "id": "SPhiBDEbG0o" + }, + { + "id": "DPNsg3wjxGm" + }, + { + "id": "lgDGha7OO9o" + }, + { + "id": "rY7FJXnqwkM" + }, + { + "id": "yVGY0DGVPor" + }, + { + "id": "S9nIxTMWplW" + }, + { + "id": "t4FqHKzAyEn" + }, + { + "id": "nwzSeTAxCGV" + }, + { + "id": "rbqe6Td5rNI" + }, + { + "id": "pmRn0GsUfr6" + }, + { + "id": "llpG8qA0SvG" + }, + { + "id": "qokS11KT7gD" + }, + { + "id": "YG5uCKZRilL" + }, + { + "id": "h9DNhuHHgkH" + }, + { + "id": "n0tgQ4PjnnT" + }, + { + "id": "LhcXjWs6lm7" + }, + { + "id": "v0WZQQ6gKAX" + } + ], + "dimensionItem": "eFOVgJWE7qF", + "dimensionItemType": "DATA_ELEMENT_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [], + "id": "eFOVgJWE7qF", + "legendSets": [], + "name": "Malaria burden reduction", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria burden reduction", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "aggregationType": "SUM", + "attributeValues": [], + "code": "MAL_CROSS_BORDERS", + "dataElements": [ + { + "id": "CxI1FHE4oEh" + }, + { + "id": "wAHUeGPbH9A" + }, + { + "id": "S3AqkeU4DET" + }, + { + "id": "UwaQ0MJzXBz" + }, + { + "id": "CWHBMa4nC9J" + }, + { + "id": "kdMT3AuDzj1" + } + ], + "dimensionItem": "dNNpRuO7kbn", + "dimensionItemType": "DATA_ELEMENT_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [], + "id": "dNNpRuO7kbn", + "legendSets": [], + "name": "Malaria cross borders and MMP", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria cross borders and MMP", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "aggregationType": "SUM", + "attributeValues": [], + "code": "MAL_EL", + "dataElements": [ + { + "id": "jtyuEfbNbkb" + }, + { + "id": "Qzfvt1YRb1Y" + }, + { + "id": "HHpmA3PRXlJ" + }, + { + "id": "Gq9q1I1t60k" + }, + { + "id": "g6T1sC2ZSFD" + }, + { + "id": "QUk2XwhVL7n" + }, + { + "id": "WoVoIProU89" + }, + { + "id": "kC0lyoKVBqC" + }, + { + "id": "cE8SDxizo5s" + }, + { + "id": "BjDrgVrkBI3" + }, + { + "id": "M91K9z70dl4" + }, + { + "id": "vTRrNdOOT9g" + }, + { + "id": "l7gcisIvTBN" + }, + { + "id": "koNkg93tcFv" + }, + { + "id": "WNcIBqTodHr" + }, + { + "id": "yHS1RqIFeD7" + }, + { + "id": "lZi1cjtvVB6" + }, + { + "id": "yMIgzlV9sES" + }, + { + "id": "GxlrIgMyEf4" + }, + { + "id": "YcZAfNmFuje" + }, + { + "id": "VL73cqNHxBJ" + }, + { + "id": "IUrl6HtHVQI" + }, + { + "id": "SXGjaEobp6V" + }, + { + "id": "UMD2TSAxtFr" + }, + { + "id": "lz1FE0wvo1m" + }, + { + "id": "mIefFUftPpa" + }, + { + "id": "ENIbHvgpaQR" + }, + { + "id": "enVf9I39FRZ" + }, + { + "id": "QJUcVI1zY5y" + }, + { + "id": "GVkqWp9gP5b" + }, + { + "id": "OCuA0tI3BCi" + }, + { + "id": "Eoc8cDA52c3" + }, + { + "id": "LH9FKWl1FfP" + }, + { + "id": "iMcQ1MedqGo" + }, + { + "id": "KNAg6VC23us" + }, + { + "id": "HMUc4RajgaC" + }, + { + "id": "kRasaq1REFp" + }, + { + "id": "jKGVvTehpps" + }, + { + "id": "Md3xk3vlABx" + }, + { + "id": "lYsfXxCw6Qi" + }, + { + "id": "jvjJ901K56K" + }, + { + "id": "Wm0uUlvGfOQ" + }, + { + "id": "a2hiTowGc0N" + }, + { + "id": "DPNsg3wjxGm" + }, + { + "id": "lgDGha7OO9o" + }, + { + "id": "kc07jdV2C3B" + }, + { + "id": "mDCNvNfweci" + }, + { + "id": "QFz6w4llj0h" + }, + { + "id": "lY309oiMifk" + }, + { + "id": "CHM9i82Xvid" + }, + { + "id": "yVGY0DGVPor" + }, + { + "id": "gSlR6YgWw45" + }, + { + "id": "S9nIxTMWplW" + }, + { + "id": "nwzSeTAxCGV" + }, + { + "id": "FyouhDzv0bP" + }, + { + "id": "a4Cw4iPcMrY" + }, + { + "id": "rbqe6Td5rNI" + }, + { + "id": "s9FmEvF0r4n" + }, + { + "id": "pmRn0GsUfr6" + }, + { + "id": "TMaDgAn60aR" + }, + { + "id": "hEQeamIKO5z" + }, + { + "id": "llpG8qA0SvG" + }, + { + "id": "h9DNhuHHgkH" + }, + { + "id": "ra1VTaKQK60" + }, + { + "id": "n0tgQ4PjnnT" + }, + { + "id": "oNqsWW6eD3L" + }, + { + "id": "EHbjdbiKtd8" + }, + { + "id": "EQOuTaSaFOn" + }, + { + "id": "Ppc51eaCPHb" + }, + { + "id": "LhcXjWs6lm7" + }, + { + "id": "vfIbhthFgHT" + }, + { + "id": "DYpakDmCvNG" + }, + { + "id": "v0WZQQ6gKAX" + } + ], + "dimensionItem": "kCWWv3fDtql", + "dimensionItemType": "DATA_ELEMENT_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [], + "id": "kCWWv3fDtql", + "legendSets": [], + "name": "Malaria elimination", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria elimination", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "aggregationType": "SUM", + "attributeValues": [], + "code": "MAL_OLD", + "dataElements": [ + { + "id": "tuOTgWfDO6m" + }, + { + "id": "TNTW2ruEVEu" + }, + { + "id": "pUC8tgzn0lV" + }, + { + "id": "X0luAFiy268" + }, + { + "id": "JkOyLRb3dpX" + }, + { + "id": "IIU1O0Z4l49" + } + ], + "dimensionItem": "x9ko6Zdd2Dm", + "dimensionItemType": "DATA_ELEMENT_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [], + "id": "x9ko6Zdd2Dm", + "legendSets": [], + "name": "Malaria old records only", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Malaria historical", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "aggregationType": "SUM", + "attributeValues": [], + "code": "MAL_STOCK", + "dataElements": [ + { + "id": "eCKSKNgHJqe" + }, + { + "id": "ZRUpLZ2HVEH" + }, + { + "id": "jynElcE3gF0" + }, + { + "id": "U4kmpM14xhJ" + }, + { + "id": "To2fZcY5oUS" + }, + { + "id": "KQvuAWwOPnE" + }, + { + "id": "VTunnWZqQCj" + }, + { + "id": "x4A99GZbg5k" + }, + { + "id": "N6uAJQjkRQl" + }, + { + "id": "GIhoITcc0jp" + }, + { + "id": "bbHPUFANq7c" + }, + { + "id": "VKFrxbEMwAw" + }, + { + "id": "l7gcisIvTBN" + }, + { + "id": "Rd02CjRNYDD" + }, + { + "id": "ruRmurEI4yM" + }, + { + "id": "ZnifKT2U88N" + }, + { + "id": "f7z0IhHVWBT" + }, + { + "id": "HOEMlLX5SMC" + }, + { + "id": "CBKXL15dSwQ" + }, + { + "id": "BdRI37FNDJs" + }, + { + "id": "CsJm4IsvXqg" + }, + { + "id": "EUOyugUvYYt" + }, + { + "id": "o3fW3Hgo9GO" + }, + { + "id": "B3ItBcjVieC" + }, + { + "id": "F7L5jVrWnHi" + }, + { + "id": "XXcN7bSRd7f" + }, + { + "id": "F7BWpIVSEpM" + }, + { + "id": "xysDfJ6oPMh" + }, + { + "id": "CPBuuIiDnn8" + }, + { + "id": "YnKOG0WVtlq" + }, + { + "id": "Pw7sgDi5Pge" + }, + { + "id": "Qv9b5QAOO0F" + }, + { + "id": "OpiuZiAzEwQ" + }, + { + "id": "kWYOd8bSSqJ" + }, + { + "id": "ImjPjbE2rFm" + }, + { + "id": "uFwkuqBgI29" + }, + { + "id": "L9wnSDBRClO" + }, + { + "id": "oIi0Ybn06e2" + }, + { + "id": "cS2FTLczEz0" + }, + { + "id": "d9YgyZpkUW4" + }, + { + "id": "XRIzH1a19DU" + }, + { + "id": "GHtprEGbFWE" + }, + { + "id": "RJkNUMqVTRC" + }, + { + "id": "vBAWCLJpF6r" + }, + { + "id": "mTR90t8ea5x" + }, + { + "id": "iaQuylCoH3u" + }, + { + "id": "EJNvrRkptkJ" + }, + { + "id": "pNalmL0t0uk" + }, + { + "id": "lPXaBt4ToQb" + }, + { + "id": "ViRibye0RWo" + }, + { + "id": "SldWQ0uCFA2" + }, + { + "id": "twoxyChxlC3" + }, + { + "id": "C3vtx1aie2U" + }, + { + "id": "NFMzN9Up5zQ" + }, + { + "id": "RRA1O37nLn0" + }, + { + "id": "zM1vd2VeCss" + }, + { + "id": "THsfR427giB" + }, + { + "id": "kk2ClooVm41" + }, + { + "id": "We2VNUVFxso" + }, + { + "id": "GDBHGyXJI2T" + }, + { + "id": "DEasiq2eO60" + } + ], + "dimensionItem": "cWFV4unGXXn", + "dimensionItemType": "DATA_ELEMENT_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [], + "id": "cWFV4unGXXn", + "legendSets": [], + "name": "Malaria stock", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria stock", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "aggregationType": "SUM", + "attributeValues": [], + "code": "MAL", + "dataElements": [ + { + "id": "jtyuEfbNbkb" + }, + { + "id": "Gq9q1I1t60k" + }, + { + "id": "QUk2XwhVL7n" + }, + { + "id": "AFoWbafBOac" + }, + { + "id": "x4A99GZbg5k" + }, + { + "id": "WoVoIProU89" + }, + { + "id": "JkOyLRb3dpX" + }, + { + "id": "yHS1RqIFeD7" + }, + { + "id": "lZi1cjtvVB6" + }, + { + "id": "GxlrIgMyEf4" + }, + { + "id": "IUrl6HtHVQI" + }, + { + "id": "UMD2TSAxtFr" + }, + { + "id": "Ae0TUkWm1wo" + }, + { + "id": "lz1FE0wvo1m" + }, + { + "id": "mIefFUftPpa" + }, + { + "id": "ENIbHvgpaQR" + }, + { + "id": "enVf9I39FRZ" + }, + { + "id": "GVkqWp9gP5b" + }, + { + "id": "Eoc8cDA52c3" + }, + { + "id": "iMcQ1MedqGo" + }, + { + "id": "HMUc4RajgaC" + }, + { + "id": "WBmvvafUwT8" + }, + { + "id": "jKGVvTehpps" + }, + { + "id": "GEgULJaUkyQ" + }, + { + "id": "pUC8tgzn0lV" + }, + { + "id": "SPhiBDEbG0o" + }, + { + "id": "jvjJ901K56K" + }, + { + "id": "tuOTgWfDO6m" + }, + { + "id": "Wm0uUlvGfOQ" + }, + { + "id": "CxI1FHE4oEh" + }, + { + "id": "DPNsg3wjxGm" + }, + { + "id": "lgDGha7OO9o" + }, + { + "id": "mDCNvNfweci" + }, + { + "id": "QFz6w4llj0h" + }, + { + "id": "rY7FJXnqwkM" + }, + { + "id": "CHM9i82Xvid" + }, + { + "id": "yVGY0DGVPor" + }, + { + "id": "t4FqHKzAyEn" + }, + { + "id": "tpz77FcntKx" + }, + { + "id": "a4Cw4iPcMrY" + }, + { + "id": "rbqe6Td5rNI" + }, + { + "id": "s9FmEvF0r4n" + }, + { + "id": "pmRn0GsUfr6" + }, + { + "id": "qqc4NnWVFL9" + }, + { + "id": "qokS11KT7gD" + }, + { + "id": "h9DNhuHHgkH" + }, + { + "id": "n0tgQ4PjnnT" + }, + { + "id": "EHbjdbiKtd8" + }, + { + "id": "EQOuTaSaFOn" + }, + { + "id": "Ppc51eaCPHb" + }, + { + "id": "vfIbhthFgHT" + }, + { + "id": "X0luAFiy268" + }, + { + "id": "v0WZQQ6gKAX" + }, + { + "id": "Qzfvt1YRb1Y" + }, + { + "id": "HHpmA3PRXlJ" + }, + { + "id": "g6T1sC2ZSFD" + }, + { + "id": "MJFRkoiH4KQ" + }, + { + "id": "d7vgVlFnviU" + }, + { + "id": "kC0lyoKVBqC" + }, + { + "id": "UwaQ0MJzXBz" + }, + { + "id": "CWHBMa4nC9J" + }, + { + "id": "UH47dKFqTRK" + }, + { + "id": "cE8SDxizo5s" + }, + { + "id": "BjDrgVrkBI3" + }, + { + "id": "M91K9z70dl4" + }, + { + "id": "TNTW2ruEVEu" + }, + { + "id": "vTRrNdOOT9g" + }, + { + "id": "l7gcisIvTBN" + }, + { + "id": "koNkg93tcFv" + }, + { + "id": "WNcIBqTodHr" + }, + { + "id": "cOVhTyW8zN6" + }, + { + "id": "FRbgzTZ74Hh" + }, + { + "id": "yMIgzlV9sES" + }, + { + "id": "IIU1O0Z4l49" + }, + { + "id": "YcZAfNmFuje" + }, + { + "id": "VL73cqNHxBJ" + }, + { + "id": "SXGjaEobp6V" + }, + { + "id": "S3AqkeU4DET" + }, + { + "id": "QJUcVI1zY5y" + }, + { + "id": "OCuA0tI3BCi" + }, + { + "id": "LH9FKWl1FfP" + }, + { + "id": "KNAg6VC23us" + }, + { + "id": "kRasaq1REFp" + }, + { + "id": "dFaBg0HpoIL" + }, + { + "id": "vCwegNjEuxN" + }, + { + "id": "Md3xk3vlABx" + }, + { + "id": "lYsfXxCw6Qi" + }, + { + "id": "kdMT3AuDzj1" + }, + { + "id": "iaQuylCoH3u" + }, + { + "id": "a2hiTowGc0N" + }, + { + "id": "kc07jdV2C3B" + }, + { + "id": "lY309oiMifk" + }, + { + "id": "EpyvZBsqMmM" + }, + { + "id": "gSlR6YgWw45" + }, + { + "id": "S9nIxTMWplW" + }, + { + "id": "nwzSeTAxCGV" + }, + { + "id": "FyouhDzv0bP" + }, + { + "id": "wAHUeGPbH9A" + }, + { + "id": "NywGy6uMS5r" + }, + { + "id": "TMaDgAn60aR" + }, + { + "id": "hEQeamIKO5z" + }, + { + "id": "llpG8qA0SvG" + }, + { + "id": "YG5uCKZRilL" + }, + { + "id": "ra1VTaKQK60" + }, + { + "id": "oNqsWW6eD3L" + }, + { + "id": "LhcXjWs6lm7" + }, + { + "id": "DYpakDmCvNG" + } + ], + "dimensionItem": "ri242cU0Sm5", + "dimensionItemType": "DATA_ELEMENT_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [ + { + "id": "JBhtPI2Vn2D" + } + ], + "id": "ri242cU0Sm5", + "legendSets": [], + "name": "[OLD]Malaria", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria", + "translations": [ + { + "locale": "id", + "property": "NAME", + "value": "Malaria" + }, + { + "locale": "cs", + "property": "NAME", + "value": "Malárie" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "Malária" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Paludisme" + }, + { + "locale": "fr", + "property": "NAME", + "value": "Paludisme" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Malária" + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "Malaria" + }, + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "Malárie" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "aggregationType": "SUM", + "attributeValues": [], + "code": "MAL_INT", + "dataElements": [ + { + "id": "UH47dKFqTRK" + }, + { + "id": "NywGy6uMS5r" + }, + { + "id": "AFoWbafBOac" + } + ], + "dimensionItem": "tbQsD5xgWDH", + "dimensionItemType": "DATA_ELEMENT_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [], + "id": "tbQsD5xgWDH", + "legendSets": [], + "name": "[OLD]Malaria interventions", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria interventions", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "aggregationType": "SUM", + "attributeValues": [], + "code": "MAL_OTHER", + "dataElements": [ + { + "id": "tpz77FcntKx" + }, + { + "id": "qokS11KT7gD" + }, + { + "id": "d7vgVlFnviU" + }, + { + "id": "rY7FJXnqwkM" + }, + { + "id": "EpyvZBsqMmM" + }, + { + "id": "FRbgzTZ74Hh" + }, + { + "id": "S9nIxTMWplW" + } + ], + "dimensionItem": "cDz6fWn4n7M", + "dimensionItemType": "DATA_ELEMENT_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [], + "id": "cDz6fWn4n7M", + "legendSets": [], + "name": "[OLD]Malaria other", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria other", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "aggregationType": "SUM", + "attributeValues": [], + "code": "MAL_SUR", + "dataElements": [ + { + "id": "jtyuEfbNbkb" + }, + { + "id": "Qzfvt1YRb1Y" + }, + { + "id": "HHpmA3PRXlJ" + }, + { + "id": "Gq9q1I1t60k" + }, + { + "id": "kC0lyoKVBqC" + }, + { + "id": "UwaQ0MJzXBz" + }, + { + "id": "CWHBMa4nC9J" + }, + { + "id": "cE8SDxizo5s" + }, + { + "id": "JkOyLRb3dpX" + }, + { + "id": "BjDrgVrkBI3" + }, + { + "id": "TNTW2ruEVEu" + }, + { + "id": "vTRrNdOOT9g" + }, + { + "id": "koNkg93tcFv" + }, + { + "id": "WNcIBqTodHr" + }, + { + "id": "yHS1RqIFeD7" + }, + { + "id": "cOVhTyW8zN6" + }, + { + "id": "lZi1cjtvVB6" + }, + { + "id": "IIU1O0Z4l49" + }, + { + "id": "GxlrIgMyEf4" + }, + { + "id": "VL73cqNHxBJ" + }, + { + "id": "IUrl6HtHVQI" + }, + { + "id": "SXGjaEobp6V" + }, + { + "id": "UMD2TSAxtFr" + }, + { + "id": "S3AqkeU4DET" + }, + { + "id": "lz1FE0wvo1m" + }, + { + "id": "enVf9I39FRZ" + }, + { + "id": "QJUcVI1zY5y" + }, + { + "id": "GVkqWp9gP5b" + }, + { + "id": "Eoc8cDA52c3" + }, + { + "id": "LH9FKWl1FfP" + }, + { + "id": "iMcQ1MedqGo" + }, + { + "id": "KNAg6VC23us" + }, + { + "id": "HMUc4RajgaC" + }, + { + "id": "kRasaq1REFp" + }, + { + "id": "jKGVvTehpps" + }, + { + "id": "pUC8tgzn0lV" + }, + { + "id": "kdMT3AuDzj1" + }, + { + "id": "jvjJ901K56K" + }, + { + "id": "tuOTgWfDO6m" + }, + { + "id": "Wm0uUlvGfOQ" + }, + { + "id": "iaQuylCoH3u" + }, + { + "id": "a2hiTowGc0N" + }, + { + "id": "CxI1FHE4oEh" + }, + { + "id": "DPNsg3wjxGm" + }, + { + "id": "lgDGha7OO9o" + }, + { + "id": "mDCNvNfweci" + }, + { + "id": "QFz6w4llj0h" + }, + { + "id": "lY309oiMifk" + }, + { + "id": "yVGY0DGVPor" + }, + { + "id": "gSlR6YgWw45" + }, + { + "id": "nwzSeTAxCGV" + }, + { + "id": "FyouhDzv0bP" + }, + { + "id": "wAHUeGPbH9A" + }, + { + "id": "a4Cw4iPcMrY" + }, + { + "id": "rbqe6Td5rNI" + }, + { + "id": "s9FmEvF0r4n" + }, + { + "id": "pmRn0GsUfr6" + }, + { + "id": "TMaDgAn60aR" + }, + { + "id": "llpG8qA0SvG" + }, + { + "id": "ra1VTaKQK60" + }, + { + "id": "n0tgQ4PjnnT" + }, + { + "id": "oNqsWW6eD3L" + }, + { + "id": "EHbjdbiKtd8" + }, + { + "id": "EQOuTaSaFOn" + }, + { + "id": "Ppc51eaCPHb" + }, + { + "id": "LhcXjWs6lm7" + }, + { + "id": "DYpakDmCvNG" + }, + { + "id": "X0luAFiy268" + }, + { + "id": "v0WZQQ6gKAX" + } + ], + "dimensionItem": "O3Y4zr16OCX", + "dimensionItemType": "DATA_ELEMENT_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [], + "id": "O3Y4zr16OCX", + "legendSets": [], + "name": "[OLD]Malaria surveillance", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria surveillance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "aggregationType": "SUM", + "attributeValues": [], + "code": "MAL_TX", + "dataElements": [ + { + "id": "QUk2XwhVL7n" + }, + { + "id": "WoVoIProU89" + }, + { + "id": "SPhiBDEbG0o" + }, + { + "id": "OCuA0tI3BCi" + }, + { + "id": "M91K9z70dl4" + }, + { + "id": "h9DNhuHHgkH" + }, + { + "id": "l7gcisIvTBN" + }, + { + "id": "vCwegNjEuxN" + }, + { + "id": "YcZAfNmFuje" + }, + { + "id": "GEgULJaUkyQ" + }, + { + "id": "t4FqHKzAyEn" + } + ], + "dimensionItem": "QA59eN3tJve", + "dimensionItemType": "DATA_ELEMENT_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [], + "id": "QA59eN3tJve", + "legendSets": [], + "name": "[OLD]Malaria treatment", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria treatment", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "aggregationType": "SUM", + "attributeValues": [], + "code": "MAL_UNASSIGNED", + "dataElements": [ + { + "id": "HHpmA3PRXlJ" + }, + { + "id": "Eoc8cDA52c3" + }, + { + "id": "jtyuEfbNbkb" + }, + { + "id": "CxI1FHE4oEh" + }, + { + "id": "wAHUeGPbH9A" + }, + { + "id": "S3AqkeU4DET" + }, + { + "id": "UwaQ0MJzXBz" + }, + { + "id": "CWHBMa4nC9J" + }, + { + "id": "kdMT3AuDzj1" + } + ], + "dimensionItem": "ohX4B7Jq8QX", + "dimensionItemType": "DATA_ELEMENT_GROUP", + "externalAccess": false, + "favorite": false, + "groupSets": [], + "id": "ohX4B7Jq8QX", + "legendSets": [], + "name": "[OLD]Malaria unassigned", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Malaria unassigned", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "dataElements": [ + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "code": "GEN_ALL-CAUSE_DTH_CASES", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "ri242cU0Sm5" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "O3Y4zr16OCX" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "SXGjaEobp6V" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "dataElement": { + "id": "SXGjaEobp6V" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Deaths in health facility due to all health conditions", + "dimensionItem": "SXGjaEobp6V", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "All-cause deaths", + "id": "SXGjaEobp6V", + "legendSets": [], + "name": "GEN - All-cause death", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "All-cause deaths", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Décès toutes causes confondues" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "code": "GEN_ALL-CAUSE_IPD_CASES", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "ri242cU0Sm5" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "O3Y4zr16OCX" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "BjDrgVrkBI3" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "BjDrgVrkBI3" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Admissions or hospitalization in health facility for all health conditions excluding admission of pregnant women for delivery", + "dimensionItem": "BjDrgVrkBI3", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "All-cause admissions", + "id": "BjDrgVrkBI3", + "legendSets": [], + "name": "GEN - All-cause inpatient", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "All-cause admissions", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Admissions toutes causes confondues" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "code": "GEN_ALL-CAUSE_OPD_CASES", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "ri242cU0Sm5" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "O3Y4zr16OCX" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "VL73cqNHxBJ" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "VL73cqNHxBJ" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Outpatient consultations or visits for all health conditions in in health facility excluding antenatal care (ANC) for pregnant women", + "dimensionItem": "VL73cqNHxBJ", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "All-cause outpatient", + "id": "VL73cqNHxBJ", + "legendSets": [], + "name": "GEN - All-cause outpatient cases", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "All-cause outpatient", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas ambulatoires toutes causes confondues" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "GEN_DOMESTIC_FUND", + "dataElementGroups": [ + { + "id": "cDz6fWn4n7M" + }, + { + "id": "ri242cU0Sm5" + }, + { + "id": "SUfd3Z4AILC" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "EpyvZBsqMmM" + }, + "dataSet": { + "id": "qNtxTrp56wV" + } + } + ], + "dimensionItem": "EpyvZBsqMmM", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Domestic funding", + "id": "EpyvZBsqMmM", + "legendSets": [], + "name": "GEN - Domestic funding", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Domestic funding", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "GEN_EXT_FUND", + "dataElementGroups": [ + { + "id": "cDz6fWn4n7M" + }, + { + "id": "ri242cU0Sm5" + }, + { + "id": "SUfd3Z4AILC" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "tpz77FcntKx" + }, + "dataSet": { + "id": "qNtxTrp56wV" + } + } + ], + "dimensionItem": "tpz77FcntKx", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "External funding", + "id": "tpz77FcntKx", + "legendSets": [], + "name": "GEN - External funding", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "External funding", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "GEN_FUND_NEED", + "dataElementGroups": [ + { + "id": "cDz6fWn4n7M" + }, + { + "id": "ri242cU0Sm5" + }, + { + "id": "SUfd3Z4AILC" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "FRbgzTZ74Hh" + }, + "dataSet": { + "id": "qNtxTrp56wV" + } + } + ], + "dimensionItem": "FRbgzTZ74Hh", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Funding need (USD)", + "id": "FRbgzTZ74Hh", + "legendSets": [], + "name": "GEN - Funding need (USD)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Funding need (USD)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "AVERAGE_SUM_ORG_UNIT", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "GEN_PREG_EXPECT", + "dataElementGroups": [ + { + "id": "ri242cU0Sm5" + }, + { + "id": "SUfd3Z4AILC" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "WBmvvafUwT8" + }, + "dataSet": { + "id": "plY1s6t5AGo" + } + }, + { + "dataElement": { + "id": "WBmvvafUwT8" + }, + "dataSet": { + "id": "fYWqR9LDQi7" + } + }, + { + "dataElement": { + "id": "WBmvvafUwT8" + }, + "dataSet": { + "id": "qNtxTrp56wV" + } + } + ], + "dimensionItem": "WBmvvafUwT8", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Population expected pregnant women", + "id": "WBmvvafUwT8", + "legendSets": [], + "name": "GEN - Population expected pregnant women", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Pop expected pregnant", + "translations": [ + { + "locale": "pt", + "property": "NAME", + "value": "GEN - População esperada de gestantes" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "Pop espera grávida" + }, + { + "locale": "fr", + "property": "NAME", + "value": "GEN - Population attendue des femmes enceintes" + }, + { + "locale": "pt", + "property": "FORM_NAME", + "value": "População esperada de mulheres grávidas" + }, + { + "locale": "fr", + "property": "FORM_NAME", + "value": "Population attendue des femmes enceintes" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Population grossesse attendue" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": false + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "code": "MAL_POP_TOTAL", + "dataElementGroups": [ + { + "id": "ri242cU0Sm5" + }, + { + "id": "SUfd3Z4AILC" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "dFaBg0HpoIL" + }, + "dataSet": { + "id": "qNtxTrp56wV" + } + }, + { + "dataElement": { + "id": "dFaBg0HpoIL" + }, + "dataSet": { + "id": "plY1s6t5AGo" + } + } + ], + "description": "Total population for a given level.", + "dimensionItem": "dFaBg0HpoIL", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Population (total)", + "id": "dFaBg0HpoIL", + "legendSets": [], + "name": "GEN - Population with malaria age disaggregation", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Population with malaria age disaggregation", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Population (total)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_1STLINE_TREAT_COURS_RECV", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "QA59eN3tJve" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "OCuA0tI3BCi" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "OCuA0tI3BCi" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Number of full treatment course of 1st-line antimalarial medicine including ACTs received", + "dimensionItem": "OCuA0tI3BCi", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number 1st-line treatment courses received (incl. ACTs)", + "id": "OCuA0tI3BCi", + "legendSets": [], + "name": "MAL - 1st-line treatment courses received (incl. ACTs)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "1st-line treatment courses received (incl. ACTs)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre total de traitements d'antipaludique de 1ère ligne distrib. (inclus CTA)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_ACTS_COURS_RECV_BY_PATIENTS", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "QA59eN3tJve" + }, + { + "id": "cWFV4unGXXn" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "l7gcisIvTBN" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "dataElement": { + "id": "l7gcisIvTBN" + }, + "dataSet": { + "id": "tQc4Gv2Jwco" + } + }, + { + "dataElement": { + "id": "l7gcisIvTBN" + }, + "dataSet": { + "id": "zYgocFMVrxk" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "l7gcisIvTBN" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Number of ACT packs received by patients", + "dimensionItem": "l7gcisIvTBN", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "ACTs courses received by patients", + "id": "l7gcisIvTBN", + "legendSets": [], + "name": "MAL - ACTs courses received by patients", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACTs courses received by patients", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_ANC_VISIT", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "n0tgQ4PjnnT" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "dataElement": { + "id": "n0tgQ4PjnnT" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of antenatal care visits by pregnant women (ANC attendance)", + "dimensionItem": "n0tgQ4PjnnT", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of ANC 1st visits", + "id": "n0tgQ4PjnnT", + "legendSets": [], + "name": "MAL - ANC 1st visit (malaria)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "--------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": {}, + "users": {} + }, + "shortName": "ANC 1", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre de 1ère visites CPN" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_CASES_TREAT_ANY_ANTIMAL", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "QA59eN3tJve" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "YcZAfNmFuje" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "YcZAfNmFuje" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of malaria cases treated with any antimalarial medicine including ACTs", + "dimensionItem": "YcZAfNmFuje", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of cases treated with any antimalarial medicine (incl. ACT)", + "id": "YcZAfNmFuje", + "legendSets": [], + "name": "MAL - Cases treated with any antimalarial medicine (incl. ACT)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Case treated with any antimalarial (incl. ACTs)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre de cas traité par n'importe quel antipaludique de 1ère ligne (inclus CTA)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_CONFIRMED_TREATED_ACT", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "YG5uCKZRilL" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Number of confirmed cases treated with a course of ACT", + "dimensionItem": "YG5uCKZRilL", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Confirmed cases treated with ACT", + "id": "YG5uCKZRilL", + "legendSets": [], + "name": "MAL - Confirmed cases treated with ACT", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Confirmed cases treated with ACT", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "NUMBER", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_FOCI_IDENT_NEW_OLD", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "kC0lyoKVBqC" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of malaria foci identified (new+old) identified in the past 5 years (including current calendar year)", + "dimensionItem": "kC0lyoKVBqC", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Total foci (new+old) identified in the past 5 years (including current calendar year)", + "id": "kC0lyoKVBqC", + "legendSets": [], + "name": "MAL - Foci identified (new+old) in past 5 years (including current calendar year)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci identified, new and old (list of foci)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre de foyers identifiés (total)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "code": "MAL_FOCI_RESP_COMBI_INTERV", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "dataElement": { + "id": "UMD2TSAxtFr" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of foci that received a response with combination of interventions including treatment, LLINs/IRS or larval control targeting the population resident in the foci", + "dimensionItem": "UMD2TSAxtFr", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of foci responded with environmental", + "id": "UMD2TSAxtFr", + "legendSets": [], + "name": "MAL - Foci responded with a combination of interventions", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci responded intervention combo", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Foyers avec réponse combinaison d'intervention" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "code": "MAL_FOCI_RESP_LLIN", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "dataElement": { + "id": "Gq9q1I1t60k" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of foci that received a response with LLIN/Hummock targeting the population resident in the foci", + "dimensionItem": "Gq9q1I1t60k", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of foci responded with LLIN/hummock", + "id": "Gq9q1I1t60k", + "legendSets": [], + "name": "MAL - Foci responded with LLIN/hummock", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci responded with LLIN/hammock", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "foyers avec réponse MILD" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "code": "MAL_INPAT_MAL_CASES", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "v0WZQQ6gKAX" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "v0WZQQ6gKAX" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Admissions or hospitalization in health facility confirmed as malaria excluding admissions of pregnant women for delivery", + "dimensionItem": "v0WZQQ6gKAX", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Malaria admissions", + "id": "v0WZQQ6gKAX", + "legendSets": [], + "name": "MAL - Inpatient malaria cases", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria admissions", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas de paludisme hospitalisés" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_BR_IPD_PW", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "cDz6fWn4n7M" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "S9nIxTMWplW" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "S9nIxTMWplW" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "dimensionItem": "S9nIxTMWplW", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Malaria inpatients (pregnant women)", + "id": "S9nIxTMWplW", + "legendSets": [], + "name": "MAL - Inpatient malaria cases (pregnant women)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "BR57-Malaria inpatients (pregnant women)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_LLIN_DISTR_NB", + "dataElementGroups": [ + { + "id": "ri242cU0Sm5" + }, + { + "id": "SUfd3Z4AILC" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "MJFRkoiH4KQ" + }, + "dataSet": { + "id": "qNtxTrp56wV" + } + } + ], + "description": "Number of long-lasting insecticidal nets (LLINs) distributed to infants", + "dimensionItem": "MJFRkoiH4KQ", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of LLINs distributed to infants", + "id": "MJFRkoiH4KQ", + "legendSets": [], + "name": "MAL - Long lasting insecticide treated nets distributed to infants", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLINs distributed to infants", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_LLIN_DISTR_PW", + "dataElementGroups": [ + { + "id": "ri242cU0Sm5" + }, + { + "id": "SUfd3Z4AILC" + }, + { + "id": "tbQsD5xgWDH" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "UH47dKFqTRK" + }, + "dataSet": { + "id": "qNtxTrp56wV" + } + } + ], + "description": "Number of long-lasting insecticidal nets (LLINs) distributed to pregnant women", + "dimensionItem": "UH47dKFqTRK", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of LLINs distributed to pregnant women", + "id": "UH47dKFqTRK", + "legendSets": [], + "name": "MAL - Long lasting insecticide treated nets distributed to pregnant women", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "LLINs distributed to pregnant women", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre total de MILDAs distribuées" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_CASES_CLASS_IMPORT", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "koNkg93tcFv" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of cases confirmed as malaria that are investigated and classified as imported from another country. In countries with subnational elimination programme, cases imported from other administrative areas may be termed as domestically imported.", + "dimensionItem": "koNkg93tcFv", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Malaria cases classified as imported", + "id": "koNkg93tcFv", + "legendSets": [], + "name": "MAL - Malaria cases classified - imported", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Imported cases", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas de paludisme classifiés comme importés" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_CASES_CLASS_LOCAL", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "HMUc4RajgaC" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of cases confirmed as malaria that are investigated and classified as either indigenous or introduced", + "dimensionItem": "HMUc4RajgaC", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Malaria cases classified as local", + "id": "HMUc4RajgaC", + "legendSets": [], + "name": "MAL - Malaria cases classified - local", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Local cases", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas de paludisme classifiés comme locaux" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_CASES_INVEST_N2", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ohX4B7Jq8QX" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "HHpmA3PRXlJ" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of confirmed malaria cases investigated within (N2)*,the number of days after confirmation, defined in the national guideline", + "dimensionItem": "HHpmA3PRXlJ", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of malaria cases investigated within timeframe of the guideline", + "id": "HHpmA3PRXlJ", + "legendSets": [], + "name": "MAL - Malaria cases investigated within (N2)* timeframe of the guideline", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Cases investigated within 4 days of diagnosis", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas investigués dans les délais [selon les directives nationales, 3j] (à compter du diagnostic) " + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_CASES_NOTIF_24RS", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ohX4B7Jq8QX" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "Eoc8cDA52c3" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of confirmed malaria cases notified to national level within (N1) timeframe after confirmation, defined in the national guideline", + "dimensionItem": "Eoc8cDA52c3", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of malaria cases notified within 24hrs", + "id": "Eoc8cDA52c3", + "legendSets": [], + "name": "MAL - Malaria cases notified within (N1) timeframe of the guideline (24hrs)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Cases notified within 24 hours of diagnosis", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas de paludisme notifiés dans les 24 heures" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_CASES_POS_MICR", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "enVf9I39FRZ" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "enVf9I39FRZ" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Cases confirmed as positive (Microscopy)", + "dimensionItem": "enVf9I39FRZ", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Positive (micr)", + "id": "enVf9I39FRZ", + "legendSets": [], + "name": "MAL - Malaria cases positive (Microscopy)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Positive (micr)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas positifs (microscopie)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_CASES_POS_RDT", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "vTRrNdOOT9g" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "vTRrNdOOT9g" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Cases confirmed as positive with RDT", + "dimensionItem": "vTRrNdOOT9g", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Positive (RDT)", + "id": "vTRrNdOOT9g", + "legendSets": [], + "name": "MAL - Malaria cases positive (RDT)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Positive (RDT)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas positifs (TDR)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_CASES_TEST_RDT", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "pmRn0GsUfr6" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "pmRn0GsUfr6" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Suspected cases tested with malaria rapid diagnostic test (RDT)", + "dimensionItem": "pmRn0GsUfr6", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Tested (RDT)", + "id": "pmRn0GsUfr6", + "legendSets": [], + "name": "MAL - Malaria cases tested (RDT)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Tested (RDT)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas de paludisme testés par TDR" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_CASES_TEST_MICR", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "DPNsg3wjxGm" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "DPNsg3wjxGm" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Suspected cases tested with malaria microscopy", + "dimensionItem": "DPNsg3wjxGm", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Tested (micr)", + "id": "DPNsg3wjxGm", + "legendSets": [], + "name": "MAL - Malaria cases tested with microscopy", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Tested (micr)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas de paludisme testés par microscopie" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_CASES_SYMPT_DIAG_24HRS", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "KNAg6VC23us" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of suspected cases tested with either microscopy or RDT within 24 hours of onset of malaria symptoms such as fever, headache, vomiting, chills, etc", + "dimensionItem": "KNAg6VC23us", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of malaria cases with symptoms diagnosed within 24hrs", + "id": "KNAg6VC23us", + "legendSets": [], + "name": "MAL - Malaria cases with symptoms diagnosed within 24hrs", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Cases with symptoms diagnosed within 24 hours", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas de paludisme présentant des symptômes du paludisme diagnostiqués dans les 24 heures" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "code": "MAL_CONFI_CASES_REPORTED", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "lYsfXxCw6Qi" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "dataElement": { + "id": "lYsfXxCw6Qi" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Cases confirmed as reported from OPD and not from lab forms", + "dimensionItem": "lYsfXxCw6Qi", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Malaria confirmed cases reported", + "id": "lYsfXxCw6Qi", + "legendSets": [], + "name": "MAL - Malaria confirmed cases reported", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Malaria confirmed cases reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_CONF_MEAN+2", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "LhcXjWs6lm7" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "dataElement": { + "id": "LhcXjWs6lm7" + }, + "dataSet": { + "id": "wEKWiVnc4Pe" + } + }, + { + "dataElement": { + "id": "LhcXjWs6lm7" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "dimensionItem": "LhcXjWs6lm7", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Malaria confirmed MEAN+2 STD (threshold)", + "id": "LhcXjWs6lm7", + "legendSets": [], + "name": "MAL - Malaria confirmed MEAN+2 STD (threshold)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria confirmed threshold", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": false + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_CONF_MEDIAN", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "nwzSeTAxCGV" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "dataElement": { + "id": "nwzSeTAxCGV" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "dataElement": { + "id": "nwzSeTAxCGV" + }, + "dataSet": { + "id": "wEKWiVnc4Pe" + } + } + ], + "dimensionItem": "nwzSeTAxCGV", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Malaria confirmed MEDIAN (threshold)", + "id": "nwzSeTAxCGV", + "legendSets": [], + "name": "MAL - Malaria confirmed MEDIAN (threshold)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria confirmed threshold 2", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": false + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "code": "MAL_DEATH", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "GxlrIgMyEf4" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "GxlrIgMyEf4" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Deaths in health facility due to malaria", + "dimensionItem": "GxlrIgMyEf4", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Malaria deaths", + "id": "GxlrIgMyEf4", + "legendSets": [], + "name": "MAL - Malaria deaths", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria deaths", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Décès dus au paludisme" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_BR_DEATH_PW", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "cDz6fWn4n7M" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "qokS11KT7gD" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "dimensionItem": "qokS11KT7gD", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Malaria deaths (pregnant women)", + "id": "qokS11KT7gD", + "legendSets": [], + "name": "MAL - Malaria deaths (pregnant women)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria deaths (PW)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_FOCI_CLASS_AS_ACTIV", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "lz1FE0wvo1m" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of foci with ongoing transmission, i.e. a foci with locally acquired case(s) detected within the current calendar year.", + "dimensionItem": "lz1FE0wvo1m", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of malaria Foci classified as active (with ongoing transmission, locally acquired case(s) detected within the current transmission calendar year)", + "id": "lz1FE0wvo1m", + "legendSets": [], + "name": "MAL - Malaria foci classified as active (with ongoing transmission, locally acquired case(s) detected within the current transmission calendar year)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci classified as endemic or active", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre de foyers classifiés comme endémiques ou actifs (avec cas locaux confirmés au moins au cours des deux dernières années)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_FOCI_CLASS_AS_CLEAR", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "LH9FKWl1FfP" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of foci with no local transmission for more than 3 years and are no longer considered residual non-active. i.e. foci with absence of locally-acquired case(s) for more than 3 years, where only imported or/and relapsing/recrudescent cases or/and induced cases may occur in the current calendar year.", + "dimensionItem": "LH9FKWl1FfP", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of malaria Foci classified as cleared-up (no local transmission for >3 years, no longer considered residual non-active)", + "id": "LH9FKWl1FfP", + "legendSets": [], + "name": "MAL - Malaria Foci classified as cleared-up (no local transmission for >3 years, no longer considered residual non-active)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci classified as cleared-up", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre de foyers classifiés comme non-actif ou éteint (avec interventions)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_EL_FOCI_NEW_ACT", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "Qzfvt1YRb1Y" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of foci where transmission has been interrupted recently (1-3 years ago), i.e. a foci where the last locally acquired case(s) was detected in the previous calendar year or up to 3 years earlier.", + "dimensionItem": "Qzfvt1YRb1Y", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of malaria Foci classified as residual non-active (Transmission interrupted recently, 1-3 years ago)", + "id": "Qzfvt1YRb1Y", + "legendSets": [], + "name": "MAL - Malaria foci classified as residual non-active (Transmission interrupted recently, 1-3 years ago)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci classified as new active", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre de foyers classifiés comme actif" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_MIX_MAL_SPECIES_MICR", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "lgDGha7OO9o" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "lgDGha7OO9o" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Cases confirmed as mixed infection with P.falciparum and P.vivax with microscopy", + "dimensionItem": "lgDGha7OO9o", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Mixed (micr)", + "id": "lgDGha7OO9o", + "legendSets": [], + "name": "MAL - Malaria mixed infection (microscopy)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Mixed (micr)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Mixed (micr)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "VkQPxB6VdoG" + }, + "code": "MAL_POS_CROSS_BORDERS", + "dataElementGroups": [ + { + "id": "dNNpRuO7kbn" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "ohX4B7Jq8QX" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "VkQPxB6VdoG" + }, + "dataElement": { + "id": "UwaQ0MJzXBz" + }, + "dataSet": { + "id": "e8BAh6eGcNE" + } + } + ], + "description": "Number of positive cases with either microscopy or RDT in administrative area bordering international border", + "dimensionItem": "UwaQ0MJzXBz", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of malaria positive from cross-borders", + "id": "UwaQ0MJzXBz", + "legendSets": [], + "name": "MAL - Malaria positive from cross-borders", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Positive from cross-borders", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre positive de paludisme de la population transfrontalière" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_POS_CROSS_BORDERS_FOLLO_14D", + "dataElementGroups": [ + { + "id": "dNNpRuO7kbn" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "ohX4B7Jq8QX" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "wAHUeGPbH9A" + }, + "dataSet": { + "id": "e8BAh6eGcNE" + } + } + ], + "description": "Number of suspected malaria cases positive with either microscopy or RDT in administrative area bordering international border", + "dimensionItem": "wAHUeGPbH9A", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of malaria positive from cross-borders followed for 14 days", + "id": "wAHUeGPbH9A", + "legendSets": [], + "name": "MAL - Malaria positive from cross-borders followed for 14 days", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Positive from cross-borders followed for 14 days", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Population transfrontalièresuivi pendant 14 jours" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "VkQPxB6VdoG" + }, + "code": "MAL_TEST_CROSS_BORDERS", + "dataElementGroups": [ + { + "id": "dNNpRuO7kbn" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "ohX4B7Jq8QX" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "VkQPxB6VdoG" + }, + "dataElement": { + "id": "CxI1FHE4oEh" + }, + "dataSet": { + "id": "e8BAh6eGcNE" + } + } + ], + "description": "Number of suspected cases tested with either microscopy or RDT in administrative area bordering international border", + "dimensionItem": "CxI1FHE4oEh", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of malaria tested from cross-borders", + "id": "CxI1FHE4oEh", + "legendSets": [], + "name": "MAL - Malaria tested from cross-borders", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Tested from cross-borders", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre testé pour le paludisme de la population transfrontalière" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_MM_POP_FOLLO_UP_FOR_14D", + "dataElementGroups": [ + { + "id": "dNNpRuO7kbn" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "ohX4B7Jq8QX" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "kdMT3AuDzj1" + }, + "dataSet": { + "id": "e8BAh6eGcNE" + } + } + ], + "description": "Number of migrant and mobile population (MMP) that are are followed-up for 14 days (with testing using microscopy or RDT at intervals)", + "dimensionItem": "kdMT3AuDzj1", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of migrant and mobile population (MMP) followed up for 14 days", + "id": "kdMT3AuDzj1", + "legendSets": [], + "name": "MAL - Migrant and mobile population (MMP) followed up for 14 days", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "MMP followed up for 14 days", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre de migrants et mobile populations suivi pendant 14 jours" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_MM_POP_POS", + "dataElementGroups": [ + { + "id": "dNNpRuO7kbn" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "ohX4B7Jq8QX" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "CWHBMa4nC9J" + }, + "dataSet": { + "id": "e8BAh6eGcNE" + } + } + ], + "description": "Number of migrant and mobile population (MMP) that are positive with either microscopy and RDT", + "dimensionItem": "CWHBMa4nC9J", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of migrant and mobile population (MMP) positive", + "id": "CWHBMa4nC9J", + "legendSets": [], + "name": "MAL - Migrant and mobile population (MMP) positive", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "MMP positive", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre de migrants et mobile populations positive (MMP)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_MM_POP_TEST", + "dataElementGroups": [ + { + "id": "dNNpRuO7kbn" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "ohX4B7Jq8QX" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "S3AqkeU4DET" + }, + "dataSet": { + "id": "e8BAh6eGcNE" + } + } + ], + "description": "Number of migrant and mobile population (MMP) suspected and tested with either microscopy and RDT", + "dimensionItem": "S3AqkeU4DET", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of migrant and mobile population (MMP) tested", + "id": "S3AqkeU4DET", + "legendSets": [], + "name": "MAL - Migrant and mobile population (MMP) tested", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "MMP tested", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre de migrants et mobile populations testés (MMP)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_MIX_MAL_SPECIES_RDT", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "llpG8qA0SvG" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "llpG8qA0SvG" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Cases confirmed as mixed infection with P.falciparum and other species with RDT", + "dimensionItem": "llpG8qA0SvG", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Mixed (RDT)", + "id": "llpG8qA0SvG", + "legendSets": [], + "name": "MAL - Mixed/Other malaria species (RDT)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Mixed (RDT)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Mixtes/Autres (TDR)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_NEW_ACTIV_FOCI_CURRE_YEAR", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "lZi1cjtvVB6" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of malaria foci classified active foci identified within current calendar year", + "dimensionItem": "lZi1cjtvVB6", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "New foci identified (current year)", + "id": "lZi1cjtvVB6", + "legendSets": [], + "name": "MAL - New active foci with the current calendar year", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci identified (list of foci)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre de foyers identifiés (nouveaux)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_OTHER_MAL_SPECIES_MICR", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ohX4B7Jq8QX" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "jtyuEfbNbkb" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "jtyuEfbNbkb" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Cases confirmed as P.malariae or P. ovale or P. knowlesi with microscopy", + "dimensionItem": "jtyuEfbNbkb", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Other species (micr)", + "id": "jtyuEfbNbkb", + "legendSets": [], + "name": "MAL - Other malaria species (microscopy)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Other species (micr)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Autres espèces (micr)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_PEOPLE_PROT_BY_IRS", + "dataElementGroups": [ + { + "id": "ri242cU0Sm5" + }, + { + "id": "SUfd3Z4AILC" + }, + { + "id": "tbQsD5xgWDH" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "NywGy6uMS5r" + }, + "dataSet": { + "id": "qNtxTrp56wV" + } + } + ], + "description": "Number of people at risk living in households that received indoor-residual spraying (IRS)", + "dimensionItem": "NywGy6uMS5r", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "People at risk protected by IRS", + "id": "NywGy6uMS5r", + "legendSets": [], + "name": "MAL - People protected by IRS", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "People protected by IRS", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre de personnes protégées par la PID" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_PF_CASES_TREAT_WITH_ACT_ONLY", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "QA59eN3tJve" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "M91K9z70dl4" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "M91K9z70dl4" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of P. falciparum cases potentially treated only with full ACT treatment courses", + "dimensionItem": "M91K9z70dl4", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of P. falciparum cases treated with ACT only", + "id": "M91K9z70dl4", + "legendSets": [], + "name": "MAL - P. falciparum cases treated with ACT only", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "P. falciparum cases treated with ACT only", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre de cas P. falciparum traité par un CTA" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_PF_CASES_TREAT_WITH_SINGL_DOSE_PQ_ACT", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "QA59eN3tJve" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "QUk2XwhVL7n" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "QUk2XwhVL7n" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of P. falciparum cases potentially treated with single dose primaquine and ACT", + "dimensionItem": "QUk2XwhVL7n", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of P. falciparum cases treated with single dose primaquine and ACT", + "id": "QUk2XwhVL7n", + "legendSets": [], + "name": "MAL - P. falciparum cases treated with single dose primaquine and ACT", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "P. falciparum cases treated w/primaquine and ACT", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre de cas P. falciparum traités avec une dose unique de prémaquine et CTA" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "NONE", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_PF_MICR", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "jvjJ901K56K" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "jvjJ901K56K" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Cases confirmed as P.falciparum positive with microscopy", + "dimensionItem": "jvjJ901K56K", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "P. falciparum (micr)", + "id": "jvjJ901K56K", + "legendSets": [], + "name": "MAL - Plasmodium falciparum (microscopy)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "P. falciparum (micr)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "P. falciparum (micr)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_PF_RDT", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "IUrl6HtHVQI" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "IUrl6HtHVQI" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Cases confirmed as P.falciparum with RDT", + "dimensionItem": "IUrl6HtHVQI", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "P. falciparum (RDT)", + "id": "IUrl6HtHVQI", + "legendSets": [], + "name": "MAL - Plasmodium falciparum (RDT)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "P. falciparum (RDT)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "P. falciparum (TDR)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_PK_MICR_RDT", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "QJUcVI1zY5y" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "QJUcVI1zY5y" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Cases confirmed as P.knowlesi positive with microscopy", + "dimensionItem": "QJUcVI1zY5y", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "P. knowlesi (micr)", + "id": "QJUcVI1zY5y", + "legendSets": [], + "name": "MAL - Plasmodium knowlesi (microscopy)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "P. knowlesi (micr)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "P. knowlesi (micr) " + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_PM_MICR_RDT", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "WNcIBqTodHr" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "WNcIBqTodHr" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Cases confirmed as P.malariae positive with microscopy", + "dimensionItem": "WNcIBqTodHr", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "P. malariae (micr)", + "id": "WNcIBqTodHr", + "legendSets": [], + "name": "MAL - Plasmodium malariae (microscopy)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "P. malariae (micr)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "P. malariae (micr) " + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_PO_MICR_RDT", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "iMcQ1MedqGo" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "iMcQ1MedqGo" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Cases confirmed as P.ovale positive with microscopy", + "dimensionItem": "iMcQ1MedqGo", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "P. ovale (micr)", + "id": "iMcQ1MedqGo", + "legendSets": [], + "name": "MAL - Plasmodium ovale (microscopy)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "P. ovale (micr)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "P. ovale (micr) " + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_PV_MICR", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "yHS1RqIFeD7" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "yHS1RqIFeD7" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Cases confirmed as P.vivax positive with microscopy", + "dimensionItem": "yHS1RqIFeD7", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "P. vivax (micr)", + "id": "yHS1RqIFeD7", + "legendSets": [], + "name": "MAL - Plasmodium vivax (microscopy)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "P. vivax (micr)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "P. vivax (micr)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_PV_RDT", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "yVGY0DGVPor" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "yVGY0DGVPor" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Cases confirmed as P.vivax positive with RDT", + "dimensionItem": "yVGY0DGVPor", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "P. vivax (RDT)", + "id": "yVGY0DGVPor", + "legendSets": [], + "name": "MAL - Plasmodium vivax (RDT)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "P. vivax (RDT)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "P. vivax (TDR)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_PV_CASES_TREAT_WITH_PQ14D", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "QA59eN3tJve" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "WoVoIProU89" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "WoVoIProU89" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of P. vivax cases treated with primaquine for 14 days (for radical cure)", + "dimensionItem": "WoVoIProU89", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of P. vivax cases treated with primaquine (14 days)", + "id": "WoVoIProU89", + "legendSets": [], + "name": "MAL - Pl. vivax cases treated with primaquine (14 days)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "P. vivax cases treated with primaquine (14d)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre de cas P. vivax traités par la primaquine (14j)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "AVERAGE_SUM_ORG_UNIT", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_POP_AT_RISK", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "ri242cU0Sm5" + }, + { + "id": "SUfd3Z4AILC" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "cOVhTyW8zN6" + }, + "dataSet": { + "id": "qNtxTrp56wV" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "cOVhTyW8zN6" + }, + "dataSet": { + "id": "plY1s6t5AGo" + } + } + ], + "description": "Population living in areas where malaria transmission is possible, i.e. population living in either endemic area, active foci, non-active and cleared-up foci", + "dimensionItem": "cOVhTyW8zN6", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Population at risk", + "id": "cOVhTyW8zN6", + "legendSets": [], + "name": "MAL - Population at risk for malaria", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Population at risk for malaria", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Population à risque" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_PRESUMED_TREATED_ACT", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "Ae0TUkWm1wo" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Number of presumed malaria cases treated nonetheless with a course of ACT", + "dimensionItem": "Ae0TUkWm1wo", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Presumed cases treated with ACT", + "id": "Ae0TUkWm1wo", + "legendSets": [], + "name": "MAL - Presumed cases treated with ACT", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Presumed cases treated with ACT", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "NUMBER", + "zeroIsSignificant": false + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_PV_CASES_TEST_G6DP_DEF_RDT_B4_TRT_PQ", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "rbqe6Td5rNI" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "rbqe6Td5rNI" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of P. viva positive cases tested for G6DP deficiency with RDT before treatment with primaquine", + "dimensionItem": "rbqe6Td5rNI", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of P. vivax cases tested for G6DP deficiency with RDT before treatment with primaquine", + "id": "rbqe6Td5rNI", + "legendSets": [], + "name": "MAL - P. vivax cases tested for G6DP deficiency with RDT before treatment with primaquine", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "P. vivax cases tested for G6DP deficiency", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre de cas traité par n'importe quel antipaludique de 1ère ligne" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_PV_CASES_THAT_ARE_POS_G6DP_DEF", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "GVkqWp9gP5b" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "GVkqWp9gP5b" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Number of P. vivax that are positive to G6DP deficiency test with RDT", + "dimensionItem": "GVkqWp9gP5b", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of P. vivax cases that are positive to G6DP deficiency", + "id": "GVkqWp9gP5b", + "legendSets": [], + "name": "MAL - P. vivax cases that are positive to G6DP deficiency", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "P. vivax cases positive to G6DP deficiency", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Numbre de cas P. vivax testés pour le déficit en G6DP avec le TDR avant un traitement avec premaquine" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_PV_CASES_WITH_TREAT_CQ_ONLY", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "QA59eN3tJve" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "h9DNhuHHgkH" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "h9DNhuHHgkH" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of P. vivax cases treated with chloroquine only (3 days)", + "dimensionItem": "h9DNhuHHgkH", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of P. vivax cases treated chloroquine", + "id": "h9DNhuHHgkH", + "legendSets": [], + "name": "MAL - P. vivax cases with treated chloroquine only", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "P. vivax cases treated chloroquine", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre de cas P. vivax traités par la chloroquine" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_SP_COURS_RECV_IPTP1", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "QA59eN3tJve" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "vCwegNjEuxN" + }, + "dataSet": { + "id": "ol29VzeJoEU" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "vCwegNjEuxN" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Number of 1st dose full treatment course of sulfadoxine-pyrimethamine received for intermittent preventive treatment in pregnancy (IPTp)", + "dimensionItem": "vCwegNjEuxN", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of SP course received for IPTp (1st dose)", + "id": "vCwegNjEuxN", + "legendSets": [], + "name": "MAL - SP course received for IPTp (1st dose)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "SP course received for IPTp (1st dose)", + "translations": [ + { + "locale": "fr", + "property": "DESCRIPTION", + "value": "Nombre de premières doses de traitement complet de sulfadoxine-pyriméthamine reçues dans le cadre d'un traitement préventif intermittent pendant la grossesse (TPIg) " + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Cours de SP reçu pour TPIg (1ère dose)" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "Curso de SP recebido para IPTp (1ª dose)" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Curso de MAL - SP recebido para IPTp (1ª dose)" + }, + { + "locale": "pt", + "property": "DESCRIPTION", + "value": "Número do curso de tratamento completo da primeira dose de sulfadoxina-pirimetamina recebido para tratamento preventivo intermitente na gravidez (IPTp)" + }, + { + "locale": "fr", + "property": "NAME", + "value": "Nombre total de (n) doses de TPI avec la SP donné" + }, + { + "locale": "fr", + "property": "FORM_NAME", + "value": "Nombre de cours de SP reçus pour l'TPIg (1ère dose)" + }, + { + "locale": "pt", + "property": "FORM_NAME", + "value": "Número do curso de SP recebido para IPTp (1ª dose)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_SP_COURS_RECV_IPTP2", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "QA59eN3tJve" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "t4FqHKzAyEn" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Number of 2nd dose full treatment course of sulfadoxine-pyrimethamine received for intermittent preventive treatment in pregnancy (IPTp)", + "dimensionItem": "t4FqHKzAyEn", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of SP course received for IPTp (2nd dose)", + "id": "t4FqHKzAyEn", + "legendSets": [], + "name": "MAL - SP course received for IPTp (2nd dose)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "SP course received for IPTp (2nd dose)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_SP_COURS_RECV_IPTP3", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "QA59eN3tJve" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "SPhiBDEbG0o" + }, + "dataSet": { + "id": "tQc4Gv2Jwco" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "SPhiBDEbG0o" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Number of 3rd dose full treatment course of sulfadoxine-pyrimethamine received for intermittent preventive treatment in pregnancy (IPTp)", + "dimensionItem": "SPhiBDEbG0o", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of SP course received for IPTp (3rd dose)", + "id": "SPhiBDEbG0o", + "legendSets": [], + "name": "MAL - SP course received for IPTp (3rd dose)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "SP course received for IPTp (3rd dose)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_SP_COURS_RECV_IPTP4", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "QA59eN3tJve" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "GEgULJaUkyQ" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Number of 4th dose full treatment course of sulfadoxine-pyrimethamine received for intermittent preventive treatment in pregnancy (IPTp)", + "dimensionItem": "GEgULJaUkyQ", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of SP course received for IPTp (4th dose)", + "id": "GEgULJaUkyQ", + "legendSets": [], + "name": "MAL - SP course received for IPTp (4th dose)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "SP course received for IPTp (4th dose)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": false + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_STOCKOUT_ACT_ADULT", + "dataElementGroups": [ + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "ENIbHvgpaQR" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "dimensionItem": "ENIbHvgpaQR", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "ACT - Adult - Pack", + "id": "ENIbHvgpaQR", + "legendSets": [], + "name": "MAL - Stock-out of ACT - Adult - Pack", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Stock-out of ACT - Adult - Pack", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Rupture de stock de CTA - Adult" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "BOOLEAN", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_STOCKOUT_ACT_CHILD", + "dataElementGroups": [ + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "mIefFUftPpa" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "dimensionItem": "mIefFUftPpa", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "ACT - Children - Pack", + "id": "mIefFUftPpa", + "legendSets": [], + "name": "MAL - Stock-out of ACT - Children - Pack", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Stock-out of ACT - Children - Pack", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Rupture de stock de CTA - Enfant" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "BOOLEAN", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_STOCKOUT_LLIN", + "dataElementGroups": [ + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "yMIgzlV9sES" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "dimensionItem": "yMIgzlV9sES", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "LLIN malaria", + "id": "yMIgzlV9sES", + "legendSets": [], + "name": "MAL - Stock-out of LLIN malaria", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Stock-out of LLIN malaria", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Rupture de stock de MILD" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "BOOLEAN", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_STOCKOUT_SP", + "dataElementGroups": [ + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "g6T1sC2ZSFD" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "dimensionItem": "g6T1sC2ZSFD", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Sulfadoxine-pyrimethamine (SP)", + "id": "g6T1sC2ZSFD", + "legendSets": [], + "name": "MAL - Stock-out of Sulfadoxine-pyrimethamine (SP)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Stock-out of SP", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Rupture de stock de Sulfadoxine-pyrimethamine (SP)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "BOOLEAN", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "code": "MAL_SUSP_MAL_CASES", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "cE8SDxizo5s" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "dataElement": { + "id": "cE8SDxizo5s" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Illness suspected by a health worker to be due to malaria, generally on the basis of the presence of fever with or without other symptoms. Where some cases are presumed, suspected cases include tested plus presumed.", + "dimensionItem": "cE8SDxizo5s", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Suspected cases", + "id": "cE8SDxizo5s", + "legendSets": [], + "name": "MAL - Suspected malaria cases", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Suspected cases", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas suspectés de paludisme" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_BR_SUSP_PW", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "cDz6fWn4n7M" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "d7vgVlFnviU" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "dimensionItem": "d7vgVlFnviU", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Suspected cases (pregnant women)", + "id": "d7vgVlFnviU", + "legendSets": [], + "name": "MAL - Suspected malaria cases (pregnant women)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Suspected malaria cases (PW)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "code": "MAL_CASES_PRES_CONF", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "kRasaq1REFp" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "dataElement": { + "id": "kRasaq1REFp" + }, + "dataSet": { + "id": "tQc4Gv2Jwco" + } + }, + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "kRasaq1REFp" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "description": "Total number of cases reported as malaria (confirmed with either microscopy or RDT, and presumed clinically as malaria in absence of diagnosis)", + "dimensionItem": "kRasaq1REFp", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Outpatient malaria cases (confirmed + presumed)", + "id": "kRasaq1REFp", + "legendSets": [], + "name": "MAL - Total malaria cases (confirmed + presumed)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Outpatient malaria cases (confirmed + presumed)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas de paludisme ambulatoires (confirmés + présumés)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_BR_TOT_PW", + "dataElementGroups": [ + { + "id": "eFOVgJWE7qF" + }, + { + "id": "cDz6fWn4n7M" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "rY7FJXnqwkM" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "dimensionItem": "rY7FJXnqwkM", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Outpatient malaria cases (pregnant women)", + "id": "rY7FJXnqwkM", + "legendSets": [], + "name": "MAL - Total malaria cases (confirmed + presumed) (pregnant women)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria cases - OPD (P+C)(PW)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [], + "dimensionItem": "kWYOd8bSSqJ", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "id": "kWYOd8bSSqJ", + "legendSets": [], + "name": "MAL - ACT facility without stockout count", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "MAL - ACT facility without stockout count", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_ACT_ISSUED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "xysDfJ6oPMh" + }, + "dataSet": { + "id": "zYgocFMVrxk" + } + }, + { + "dataElement": { + "id": "xysDfJ6oPMh" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of ACT issued from the facility's stock during the reporting period", + "dimensionItem": "xysDfJ6oPMh", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "ACT issued", + "id": "xysDfJ6oPMh", + "legendSets": [], + "name": "MAL - ACT issued", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACTs issued", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_ACT_OPENING_BALANCE", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "CBKXL15dSwQ" + }, + "dataSet": { + "id": "zYgocFMVrxk" + } + }, + { + "dataElement": { + "id": "CBKXL15dSwQ" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of ACTs on-hand from previous month", + "dimensionItem": "CBKXL15dSwQ", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "ACT opening balance", + "id": "CBKXL15dSwQ", + "legendSets": [], + "name": "MAL - ACT opening balance", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACT opening balance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_ACTS_RECV", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "x4A99GZbg5k" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of ACT packs received by the facility as part of routine stock reporting", + "dimensionItem": "x4A99GZbg5k", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "ACTs received", + "id": "x4A99GZbg5k", + "legendSets": [], + "name": "MAL - ACT received", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACT received", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_ACT_REDISTRIBUTED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "ZnifKT2U88N" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "ZnifKT2U88N" + }, + "dataSet": { + "id": "zYgocFMVrxk" + } + } + ], + "description": "Number of ACTs redistributed back into the supply chain and is no longer intended for the patients of the reporting health facility", + "dimensionItem": "ZnifKT2U88N", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "ACTs redistributed", + "id": "ZnifKT2U88N", + "legendSets": [], + "name": "MAL - ACT redistributed", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACT redistributed", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_ACT_HAND", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "mTR90t8ea5x" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "mTR90t8ea5x" + }, + "dataSet": { + "id": "zYgocFMVrxk" + } + } + ], + "description": "Number of ACT blister packs on-hand at the facility after the physical stock count at the end of the reporting period", + "dimensionItem": "mTR90t8ea5x", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "ACT stock on hand", + "id": "mTR90t8ea5x", + "legendSets": [], + "name": "MAL - ACT stock on hand", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACT stock on hand", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "AVERAGE_SUM_ORG_UNIT", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_ACT_STOCKOUT_DAYS", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "pNalmL0t0uk" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "pNalmL0t0uk" + }, + "dataSet": { + "id": "zYgocFMVrxk" + } + } + ], + "description": "Number of days during which the facility was stocked out of ACT blister packs (at any point during the day) during the reporting period.", + "dimensionItem": "pNalmL0t0uk", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "ACT number of stock out days", + "id": "pNalmL0t0uk", + "legendSets": [], + "name": "MAL - ACT stock out days", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACT stock out days", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_ARTESUNATE_OPENING_BALANCE", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "BdRI37FNDJs" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of Artesunate on-hand from previous month", + "dimensionItem": "BdRI37FNDJs", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Artesunate opening balance", + "id": "BdRI37FNDJs", + "legendSets": [], + "name": "MAL - Artesunate opening balance", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Artesunate opening balance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_ARTESUNATE_RECV", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "F7BWpIVSEpM" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of Artesunate received in the stock of the health facility", + "dimensionItem": "F7BWpIVSEpM", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Artesunate received", + "id": "F7BWpIVSEpM", + "legendSets": [], + "name": "MAL - Artesunate received", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Artesunate received", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_ARTESUNATE_REDISTRIBUTED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "F7L5jVrWnHi" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of Artesunate redistributed back into the supply chain and is no longer intended for the patients of the reporting health facility.", + "dimensionItem": "F7L5jVrWnHi", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Artesunate redistributed", + "id": "F7L5jVrWnHi", + "legendSets": [], + "name": "MAL - Artesunate redistributed", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Artesunate redistributed", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "AVERAGE_SUM_ORG_UNIT", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_ARTESUNATE_STOCKOUT_DAYS", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "N6uAJQjkRQl" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of days when the facility was stocked out of Artesunate (at any point during the day) during the reporting period.", + "dimensionItem": "N6uAJQjkRQl", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Artesunate stock out days", + "id": "N6uAJQjkRQl", + "legendSets": [], + "name": "MAL - Artesunate stock out days", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Artesunate stock out days", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [], + "dimensionItem": "VKFrxbEMwAw", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "id": "VKFrxbEMwAw", + "legendSets": [], + "name": "MAL - Facilities reporting on ACT or RDTs", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "MAL - HF reporting on ACT or RDTs", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "NUMBER", + "zeroIsSignificant": false + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "HF_WITH_ACT_STOCKOUT_DAYS_REPORTED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "Pw7sgDi5Pge" + }, + "dataSet": { + "id": "DVDf2K958Cd" + } + } + ], + "description": "This field is calculated by a predictor", + "dimensionItem": "Pw7sgDi5Pge", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Facilities with ACT stockout days reported", + "id": "Pw7sgDi5Pge", + "legendSets": [], + "name": "MAL - Facilities with ACT stockout days reported", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "HF with ACT stockout days reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "HF_WITH_ARTESUNATE_STOCKOUT_DAYS_REPORTED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "ruRmurEI4yM" + }, + "dataSet": { + "id": "DVDf2K958Cd" + } + } + ], + "description": "This field is calculated by a predictor", + "dimensionItem": "ruRmurEI4yM", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Facilities with Artesunate stockout days reported", + "id": "ruRmurEI4yM", + "legendSets": [], + "name": "MAL - Facilities with Artesunate stockout days reported", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "HF with Artesunate stockout days reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "HF_WITH_LLIN_STOCKOUT_DAYS_REPORTED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "cS2FTLczEz0" + }, + "dataSet": { + "id": "DVDf2K958Cd" + } + } + ], + "description": "This field is calculated by a predictor", + "dimensionItem": "cS2FTLczEz0", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Facilities with LLIN stockout days reported", + "id": "cS2FTLczEz0", + "legendSets": [], + "name": "MAL - Facilities with LLIN stockout days reported", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "HF with LLIN stockout days reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "HF_WITHOUT_ACT_STOCKOUT_DAYS_REPORTED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "d9YgyZpkUW4" + }, + "dataSet": { + "id": "DVDf2K958Cd" + } + } + ], + "description": "This field is calculated by a predictor", + "dimensionItem": "d9YgyZpkUW4", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Facilities without ACT stockout days reported", + "id": "d9YgyZpkUW4", + "legendSets": [], + "name": "MAL - Facilities without ACT stockout days reported", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "HF without ACT stockout days reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "HF_WITHOUT_LLIN_STOCKOUT_DAYS_REPORTED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "L9wnSDBRClO" + }, + "dataSet": { + "id": "DVDf2K958Cd" + } + } + ], + "description": "This field is calculated by a predictor", + "dimensionItem": "L9wnSDBRClO", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Facilities without LLIN stockout days reported", + "id": "L9wnSDBRClO", + "legendSets": [], + "name": "MAL - Facilities without LLIN stockout days reported", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "HF without LLIN stockout days reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "HF_WITHOUT_PRIMAQUINE_STOCKOUT_DAYS_REPORTED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "bbHPUFANq7c" + }, + "dataSet": { + "id": "DVDf2K958Cd" + } + } + ], + "description": "This field is calculated by a predictor", + "dimensionItem": "bbHPUFANq7c", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Facilities without Primaquine stockout days reported", + "id": "bbHPUFANq7c", + "legendSets": [], + "name": "MAL - Facilities without Primaquine stockout days reported", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "HF without Primaquine stockout days reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "EUOyugUvYYt" + }, + "dataSet": { + "id": "DVDf2K958Cd" + } + } + ], + "dimensionItem": "EUOyugUvYYt", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "id": "EUOyugUvYYt", + "legendSets": [], + "name": "MAL - Facilities without stock-out of ACT or RDTs", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "MAL - HF without stock-out of ACT or RDTs", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "NUMBER", + "zeroIsSignificant": false + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "HF_WITHOUT_SP_STOCKOUT_DAYS_REPORTED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "GHtprEGbFWE" + }, + "dataSet": { + "id": "DVDf2K958Cd" + } + } + ], + "description": "This field is calculated by a predictor", + "dimensionItem": "GHtprEGbFWE", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Facilities without Sulfadoxine-pyrimethamine stockout days reported", + "id": "GHtprEGbFWE", + "legendSets": [], + "name": "MAL - Facilities without Sulfadoxine-pyrimethamine stockout days reported", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "HF without SP stockout days reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "HF_WITH_PRIMAQUINE_STOCKOUT_DAYS_REPORTED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "XRIzH1a19DU" + }, + "dataSet": { + "id": "DVDf2K958Cd" + } + } + ], + "description": "This field is calculated by a predictor", + "dimensionItem": "XRIzH1a19DU", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Facilities with Primaquine stockout days reported", + "id": "XRIzH1a19DU", + "legendSets": [], + "name": "MAL - Facilities with Primaquine stockout days reported", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "HF with Primaquine stockout days reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "HF_WITH_RDTS_STOCKOUT_DAYS_REPORTED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "vBAWCLJpF6r" + }, + "dataSet": { + "id": "DVDf2K958Cd" + } + } + ], + "description": "This field is calculated by a predictor", + "dimensionItem": "vBAWCLJpF6r", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Facilities with RDTs stockout days reported", + "id": "vBAWCLJpF6r", + "legendSets": [], + "name": "MAL - Facilities with RDTs stockout days reported", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "HF with RDTs stockout days reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "HF_WITH_SP_STOCKOUT_DAYS_REPORTED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "Rd02CjRNYDD" + }, + "dataSet": { + "id": "DVDf2K958Cd" + } + } + ], + "description": "This field is calculated by a predictor", + "dimensionItem": "Rd02CjRNYDD", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Facilities with Sulfadoxine-pyrimethamine stockout days reported", + "id": "Rd02CjRNYDD", + "legendSets": [], + "name": "MAL - Facilities with Sulfadoxine-pyrimethamine stockout days reported", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "HF with SP stockout days reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "code": "MAL_FOCI_RESP_IRS", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "dataElement": { + "id": "mDCNvNfweci" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of foci that received a response with IRS targeting the population resident in the foci", + "dimensionItem": "mDCNvNfweci", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of foci responded with IRS", + "id": "mDCNvNfweci", + "legendSets": [], + "name": "MAL - Foci responded with IRS", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci responded with IRS", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Foyers avec réponse PID" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "code": "MAL_FOCI_RESP_LARVI", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "dataElement": { + "id": "gSlR6YgWw45" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of foci that received a response with larval control (larviciding) targeting the population resident in the foci", + "dimensionItem": "gSlR6YgWw45", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of foci responded with larviciding", + "id": "gSlR6YgWw45", + "legendSets": [], + "name": "MAL - Foci responded with larviciding", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci responded with larviciding", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Foyers avec réponse avec traitements larvicides" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "code": "MAL_FOCI_RESP_MDA", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "dataElement": { + "id": "FyouhDzv0bP" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of foci that received a response with mass drug administration targeting the population resident in the foci", + "dimensionItem": "FyouhDzv0bP", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of foci responded with MDA", + "id": "FyouhDzv0bP", + "legendSets": [], + "name": "MAL - Foci responded with MDA", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci responded with MDA", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Foyers avec réponse par une traitement médicamenteux de masse (TMM)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "code": "MAL_FOCI_WITH_RESP", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "dataElement": { + "id": "oNqsWW6eD3L" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of foci that received response with either treatment, mass drug administration, LLINs or IRS, or larval control following foci investigation", + "dimensionItem": "oNqsWW6eD3L", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of foci with response", + "id": "oNqsWW6eD3L", + "legendSets": [], + "name": "MAL - Foci with response", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci with response", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Foyers avec réponse" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_LLIN_DISCARDED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "YnKOG0WVtlq" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of LLIN discarded during the reporting period (expired, damaged, etc.)", + "dimensionItem": "YnKOG0WVtlq", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "LLIN discarded", + "id": "YnKOG0WVtlq", + "legendSets": [], + "name": "MAL - LLIN discarded", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLIN discarded", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_LLIN_ISSUED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "OpiuZiAzEwQ" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of LLIN issued from the facility's stock during the reporting period", + "dimensionItem": "OpiuZiAzEwQ", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "LLIN issued", + "id": "OpiuZiAzEwQ", + "legendSets": [], + "name": "MAL - LLIN issued", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLIN issued", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_LLIN_RECV", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "eCKSKNgHJqe" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of LLIN received in the stock of the health facility", + "dimensionItem": "eCKSKNgHJqe", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "LLIN received", + "id": "eCKSKNgHJqe", + "legendSets": [], + "name": "MAL - LLIN received", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLIN received", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_LLIN_HAND", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "GIhoITcc0jp" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of LLIN on-hand at the facility after the physical stock count at the end of the reporting period", + "dimensionItem": "GIhoITcc0jp", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "LLIN stock on hand", + "id": "GIhoITcc0jp", + "legendSets": [], + "name": "MAL - LLIN stock on hand", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLIN stock on hand", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "AVERAGE_SUM_ORG_UNIT", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_LLIN_STOCKOUT_DAYS", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "KQvuAWwOPnE" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of days when the facility was stocked out of LLIN (at any point during the day) during the reporting period.", + "dimensionItem": "KQvuAWwOPnE", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "LLIN stock out days", + "id": "KQvuAWwOPnE", + "legendSets": [], + "name": "MAL - LLIN stock out days", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLIN stock out days", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_CASES_CLASS", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "a4Cw4iPcMrY" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of cases confirmed as malaria that are investigated and classified as either imported, indigenous, introduced or induced", + "dimensionItem": "a4Cw4iPcMrY", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of malaria cases classified", + "id": "a4Cw4iPcMrY", + "legendSets": [], + "name": "MAL - Malaria cases classified", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Cases classified", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas de paludisme classifiés" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_CASES_CLASS_AS_INDIG", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "DYpakDmCvNG" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of cases classified as indigenous, a case contracted locally, without strong evidence of a direct link to an imported case", + "dimensionItem": "DYpakDmCvNG", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Malaria cases classified as indigenous", + "id": "DYpakDmCvNG", + "legendSets": [], + "name": "MAL - Malaria cases classified - indigenous", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria classified as indigenous", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas de paludisme classifiés comme autochtones" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_CASES_CLASS_AS_INDUC", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "lY309oiMifk" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of cases classified as induced, not due to mosquito-borne transmission. i.e. a case whose origin can be traced to a blood transfusion or other form of parenteral inoculation of the parasite but not to transmission by a natural mosquito-borne inoculation.", + "dimensionItem": "lY309oiMifk", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Malaria cases classified as induced", + "id": "lY309oiMifk", + "legendSets": [], + "name": "MAL - Malaria cases classified - induced", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria cases classified - induced", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas de paludisme classifiés comme induits" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_CASES_CLASS_AS_INTRO", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "EQOuTaSaFOn" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of cases classified as introduced, a case contracted locally, with strong epidemiological evidence linking it directly to a known imported case (first generation from an imported case, i.e. the mosquito was infected by a patient classified as an imported case).", + "dimensionItem": "EQOuTaSaFOn", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Malaria cases classified as introduced", + "id": "EQOuTaSaFOn", + "legendSets": [], + "name": "MAL - Malaria cases classified - introduced", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria classified - introduced", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas de paludisme classifiés comme introduits" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_CASES_CLASS_AS_RECRU", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "TMaDgAn60aR" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of cases classified as indigenous with recurrence of asexual parasitaemia of the same genotype(s) that caused the original illness, due to incomplete clearance of asexual parasites after antimalarial treatment. Recrudescence is different from reinfection with a parasite of the same or different genotype(s) and relapse in P. vivax and P. ovale infections.", + "dimensionItem": "TMaDgAn60aR", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Malaria cases classified as recrudescent", + "id": "TMaDgAn60aR", + "legendSets": [], + "name": "MAL - Malaria cases classified - recrudescent", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria classified as recrudescent", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas de paludisme classifiés comme recrudescence" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_CASES_CLASS_AS_RELAP", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "QFz6w4llj0h" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of cases classified as indigenous with recurrence of asexual parasitaemia in P. vivax or P. ovale infections arising from hypnotise (that persist in the liver and mature to form hepatic schizonts).", + "dimensionItem": "QFz6w4llj0h", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Malaria cases classified as relapsing", + "id": "QFz6w4llj0h", + "legendSets": [], + "name": "MAL - Malaria cases classified - relapsing", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria classified as relapsing", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas de paludisme classifiés comme rechutes (longue incubation) de P. vivax" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_CASES_INVEST", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "Ppc51eaCPHb" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of cases confirmed as malaria (in passive case detection) investigated in a given village or area", + "dimensionItem": "Ppc51eaCPHb", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of malaria cases investigated", + "id": "Ppc51eaCPHb", + "legendSets": [], + "name": "MAL - Malaria cases investigated", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Cases investigated", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre total de cas investigué" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_CASES_POS_REAC_ACD", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "ra1VTaKQK60" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of positive cases with either microscopy or RDT through active case detection (ACD) in a community", + "dimensionItem": "ra1VTaKQK60", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of malaria cases positive in ACD (reactive ACD as part of foci investigation)", + "id": "ra1VTaKQK60", + "legendSets": [], + "name": "MAL - Malaria cases positive in ACD (reactive ACD as part of foci investigation)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Cases positive in reactive ACD", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas de paludisme positifs en dépistage actif (réactif)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_CASES_TEST_REAC_ACD", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "a2hiTowGc0N" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of suspected malaria cases tested with either microscopy or RDT through active case detection (ACD) in a community", + "dimensionItem": "a2hiTowGc0N", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of malaria cases tested in ACD (reactive ACD as part of foci investigation)", + "id": "a2hiTowGc0N", + "legendSets": [], + "name": "MAL - Malaria cases tested in ACD (reactive ACD as part of foci investigation)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Cases tested in reactive ACD", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Cas de paludisme testés en dépistage actif (réactif)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_CONFI_CASES_MICR_RDT", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "x9ko6Zdd2Dm" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "X0luAFiy268" + }, + "dataSet": { + "id": "F7OVox4TtLP" + } + } + ], + "description": "Cases confirmed as positive with microscopy and/or RDT", + "dimensionItem": "X0luAFiy268", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Positive (micr+RDT)", + "id": "X0luAFiy268", + "legendSets": [], + "name": "MAL - Malaria confirmed cases (Mic+RDT)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Positive (micr+RDT)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Total Positive Cases (Micr + RDT)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "code": "MAL_FOCI_CLASS", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "dataElement": { + "id": "EHbjdbiKtd8" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of foci that are investigated and classified as either active, non-active or cleared-up foci", + "dimensionItem": "EHbjdbiKtd8", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of malaria foci classified", + "id": "EHbjdbiKtd8", + "legendSets": [], + "name": "MAL - Malaria foci classified", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci classified", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre de foyers classifiés" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_FOCI_INVEST", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "s9FmEvF0r4n" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of foci that received foci-investigation activities by a team in a given period", + "dimensionItem": "s9FmEvF0r4n", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of malaria foci investigated", + "id": "s9FmEvF0r4n", + "legendSets": [], + "name": "MAL - Malaria foci investigated", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci investigated", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre de foyers investigués" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "code": "MAL_FOCI_INVEST_N3", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "dataElement": { + "id": "Wm0uUlvGfOQ" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of foci investigated within (N3)*,the number of days after confirmation of case, defined in the national guideline", + "dimensionItem": "Wm0uUlvGfOQ", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of malaria foci investigated within timeframe of the guideline", + "id": "Wm0uUlvGfOQ", + "legendSets": [], + "name": "MAL - Malaria foci investigated (N3)* within the number of days defined in the national guideline", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci investigated within 6 days of diagnosis", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Foyer investigués dans les délais [selon les directives nationales, 3-6j] (à compter du diagnostic) " + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "code": "MAL_FOCI_WITH_RESP_N4", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "dataElement": { + "id": "jKGVvTehpps" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "description": "Number of foci with response within (N4)*,the number of days after confirmation of case, defined in the national guideline. Note: Eligibility of foci for response depends on previous interventions, status of foci (active, non-active or clear-up)", + "dimensionItem": "jKGVvTehpps", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of malaria foci with response within timeframe of the guideline", + "id": "jKGVvTehpps", + "legendSets": [], + "name": "MAL - Malaria foci with response within (N4)* timeframe of the guideline", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci with response within 10 days of diagnosis", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Foyers avec réponse dans les délais [selon les directives nationales, 3-6j] (à compter du diagnostic)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_TEST_CASES_MICR_RDT", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "x9ko6Zdd2Dm" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "tuOTgWfDO6m" + }, + "dataSet": { + "id": "F7OVox4TtLP" + } + } + ], + "description": "Suspected cases tested with both microscopy and/or RDT", + "dimensionItem": "tuOTgWfDO6m", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Tested (micr+RDT)", + "id": "tuOTgWfDO6m", + "legendSets": [], + "name": "MAL - Malaria tested cases (Mic+RDT)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Tested (micr+RDT)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Total Tested (Micr + RDT)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_MIX_SPECIES_MICR_RDT", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "x9ko6Zdd2Dm" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "TNTW2ruEVEu" + }, + "dataSet": { + "id": "F7OVox4TtLP" + } + } + ], + "description": "Cases confirmed as mixed infection with P.falciparum and P.vivax with microscopy and/or RDT", + "dimensionItem": "TNTW2ruEVEu", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Mixed (micr+RDT)", + "id": "TNTW2ruEVEu", + "legendSets": [], + "name": "MAL - Mixed malaria species (Mic+RDT)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Mixed (micr+RDT)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Mixed (micr)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_MIX_OTHER_SPECIES_MICR_RDT", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "x9ko6Zdd2Dm" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "JkOyLRb3dpX" + }, + "dataSet": { + "id": "F7OVox4TtLP" + } + } + ], + "description": "Cases confirmed as P.malariae or P. ovale or P. knowlesi with microscopy and/or RDT", + "dimensionItem": "JkOyLRb3dpX", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Other species (micr+RDT)", + "id": "JkOyLRb3dpX", + "legendSets": [], + "name": "MAL - Mixed/Other malaria species (Mic+RDT)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Other species (micr+RDT)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Autres espèces (micr)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_PF_MICR_RDT", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "x9ko6Zdd2Dm" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "IIU1O0Z4l49" + }, + "dataSet": { + "id": "F7OVox4TtLP" + } + } + ], + "description": "Cases confirmed as P.falciparum positive with microscopy and/or RDT", + "dimensionItem": "IIU1O0Z4l49", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "P. falciparum (micr+RDT)", + "id": "IIU1O0Z4l49", + "legendSets": [], + "name": "MAL - Plasmodium falciparum (Mic+RDT)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "P. falciparum (micr+RDT)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "P. falciparum (micr)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "code": "MAL_PV_MICR_RDT", + "dataElementGroups": [ + { + "id": "O3Y4zr16OCX" + }, + { + "id": "x9ko6Zdd2Dm" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "pUC8tgzn0lV" + }, + "dataSet": { + "id": "F7OVox4TtLP" + } + } + ], + "description": "Cases confirmed as P.vivax positive with microscopy", + "dimensionItem": "pUC8tgzn0lV", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "P. vivax (micr+RDT)", + "id": "pUC8tgzn0lV", + "legendSets": [], + "name": "MAL - Plasmodium vivax (Mic+RDT)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "P. vivax (micr+RDT)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "P. vivax (micr)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_PRIMAQUINE_DISCARDED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "o3fW3Hgo9GO" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of Primaquine discarded during the reporting period (expired, damaged, etc.)", + "dimensionItem": "o3fW3Hgo9GO", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Primaquine discarded", + "id": "o3fW3Hgo9GO", + "legendSets": [], + "name": "MAL - Primaquine discarded", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Primaquine discarded", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_PRIMAQUINE_ISSUED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "oIi0Ybn06e2" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of Primaquine issued from the facility's stock during the reporting period", + "dimensionItem": "oIi0Ybn06e2", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Primaquine issued", + "id": "oIi0Ybn06e2", + "legendSets": [], + "name": "MAL - Primaquine issued", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Primaquine issued", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_PRIMAQUINE_OPENING_BALANCE", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "CPBuuIiDnn8" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of Primaquine on-hand from previous month", + "dimensionItem": "CPBuuIiDnn8", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Primaquine opening balance", + "id": "CPBuuIiDnn8", + "legendSets": [], + "name": "MAL - Primaquine opening balance", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Primaquine opening balance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_PRIMAQUINE_RECV", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "uFwkuqBgI29" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of Primaquine received in the stock of the health facility", + "dimensionItem": "uFwkuqBgI29", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Primaquine received", + "id": "uFwkuqBgI29", + "legendSets": [], + "name": "MAL - Primaquine received", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Primaquine received", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_PRIMAQUINE_REDISTRIBUTED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "RJkNUMqVTRC" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of Primaquine redistributed back into the supply chain and is no longer intended for the patients of the reporting health facility.", + "dimensionItem": "RJkNUMqVTRC", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Primaquine redistributed", + "id": "RJkNUMqVTRC", + "legendSets": [], + "name": "MAL - Primaquine redistributed", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Primaquine redistributed", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_PRIMAQUINE_HAND", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "jynElcE3gF0" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of Primaquine on-hand at the facility after the physical stock count at the end of the reporting period", + "dimensionItem": "jynElcE3gF0", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Primaquine stock on hand", + "id": "jynElcE3gF0", + "legendSets": [], + "name": "MAL - Primaquine stock on hand", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Primaquine stock on hand", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_RDT_DISCARDED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "To2fZcY5oUS" + }, + "dataSet": { + "id": "zYgocFMVrxk" + } + }, + { + "dataElement": { + "id": "To2fZcY5oUS" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of RDTs discarded during the reporting period (expired, damaged, etc.)", + "dimensionItem": "To2fZcY5oUS", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "RDTs discarded", + "id": "To2fZcY5oUS", + "legendSets": [], + "name": "MAL - RDT discarded", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDTs discarded", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_RDT_FACILITY_STOCKOUT_COUNT", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [], + "dimensionItem": "XXcN7bSRd7f", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "id": "XXcN7bSRd7f", + "legendSets": [], + "name": "MAL - RDT facility stockout count", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "MAL - RDT facility stockout count", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [], + "dimensionItem": "EJNvrRkptkJ", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "id": "EJNvrRkptkJ", + "legendSets": [], + "name": "MAL - RDT facility without stockout count", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "MAL - RDT facility without stockout count", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_RDT_ISSUED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "CsJm4IsvXqg" + }, + "dataSet": { + "id": "zYgocFMVrxk" + } + }, + { + "dataElement": { + "id": "CsJm4IsvXqg" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of RDTs issued from the facility's stock during the reporting period", + "dimensionItem": "CsJm4IsvXqg", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "RDTs issued to patients", + "id": "CsJm4IsvXqg", + "legendSets": [], + "name": "MAL - RDT issued", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDT issued", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_RDT_OPENING_BALANCE", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "HOEMlLX5SMC" + }, + "dataSet": { + "id": "zYgocFMVrxk" + } + }, + { + "dataElement": { + "id": "HOEMlLX5SMC" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of RDTs on-hand from previous month", + "dimensionItem": "HOEMlLX5SMC", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "RDT opening balance", + "id": "HOEMlLX5SMC", + "legendSets": [], + "name": "MAL - RDT opening balance", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDT opening balance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_RDTS_RECV", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + }, + { + "id": "O3Y4zr16OCX" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "iaQuylCoH3u" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "iaQuylCoH3u" + }, + "dataSet": { + "id": "zYgocFMVrxk" + } + } + ], + "description": "Number of RDT kits received in the stock of the health facility", + "dimensionItem": "iaQuylCoH3u", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "RDT received", + "id": "iaQuylCoH3u", + "legendSets": [], + "name": "MAL - RDT received", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDT received", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_RDT_REDISTRIBUTED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "ZRUpLZ2HVEH" + }, + "dataSet": { + "id": "zYgocFMVrxk" + } + }, + { + "dataElement": { + "id": "ZRUpLZ2HVEH" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of RDTs redistributed back into the supply chain and is no longer intended for the patients of the reporting health facility", + "dimensionItem": "ZRUpLZ2HVEH", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "RDTs redistributed", + "id": "ZRUpLZ2HVEH", + "legendSets": [], + "name": "MAL - RDTs redistributed", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDTs redistributed", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_RDT_HAND", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "ImjPjbE2rFm" + }, + "dataSet": { + "id": "zYgocFMVrxk" + } + }, + { + "dataElement": { + "id": "ImjPjbE2rFm" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of RDTs on-hand at the facility after the physical stock count at the end of the reporting period", + "dimensionItem": "ImjPjbE2rFm", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "RDT stock on hand", + "id": "ImjPjbE2rFm", + "legendSets": [], + "name": "MAL - RDT stock on hand", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDT stock on hand", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_STOCKOUT_ACT_INFANT", + "dataElementGroups": [ + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "kc07jdV2C3B" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "dimensionItem": "kc07jdV2C3B", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "ACT - Infant - Pack", + "id": "kc07jdV2C3B", + "legendSets": [], + "name": "MAL - Stock-out of ACT - Infant - Pack", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Stock-out of ACT - Infant - Pack", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Rupture de stock de CTA - Nourrisson" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "BOOLEAN", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_STOCKOUT_ACT_TODDLER", + "dataElementGroups": [ + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "vfIbhthFgHT" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "dimensionItem": "vfIbhthFgHT", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "ACT - Toddlers - Pack", + "id": "vfIbhthFgHT", + "legendSets": [], + "name": "MAL - Stock-out of ACT - Toddlers - Pack", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Stock-out of ACT - Toddlers - Pack", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "BOOLEAN", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_STOCKOUT_ARTESUNATE", + "dataElementGroups": [ + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "hEQeamIKO5z" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "dimensionItem": "hEQeamIKO5z", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Artesunate (injectables + suppositories)", + "id": "hEQeamIKO5z", + "legendSets": [], + "name": "MAL - Stock-out of artesunate (injectables + suppositories)", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Stock-out of artesunate", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Rupture de stock de artesunate (injectables + suppositoires)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "BOOLEAN", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_STOCKOUT_PRIMAQ", + "dataElementGroups": [ + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "CHM9i82Xvid" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "dimensionItem": "CHM9i82Xvid", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Primaquine", + "id": "CHM9i82Xvid", + "legendSets": [], + "name": "MAL - Stock-out of primaquine", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Stock-out of primaquine", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Rupture de stock de primaquine" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "BOOLEAN", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_STOCKOUT_RDT", + "dataElementGroups": [ + { + "id": "kCWWv3fDtql" + }, + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "Md3xk3vlABx" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "dimensionItem": "Md3xk3vlABx", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "RDT malaria kits", + "id": "Md3xk3vlABx", + "legendSets": [], + "name": "MAL - Stock-out of RDT malaria kits", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Stock-out of RDT malaria kits", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Rupture de stock de TDR" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "BOOLEAN", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_SP_ISSUED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "U4kmpM14xhJ" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of Sulfadoxine-pyrimethamine issued from the facility's stock during the reporting period", + "dimensionItem": "U4kmpM14xhJ", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Sulfadoxine-pyrimethamine issued", + "id": "U4kmpM14xhJ", + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine issued", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "SP issued", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_SP_OPENING_BALANCE", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "f7z0IhHVWBT" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of Sulfadoxine-pyrimethamine on-hand from previous month", + "dimensionItem": "f7z0IhHVWBT", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Sulfadoxine-pyrimethamine opening balance", + "id": "f7z0IhHVWBT", + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine opening balance", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "SP opening balance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_SP_REDISTRIBUTED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "Qv9b5QAOO0F" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of Sulfadoxine-pyrimethamine redistributed back into the supply chain and is no longer intended for the patients of the reporting health facility", + "dimensionItem": "Qv9b5QAOO0F", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Sulfadoxine-pyrimethamine redistributed", + "id": "Qv9b5QAOO0F", + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine redistributed", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "SP redistributed", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_SP_HAND", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "VTunnWZqQCj" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of Sulfadoxine-pyrimethamine on-hand at the facility after the physical stock count at the end of the reporting period", + "dimensionItem": "VTunnWZqQCj", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Sulfadoxine-pyrimethamine stock on hand", + "id": "VTunnWZqQCj", + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine stock on hand", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "SP stock on hand", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "AVERAGE_SUM_ORG_UNIT", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_SP_STOCKOUT_DAYS", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "B3ItBcjVieC" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of days when the facility was stocked out of Sulfadoxine-pyrimethamine (at any point during the day) during the reporting period.", + "dimensionItem": "B3ItBcjVieC", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "SP stock out days", + "id": "B3ItBcjVieC", + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine stock out days", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "SP stock out days", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_ACT_DISCARDED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "THsfR427giB" + }, + "dataSet": { + "id": "zYgocFMVrxk" + } + }, + { + "dataElement": { + "id": "THsfR427giB" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of ACT discarded during the reporting period (expired, damaged, etc.)", + "dimensionItem": "THsfR427giB", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "ACT discarded", + "id": "THsfR427giB", + "legendSets": [], + "name": "MAL - ACT discarded", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACT discarded", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_ACT_FACILITY_STOCKOUT_COUNT", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [], + "dimensionItem": "ViRibye0RWo", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "id": "ViRibye0RWo", + "legendSets": [], + "name": "MAL - ACT facility stockout count", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "MAL - ACT facility stockout count", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_ARTESUNATE_DISCARDED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "twoxyChxlC3" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of Artesunate discarded during the reporting period (expired, damaged, etc.)", + "dimensionItem": "twoxyChxlC3", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Artesunate discarded", + "id": "twoxyChxlC3", + "legendSets": [], + "name": "MAL - Artesunate discarded", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Artesunate discarded", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_ARTESUNATE_ISSUED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "kk2ClooVm41" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of Artesunate issued from the facility's stock during the reporting period", + "dimensionItem": "kk2ClooVm41", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Artesunate issued", + "id": "kk2ClooVm41", + "legendSets": [], + "name": "MAL - Artesunate issued", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Artesunate issued", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_ARTESUNATE_HAND", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "NFMzN9Up5zQ" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of Artesunate on-hand at the facility after the physical stock count at the end of the reporting period", + "dimensionItem": "NFMzN9Up5zQ", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Artesunate stock on hand", + "id": "NFMzN9Up5zQ", + "legendSets": [], + "name": "MAL - Artesunate stock on hand", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Artesunate stock on hand", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "HF_WITHOUT_ARTESUNATE_STOCKOUT_DAYS_REPORTED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "We2VNUVFxso" + }, + "dataSet": { + "id": "DVDf2K958Cd" + } + } + ], + "description": "This field is calculated by a predictor", + "dimensionItem": "We2VNUVFxso", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Facilities without Artesunate stockout days reported", + "id": "We2VNUVFxso", + "legendSets": [], + "name": "MAL - Facilities without Artesunate stockout days reported", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "HF without Artesunate stockout days reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "HF_WITHOUT_RDTS_STOCKOUT_DAYS_REPORTED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "lPXaBt4ToQb" + }, + "dataSet": { + "id": "DVDf2K958Cd" + } + } + ], + "description": "This field is calculated by a predictor", + "dimensionItem": "lPXaBt4ToQb", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Facilities without RDTs stockout days reported", + "id": "lPXaBt4ToQb", + "legendSets": [], + "name": "MAL - Facilities without RDTs stockout days reported", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "HF without RDTs stockout days reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_HAMMOCK_DISTR", + "dataElementGroups": [ + { + "id": "ri242cU0Sm5" + }, + { + "id": "tbQsD5xgWDH" + } + ], + "dataSetElements": [], + "description": "Number of hummock nets distributed (for forest goers or residents)", + "dimensionItem": "AFoWbafBOac", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Number of hummock nets distributed", + "id": "AFoWbafBOac", + "legendSets": [], + "name": "MAL - Hammocks distributed", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Hammocks distributed", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Nombre total de Hammocks distribuées" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_LLIN_OPENING_BALANCE", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "RRA1O37nLn0" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of LLIN on-hand from previous month", + "dimensionItem": "RRA1O37nLn0", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "LLIN opening balance", + "id": "RRA1O37nLn0", + "legendSets": [], + "name": "MAL - LLIN opening balance", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLIN opening balance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_LLIN_REDISTRIBUTED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "zM1vd2VeCss" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of LLIN redistributed back into the supply chain and is no longer intended for the patients of the reporting health facility", + "dimensionItem": "zM1vd2VeCss", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "LLIN redistributed", + "id": "zM1vd2VeCss", + "legendSets": [], + "name": "MAL - LLIN redistributed", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLIN redistributed", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "AVERAGE_SUM_ORG_UNIT", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_PRIMAQUINE_STOCKOUT_DAYS", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "C3vtx1aie2U" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of days when the facility was stocked out of Primaquine (at any point during the day) during the reporting period.", + "dimensionItem": "C3vtx1aie2U", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Primaquine stock out days", + "id": "C3vtx1aie2U", + "legendSets": [], + "name": "MAL - Primaquine stock out days", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Primaquine stock out days", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "AVERAGE_SUM_ORG_UNIT", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_RDT_STOCKOUT_DAYS", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "DEasiq2eO60" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "DEasiq2eO60" + }, + "dataSet": { + "id": "zYgocFMVrxk" + } + } + ], + "description": "Number of days when the facility was stocked out of RDTs (at any point during the day) during the reporting period.", + "dimensionItem": "DEasiq2eO60", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "RDT stock out days", + "id": "DEasiq2eO60", + "legendSets": [], + "name": "MAL - RDT stock out days", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDT stock out days", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_SP_DISCARDED", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "SldWQ0uCFA2" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of Sulfadoxine-pyrimethamine discarded during the reporting period (expired, damaged, etc.)", + "dimensionItem": "SldWQ0uCFA2", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Sulfadoxine-pyrimethamine discarded", + "id": "SldWQ0uCFA2", + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine discarded", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "SP discarded", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_SP_RECV", + "dataElementGroups": [ + { + "id": "cWFV4unGXXn" + } + ], + "dataSetElements": [ + { + "dataElement": { + "id": "GDBHGyXJI2T" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "description": "Number of Sulfadoxine-pyrimethamine received in the stock of the health facility", + "dimensionItem": "GDBHGyXJI2T", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "Sulfadoxine-pyrimethamine received", + "id": "GDBHGyXJI2T", + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine received", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "SP received", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + }, + { + "aggregationLevels": [], + "aggregationType": "SUM", + "attributeValues": [], + "categoryCombo": { + "id": "jGaNULROqin" + }, + "code": "RMNCAH_ANC1", + "dataElementGroups": [ + { + "id": "ri242cU0Sm5" + } + ], + "dataSetElements": [ + { + "categoryCombo": { + "id": "jGaNULROqin" + }, + "dataElement": { + "id": "qqc4NnWVFL9" + }, + "dataSet": { + "id": "tQc4Gv2Jwco" + } + } + ], + "description": "First visit by a pregnant woman to a health facility to primarily receive antenatal care. The first antenatal visit may be referred to as a ‘booking or scheduled visit’ when various processes are done as per the national policy.", + "dimensionItem": "qqc4NnWVFL9", + "dimensionItemType": "DATA_ELEMENT", + "domainType": "AGGREGATE", + "externalAccess": false, + "favorite": false, + "formName": "ANC 1st visit", + "id": "qqc4NnWVFL9", + "legendSets": [], + "name": "RMNCAH - ANC 1st visit", + "optionSetValue": false, + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "ANC 1st visit", + "translations": [ + { + "locale": "id", + "property": "DESCRIPTION", + "value": "Kunjungan pertama wanita hamil ke fasilitas kesehatan khusus untuk menerima perawatan antenatal. Kunjungan antenatal pertama dapat disebut sebagai 'booking' atau kunjungan terjadwal' ketika berbagai proses telah dilakukan sesuai kebijakan nasional." + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "Kunjungan pertama ANC" + }, + { + "locale": "fr", + "property": "FORM_NAME", + "value": "CPN 1ère viste" + }, + { + "locale": "pt", + "property": "DESCRIPTION", + "value": "Primeira visita de uma mulher grávida a uma unidade de saúde para receber principalmente cuidados pré-natais. A primeira visita pré-natal pode ser referida como uma \"marcação ou visita agendada\" quando vários processos são realizados de acordo com a política nacional." + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "ANC 1ª visita" + }, + { + "locale": "fr", + "property": "DESCRIPTION", + "value": "Première visite d'une femme enceinte dans un établissement de santé pour y recevoir principalement des soins prénatals. La première visite prénatale peut être considérée comme une «visite de rendenz-vous ou programmée» lorsque divers processus sont effectués conformément à la politique nationale." + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "CPN 1ère viste" + }, + { + "locale": "id", + "property": "FORM_NAME", + "value": "Kunjungan ANC 1" + }, + { + "locale": "id", + "property": "NAME", + "value": "RMNCAH - Kunjungan ANC 1" + }, + { + "locale": "pt", + "property": "NAME", + "value": "RMNCAH - ANC 1ª visita" + }, + { + "locale": "pt", + "property": "FORM_NAME", + "value": "ANC 1ª visita" + }, + { + "locale": "fr", + "property": "NAME", + "value": "SSRMNEA - CPN 1ère visite" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "valueType": "INTEGER_ZERO_OR_POSITIVE", + "zeroIsSignificant": true + } + ], + "dataEntryForms": [], + "dataSets": [ + { + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_YEARLY", + "compulsoryDataElementOperands": [], + "compulsoryFieldsCompleteOnly": false, + "dataElementDecoration": false, + "dataInputPeriods": [], + "dataSetElements": [ + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "dFaBg0HpoIL" + }, + "dataSet": { + "id": "qNtxTrp56wV" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "UH47dKFqTRK" + }, + "dataSet": { + "id": "qNtxTrp56wV" + } + }, + { + "dataElement": { + "id": "MJFRkoiH4KQ" + }, + "dataSet": { + "id": "qNtxTrp56wV" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "EpyvZBsqMmM" + }, + "dataSet": { + "id": "qNtxTrp56wV" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "FRbgzTZ74Hh" + }, + "dataSet": { + "id": "qNtxTrp56wV" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "tpz77FcntKx" + }, + "dataSet": { + "id": "qNtxTrp56wV" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "cOVhTyW8zN6" + }, + "dataSet": { + "id": "qNtxTrp56wV" + } + }, + { + "dataElement": { + "id": "WBmvvafUwT8" + }, + "dataSet": { + "id": "qNtxTrp56wV" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "NywGy6uMS5r" + }, + "dataSet": { + "id": "qNtxTrp56wV" + } + } + ], + "dimensionItem": "qNtxTrp56wV", + "dimensionItemType": "REPORTING_RATE", + "expiryDays": 0, + "externalAccess": false, + "favorite": false, + "fieldCombinationRequired": false, + "formType": "SECTION", + "id": "qNtxTrp56wV", + "indicators": [], + "interpretations": [], + "legendSets": [], + "mobile": false, + "name": "Malaria annual data", + "noValueRequiresComment": false, + "notifyCompletingUser": false, + "openFuturePeriods": 0, + "openPeriodsAfterCoEndDate": 0, + "periodOffset": 0, + "periodType": "Yearly", + "publicAccess": "--------", + "renderAsTabs": false, + "renderHorizontally": false, + "sections": [ + { + "id": "wr5g5bAdb92" + }, + { + "id": "hzzKgrpKvLJ" + }, + { + "id": "EU6lSY2Polw" + } + ], + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-r-----", + "id": "ZXEVDM9XRea" + }, + "fRSrUJ6SMGH": { + "access": "r-rw----", + "id": "fRSrUJ6SMGH" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria annual data", + "skipOffline": false, + "timelyDays": 15, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "r-r-----", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + }, + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-rw----", + "id": "fRSrUJ6SMGH", + "userGroupUid": "fRSrUJ6SMGH" + } + ], + "validCompleteOnly": false, + "version": 21 + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_BR", + "compulsoryDataElementOperands": [], + "compulsoryFieldsCompleteOnly": false, + "dataElementDecoration": false, + "dataInputPeriods": [], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "QUk2XwhVL7n" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "jvjJ901K56K" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "h9DNhuHHgkH" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "WoVoIProU89" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "dataElement": { + "id": "YG5uCKZRilL" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "rbqe6Td5rNI" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "GVkqWp9gP5b" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "llpG8qA0SvG" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "dataElement": { + "id": "LhcXjWs6lm7" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "enVf9I39FRZ" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "BjDrgVrkBI3" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "l7gcisIvTBN" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "GxlrIgMyEf4" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "cE8SDxizo5s" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "qokS11KT7gD" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "WNcIBqTodHr" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "d7vgVlFnviU" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "DPNsg3wjxGm" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "M91K9z70dl4" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "dataElement": { + "id": "Ae0TUkWm1wo" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "rY7FJXnqwkM" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "kRasaq1REFp" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "pmRn0GsUfr6" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "v0WZQQ6gKAX" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "OCuA0tI3BCi" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "yVGY0DGVPor" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "iMcQ1MedqGo" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "vCwegNjEuxN" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "SPhiBDEbG0o" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "GEgULJaUkyQ" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "dataElement": { + "id": "nwzSeTAxCGV" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "lgDGha7OO9o" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "dataElement": { + "id": "lYsfXxCw6Qi" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "SXGjaEobp6V" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "t4FqHKzAyEn" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "yHS1RqIFeD7" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "YcZAfNmFuje" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "S9nIxTMWplW" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "jtyuEfbNbkb" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "dataElement": { + "id": "n0tgQ4PjnnT" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "VL73cqNHxBJ" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "IUrl6HtHVQI" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "QJUcVI1zY5y" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "vTRrNdOOT9g" + }, + "dataSet": { + "id": "O34y2Kyxx6P" + } + } + ], + "dimensionItem": "O34y2Kyxx6P", + "dimensionItemType": "REPORTING_RATE", + "expiryDays": 0, + "externalAccess": false, + "favorite": false, + "fieldCombinationRequired": false, + "formType": "SECTION", + "id": "O34y2Kyxx6P", + "indicators": [], + "interpretations": [], + "legendSets": [], + "mobile": false, + "name": "Malaria burden reduction", + "noValueRequiresComment": false, + "notifyCompletingUser": false, + "openFuturePeriods": 0, + "openPeriodsAfterCoEndDate": 0, + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "--------", + "renderAsTabs": false, + "renderHorizontally": false, + "sections": [ + { + "id": "iwiTbzS3JBh" + }, + { + "id": "uvJxbOVALVi" + }, + { + "id": "wmZb0JjszLK" + }, + { + "id": "lLRmTfxH1r9" + }, + { + "id": "szfx1ygvXLg" + } + ], + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-r-----", + "id": "ZXEVDM9XRea" + }, + "fRSrUJ6SMGH": { + "access": "r-rw----", + "id": "fRSrUJ6SMGH" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria burden reduction", + "skipOffline": false, + "timelyDays": 15, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "r-r-----", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + }, + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-rw----", + "id": "fRSrUJ6SMGH", + "userGroupUid": "fRSrUJ6SMGH" + } + ], + "validCompleteOnly": false, + "version": 210 + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_CROSS_BORDERS", + "compulsoryDataElementOperands": [], + "compulsoryFieldsCompleteOnly": false, + "dataElementDecoration": false, + "dataInputPeriods": [], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "S3AqkeU4DET" + }, + "dataSet": { + "id": "e8BAh6eGcNE" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "CWHBMa4nC9J" + }, + "dataSet": { + "id": "e8BAh6eGcNE" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "kdMT3AuDzj1" + }, + "dataSet": { + "id": "e8BAh6eGcNE" + } + }, + { + "categoryCombo": { + "id": "VkQPxB6VdoG" + }, + "dataElement": { + "id": "CxI1FHE4oEh" + }, + "dataSet": { + "id": "e8BAh6eGcNE" + } + }, + { + "categoryCombo": { + "id": "VkQPxB6VdoG" + }, + "dataElement": { + "id": "UwaQ0MJzXBz" + }, + "dataSet": { + "id": "e8BAh6eGcNE" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "wAHUeGPbH9A" + }, + "dataSet": { + "id": "e8BAh6eGcNE" + } + } + ], + "description": "Data set used only for grouping data elements that should be included in the Malaria package, but which are not in the regular data sets.", + "dimensionItem": "e8BAh6eGcNE", + "dimensionItemType": "REPORTING_RATE", + "expiryDays": 0, + "externalAccess": false, + "favorite": false, + "fieldCombinationRequired": false, + "formType": "SECTION", + "id": "e8BAh6eGcNE", + "indicators": [], + "interpretations": [], + "legendSets": [], + "mobile": false, + "name": "Malaria cross borders and MMP", + "noValueRequiresComment": false, + "notifyCompletingUser": false, + "openFuturePeriods": 0, + "openPeriodsAfterCoEndDate": 0, + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "--------", + "renderAsTabs": false, + "renderHorizontally": false, + "sections": [ + { + "id": "vbBv9VDHA49" + }, + { + "id": "NbOUEGwlcFz" + } + ], + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-r-----", + "id": "ZXEVDM9XRea" + }, + "fRSrUJ6SMGH": { + "access": "r-rw----", + "id": "fRSrUJ6SMGH" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria cross borders and MMP", + "skipOffline": false, + "timelyDays": 15, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "r-r-----", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + }, + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-rw----", + "id": "fRSrUJ6SMGH", + "userGroupUid": "fRSrUJ6SMGH" + } + ], + "validCompleteOnly": false, + "version": 11 + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_EL", + "compulsoryDataElementOperands": [], + "compulsoryFieldsCompleteOnly": false, + "dataElementDecoration": false, + "dataInputPeriods": [], + "dataSetElements": [ + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "kc07jdV2C3B" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "HMUc4RajgaC" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "Qzfvt1YRb1Y" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "vTRrNdOOT9g" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "lz1FE0wvo1m" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "lgDGha7OO9o" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "DYpakDmCvNG" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "vfIbhthFgHT" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "dataElement": { + "id": "Gq9q1I1t60k" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "dataElement": { + "id": "UMD2TSAxtFr" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "EQOuTaSaFOn" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "enVf9I39FRZ" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "dataElement": { + "id": "cE8SDxizo5s" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "M91K9z70dl4" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "jtyuEfbNbkb" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "dataElement": { + "id": "mDCNvNfweci" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "YcZAfNmFuje" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "llpG8qA0SvG" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "dataElement": { + "id": "EHbjdbiKtd8" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "g6T1sC2ZSFD" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "yVGY0DGVPor" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "jvjJ901K56K" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "dataElement": { + "id": "kRasaq1REFp" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "dataElement": { + "id": "lYsfXxCw6Qi" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "ra1VTaKQK60" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "LH9FKWl1FfP" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "pmRn0GsUfr6" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "VL73cqNHxBJ" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "dataElement": { + "id": "oNqsWW6eD3L" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "dataElement": { + "id": "n0tgQ4PjnnT" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "s9FmEvF0r4n" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "IUrl6HtHVQI" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "rbqe6Td5rNI" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "dataElement": { + "id": "gSlR6YgWw45" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "koNkg93tcFv" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "dataElement": { + "id": "SXGjaEobp6V" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "QJUcVI1zY5y" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "TMaDgAn60aR" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "WoVoIProU89" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "lY309oiMifk" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "hEQeamIKO5z" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "DPNsg3wjxGm" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "Md3xk3vlABx" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "GxlrIgMyEf4" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "iMcQ1MedqGo" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "QUk2XwhVL7n" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "dataElement": { + "id": "Wm0uUlvGfOQ" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "dataElement": { + "id": "LhcXjWs6lm7" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "dataElement": { + "id": "jKGVvTehpps" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "ENIbHvgpaQR" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "kC0lyoKVBqC" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "dataElement": { + "id": "nwzSeTAxCGV" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "HHpmA3PRXlJ" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "OCuA0tI3BCi" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "WNcIBqTodHr" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "GVkqWp9gP5b" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "lZi1cjtvVB6" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "mIefFUftPpa" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "S9nIxTMWplW" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "v0WZQQ6gKAX" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "Ppc51eaCPHb" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "yHS1RqIFeD7" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "Eoc8cDA52c3" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "KNAg6VC23us" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "JuuvtzLw22M" + }, + "dataElement": { + "id": "FyouhDzv0bP" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "l7gcisIvTBN" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "yMIgzlV9sES" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "CHM9i82Xvid" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "dataElement": { + "id": "h9DNhuHHgkH" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "a2hiTowGc0N" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "a4Cw4iPcMrY" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "BwnnrV1AkNj" + }, + "dataElement": { + "id": "BjDrgVrkBI3" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "QFz6w4llj0h" + }, + "dataSet": { + "id": "VEM58nY22sO" + } + } + ], + "dimensionItem": "VEM58nY22sO", + "dimensionItemType": "REPORTING_RATE", + "expiryDays": 0, + "externalAccess": false, + "favorite": false, + "fieldCombinationRequired": false, + "formType": "SECTION", + "id": "VEM58nY22sO", + "indicators": [], + "interpretations": [], + "legendSets": [], + "mobile": false, + "name": "Malaria elimination", + "noValueRequiresComment": false, + "notifyCompletingUser": false, + "openFuturePeriods": 0, + "openPeriodsAfterCoEndDate": 0, + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "--------", + "renderAsTabs": false, + "renderHorizontally": false, + "sections": [ + { + "id": "GgNJp8tHxD7" + }, + { + "id": "RBu2r5nMyBI" + }, + { + "id": "hiRm5bvfM2i" + }, + { + "id": "sraNbe9XsKW" + }, + { + "id": "tyxjJLlYAyk" + }, + { + "id": "aJoFuCT5ZvC" + }, + { + "id": "JsUsBIvCpX7" + }, + { + "id": "mo9KvoElooQ" + }, + { + "id": "XQVQlpdtMFQ" + } + ], + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-r-----", + "id": "ZXEVDM9XRea" + }, + "fRSrUJ6SMGH": { + "access": "r-rw----", + "id": "fRSrUJ6SMGH" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria elimination", + "skipOffline": false, + "timelyDays": 15, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "r-r-----", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + }, + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-rw----", + "id": "fRSrUJ6SMGH", + "userGroupUid": "fRSrUJ6SMGH" + } + ], + "validCompleteOnly": false, + "version": 80 + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_OLD", + "compulsoryDataElementOperands": [], + "compulsoryFieldsCompleteOnly": false, + "dataElementDecoration": false, + "dataInputPeriods": [], + "dataSetElements": [ + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "IIU1O0Z4l49" + }, + "dataSet": { + "id": "F7OVox4TtLP" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "TNTW2ruEVEu" + }, + "dataSet": { + "id": "F7OVox4TtLP" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "pUC8tgzn0lV" + }, + "dataSet": { + "id": "F7OVox4TtLP" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "JkOyLRb3dpX" + }, + "dataSet": { + "id": "F7OVox4TtLP" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "tuOTgWfDO6m" + }, + "dataSet": { + "id": "F7OVox4TtLP" + } + }, + { + "categoryCombo": { + "id": "IvYR8mc6prX" + }, + "dataElement": { + "id": "X0luAFiy268" + }, + "dataSet": { + "id": "F7OVox4TtLP" + } + } + ], + "dimensionItem": "F7OVox4TtLP", + "dimensionItemType": "REPORTING_RATE", + "expiryDays": 0, + "externalAccess": false, + "favorite": false, + "fieldCombinationRequired": false, + "formType": "SECTION", + "id": "F7OVox4TtLP", + "indicators": [], + "interpretations": [], + "legendSets": [], + "mobile": false, + "name": "Malaria old records only", + "noValueRequiresComment": false, + "notifyCompletingUser": false, + "openFuturePeriods": 0, + "openPeriodsAfterCoEndDate": 0, + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "--------", + "renderAsTabs": false, + "renderHorizontally": false, + "sections": [ + { + "id": "Ms74sn15vUt" + } + ], + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-r-----", + "id": "ZXEVDM9XRea" + }, + "fRSrUJ6SMGH": { + "access": "r-rw----", + "id": "fRSrUJ6SMGH" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria old records only", + "skipOffline": false, + "timelyDays": 15, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "r-r-----", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + }, + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-rw----", + "id": "fRSrUJ6SMGH", + "userGroupUid": "fRSrUJ6SMGH" + } + ], + "validCompleteOnly": false, + "version": 4 + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_OTHER", + "compulsoryDataElementOperands": [], + "compulsoryFieldsCompleteOnly": false, + "dataElementDecoration": false, + "dataInputPeriods": [], + "dataSetElements": [ + { + "dataElement": { + "id": "nwzSeTAxCGV" + }, + "dataSet": { + "id": "wEKWiVnc4Pe" + } + }, + { + "dataElement": { + "id": "LhcXjWs6lm7" + }, + "dataSet": { + "id": "wEKWiVnc4Pe" + } + } + ], + "description": "Data elements related to Malaria, but not part of the Malaria data sets for data collection. Used to export relevant data elements with dependencies for packaging.", + "dimensionItem": "wEKWiVnc4Pe", + "dimensionItemType": "REPORTING_RATE", + "expiryDays": 0, + "externalAccess": false, + "favorite": false, + "fieldCombinationRequired": false, + "formType": "DEFAULT", + "id": "wEKWiVnc4Pe", + "indicators": [], + "interpretations": [], + "legendSets": [], + "mobile": false, + "name": "Malaria-other related data", + "noValueRequiresComment": false, + "notifyCompletingUser": false, + "openFuturePeriods": 0, + "openPeriodsAfterCoEndDate": 0, + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "--------", + "renderAsTabs": false, + "renderHorizontally": false, + "sections": [], + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-r-----", + "id": "ZXEVDM9XRea" + }, + "fRSrUJ6SMGH": { + "access": "rwrw----", + "id": "fRSrUJ6SMGH" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria-other related data", + "skipOffline": false, + "timelyDays": 15, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "r-r-----", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + }, + { + "access": "rwrw----", + "id": "fRSrUJ6SMGH", + "userGroupUid": "fRSrUJ6SMGH" + }, + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + } + ], + "validCompleteOnly": false, + "version": 5 + }, + { + "attributeValues": [], + "categoryCombo": { + "id": "bjDvmb4bfuf" + }, + "code": "MAL_STOCK", + "compulsoryDataElementOperands": [], + "compulsoryFieldsCompleteOnly": false, + "dataElementDecoration": false, + "dataInputPeriods": [], + "dataSetElements": [ + { + "dataElement": { + "id": "BdRI37FNDJs" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "RRA1O37nLn0" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "Qv9b5QAOO0F" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "VTunnWZqQCj" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "eCKSKNgHJqe" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "ImjPjbE2rFm" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "CsJm4IsvXqg" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "pNalmL0t0uk" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "mTR90t8ea5x" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "U4kmpM14xhJ" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "zM1vd2VeCss" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "CPBuuIiDnn8" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "f7z0IhHVWBT" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "RJkNUMqVTRC" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "DEasiq2eO60" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "uFwkuqBgI29" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "KQvuAWwOPnE" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "oIi0Ybn06e2" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "GDBHGyXJI2T" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "iaQuylCoH3u" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "B3ItBcjVieC" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "F7L5jVrWnHi" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "N6uAJQjkRQl" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "C3vtx1aie2U" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "GIhoITcc0jp" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "SldWQ0uCFA2" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "YnKOG0WVtlq" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "OpiuZiAzEwQ" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "jynElcE3gF0" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "x4A99GZbg5k" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "o3fW3Hgo9GO" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "NFMzN9Up5zQ" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "ZnifKT2U88N" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "THsfR427giB" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "ZRUpLZ2HVEH" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "twoxyChxlC3" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "xysDfJ6oPMh" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "kk2ClooVm41" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "To2fZcY5oUS" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "F7BWpIVSEpM" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "HOEMlLX5SMC" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + }, + { + "dataElement": { + "id": "CBKXL15dSwQ" + }, + "dataSet": { + "id": "PRiItBuYx0e" + } + } + ], + "dimensionItem": "PRiItBuYx0e", + "dimensionItemType": "REPORTING_RATE", + "expiryDays": 0, + "externalAccess": false, + "favorite": false, + "fieldCombinationRequired": false, + "formType": "SECTION", + "id": "PRiItBuYx0e", + "indicators": [], + "interpretations": [], + "legendSets": [], + "mobile": false, + "name": "Malaria stock", + "noValueRequiresComment": false, + "notifyCompletingUser": false, + "openFuturePeriods": 0, + "openPeriodsAfterCoEndDate": 0, + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "--------", + "renderAsTabs": true, + "renderHorizontally": false, + "sections": [ + { + "id": "kDdKnSo5LCM" + }, + { + "id": "VK8YuFIeOYD" + }, + { + "id": "nMzryrLgK43" + }, + { + "id": "EslNQtEovqx" + }, + { + "id": "bRcyBMNSZx2" + }, + { + "id": "Es3XInUjtO2" + }, + { + "id": "PBEjcCjyuVN" + } + ], + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-r-----", + "id": "ZXEVDM9XRea" + }, + "s5MVdN5Ehkz": { + "access": "r-rw----", + "id": "s5MVdN5Ehkz" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria stock", + "skipOffline": false, + "timelyDays": 15, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "r-r-----", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + }, + { + "access": "r-rw----", + "id": "s5MVdN5Ehkz", + "userGroupUid": "s5MVdN5Ehkz" + }, + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + } + ], + "validCompleteOnly": false, + "version": 57 + } + ], + "documents": [], + "eventCharts": [], + "eventReports": [], + "indicatorGroupSets": [ + { + "attributeValues": [], + "compulsory": true, + "description": "Main indicator groups (by programme/disease)", + "externalAccess": false, + "favorite": false, + "id": "ctq2uZDeEom", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + } + ], + "name": "Main indicator groups", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "indicatorGroups": [ + { + "attributeValues": [], + "code": "MAL_BR", + "externalAccess": false, + "favorite": false, + "id": "qi3acNeMc6V", + "indicators": [ + { + "id": "qsOjtTbXJgJ" + }, + { + "id": "tIWGvDkU6lb" + }, + { + "id": "FHm610XVh02" + }, + { + "id": "rOt4BctnRqS" + }, + { + "id": "x2piMpdUU68" + }, + { + "id": "TnqCgOccFIC" + }, + { + "id": "oAJpTsMsRxv" + }, + { + "id": "JzWUCTqpITC" + }, + { + "id": "bA6kgEyRkg0" + }, + { + "id": "V3ddhQv64m9" + }, + { + "id": "KnoBf1YCOe2" + }, + { + "id": "lRBSFNlbk3D" + }, + { + "id": "lL9BxL5FSNv" + }, + { + "id": "xiHTf2TK2G5" + }, + { + "id": "rPYLomUceL4" + }, + { + "id": "VxAkjvBMvfp" + }, + { + "id": "cDyuNvxtBQn" + }, + { + "id": "FdfpxYmcsC3" + }, + { + "id": "Ffi38WOC65w" + }, + { + "id": "acDxsQjnEof" + }, + { + "id": "KYMYmQUL7zN" + }, + { + "id": "yobFlvQGbSO" + }, + { + "id": "SLOVMJHssO0" + }, + { + "id": "yxl57MQlamu" + }, + { + "id": "xxiqVdVTF8z" + }, + { + "id": "J06o672aumY" + }, + { + "id": "zItDfNaCDcR" + }, + { + "id": "AF99VXqV5Fe" + }, + { + "id": "rd71eVlLezw" + }, + { + "id": "Awf6lC57zdP" + }, + { + "id": "SqFthnK8FJY" + }, + { + "id": "w44M511O2yp" + }, + { + "id": "C3Nky5d1C2y" + }, + { + "id": "K1DkT2kokjD" + }, + { + "id": "hAAyWEh4Xf0" + }, + { + "id": "QHcjn7FHI2w" + }, + { + "id": "BhoZ0XenErj" + }, + { + "id": "rJT9jsfSplB" + }, + { + "id": "EiWBxnS9wmk" + }, + { + "id": "WXcGJXnuZ28" + }, + { + "id": "mDoGCMbIMUc" + }, + { + "id": "l0TE4LdzE8j" + }, + { + "id": "YbO5j3XYABU" + }, + { + "id": "CpJtAPDdxae" + }, + { + "id": "PHKTIO5iFgA" + }, + { + "id": "yMp1E2wohb4" + }, + { + "id": "xZPfJVUrSsm" + } + ], + "name": "Malaria burden reduction", + "publicAccess": "--------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": {}, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "code": "MAL_DQ", + "externalAccess": false, + "favorite": false, + "id": "XKfUbxFNWaY", + "indicators": [ + { + "id": "KThZ4t55Q0A" + }, + { + "id": "uPuVP7vVv75" + }, + { + "id": "fr1H0xM09uP" + }, + { + "id": "RgRkvZiQaSt" + }, + { + "id": "avidQanPyxp" + }, + { + "id": "oAJpTsMsRxv" + }, + { + "id": "DGfysK6msvW" + }, + { + "id": "kRM758TS6p7" + }, + { + "id": "zItDfNaCDcR" + }, + { + "id": "CHUBTqdiCeO" + }, + { + "id": "CgIjjRIEx9y" + }, + { + "id": "bBtpTPIvpNz" + }, + { + "id": "OCRFvqr1UkZ" + }, + { + "id": "f2dqukJgSxy" + }, + { + "id": "ZlpqQCFLo2i" + }, + { + "id": "AAFrGj6qxF9" + }, + { + "id": "yeQBWgHr3Wf" + }, + { + "id": "QHcjn7FHI2w" + }, + { + "id": "OS3CLHlk3HS" + }, + { + "id": "MwpGLM7V7vn" + }, + { + "id": "B0HiDb6gBa1" + }, + { + "id": "VxAkjvBMvfp" + }, + { + "id": "C4MxCbqDJFy" + }, + { + "id": "LCSjdxqMz7U" + }, + { + "id": "acDxsQjnEof" + }, + { + "id": "APlaSyVyMqx" + } + ], + "name": "Malaria data quality", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "code": "MAL_EL", + "externalAccess": false, + "favorite": false, + "id": "mrrlu8kux0s", + "indicators": [ + { + "id": "AdyubP1OaxP" + }, + { + "id": "N8S7Vnntced" + }, + { + "id": "sl7EVPFXps8" + }, + { + "id": "tIWGvDkU6lb" + }, + { + "id": "yobFlvQGbSO" + }, + { + "id": "x2piMpdUU68" + }, + { + "id": "fvSA2BtaTBX" + }, + { + "id": "dKbHt6OB5x1" + }, + { + "id": "bZojnzkbvrZ" + }, + { + "id": "bA6kgEyRkg0" + }, + { + "id": "yC9EwmnP8L0" + }, + { + "id": "A1o8U4zmzvA" + }, + { + "id": "Uzmk0S9IwWn" + }, + { + "id": "vK4qNvAtZsG" + }, + { + "id": "hAAyWEh4Xf0" + }, + { + "id": "IGVgCwUaaVz" + }, + { + "id": "EEuvMCljxc9" + }, + { + "id": "VoN285Q7FQG" + }, + { + "id": "blS3OjRXn0c" + }, + { + "id": "rPYLomUceL4" + }, + { + "id": "RLxhxT7sO0R" + }, + { + "id": "npqu6fhBVpe" + }, + { + "id": "JZegZ4SDzDs" + }, + { + "id": "dASLnPMS8L8" + }, + { + "id": "xZPfJVUrSsm" + } + ], + "name": "Malaria elimination", + "publicAccess": "--------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": {}, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "code": "MAL_STOCK", + "externalAccess": false, + "favorite": false, + "id": "IHFoEstZjfl", + "indicators": [ + { + "id": "s4n3zSyciLw" + }, + { + "id": "RoeRc4k513l" + }, + { + "id": "TkwXRuRQSYi" + }, + { + "id": "HESD7pkLakc" + }, + { + "id": "mm9hChdAyl3" + }, + { + "id": "bmjvOFB90Se" + }, + { + "id": "tCFll2clsVs" + }, + { + "id": "LlI38w39pwW" + }, + { + "id": "hjdbr1rTKff" + }, + { + "id": "oXCc5MR3LLi" + }, + { + "id": "t7lgbT05u3k" + }, + { + "id": "xi2S1d7LJBc" + }, + { + "id": "DZTSUh1DFyX" + }, + { + "id": "fqkymAhfnbg" + }, + { + "id": "sUuIRRJgHDl" + }, + { + "id": "h0iRcZhDsLe" + }, + { + "id": "xiI6aQRNUVX" + }, + { + "id": "W34cMM4atBf" + }, + { + "id": "Dh4kab2L39R" + }, + { + "id": "fkSnzZMYE4F" + }, + { + "id": "iEUye81vR8U" + }, + { + "id": "DEURBGqN6fO" + }, + { + "id": "DpbZBWj6bLQ" + }, + { + "id": "WxXtpE1zdeJ" + }, + { + "id": "lCUNJpZTDQJ" + }, + { + "id": "hGNzrW1xbQN" + }, + { + "id": "p2s6iZcpke1" + }, + { + "id": "zKXBN1jGXIu" + }, + { + "id": "o3FTGfWDUpz" + }, + { + "id": "zCXWGi6fEsw" + }, + { + "id": "eGISFgA3Cah" + }, + { + "id": "RBnVKphd48z" + }, + { + "id": "OzpsrdzqZXp" + }, + { + "id": "pDC6NBURuaz" + }, + { + "id": "ket0CCCIHKs" + }, + { + "id": "tS54JH4t0KS" + }, + { + "id": "uihjx61H8ai" + }, + { + "id": "QJv5i3fzFBJ" + }, + { + "id": "e4QSHL8T5Fm" + }, + { + "id": "Rf6DhpY8DeK" + }, + { + "id": "eiom58iY0UA" + }, + { + "id": "LboUZfKr9EP" + }, + { + "id": "b3yNPcHGMNN" + }, + { + "id": "ClIrLxTeQgG" + }, + { + "id": "Pt9zvTAmuC2" + }, + { + "id": "rL482g0s5JL" + }, + { + "id": "vBNyVNLGZ5D" + }, + { + "id": "hCj9BqpyMvT" + }, + { + "id": "YX7dJbo7uTA" + }, + { + "id": "vRfTmlOxzFa" + }, + { + "id": "I5XKoyarjKG" + }, + { + "id": "BU9sYJVOslw" + }, + { + "id": "UdyTo2oqzZO" + }, + { + "id": "foz7nuOFMNR" + }, + { + "id": "sj3URzajB3C" + }, + { + "id": "ajmJXVocM7a" + }, + { + "id": "J3UT51fnJjS" + }, + { + "id": "u6rtNvz2C98" + }, + { + "id": "x4CIsntvniz" + }, + { + "id": "psJy41rJsiE" + }, + { + "id": "Eqy5Nnb0Rpz" + }, + { + "id": "ClIQBqasYpm" + }, + { + "id": "ePye02livLt" + }, + { + "id": "SjXESP7zKb2" + }, + { + "id": "f2zrEcfETgL" + }, + { + "id": "BI6l7Poo65o" + }, + { + "id": "IeUbxBdwDTf" + }, + { + "id": "GNvUj6KNaDM" + }, + { + "id": "xIZVZJ7yiAP" + }, + { + "id": "Yf0KTxLcRPE" + }, + { + "id": "wswCPFCyUG8" + }, + { + "id": "CbvSCPmaz5d" + }, + { + "id": "f1XLmFIwlrK" + }, + { + "id": "SgRaBPYdJfg" + }, + { + "id": "vqO9cXAmYcE" + } + ], + "name": "Malaria stock", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "code": "MAL", + "externalAccess": false, + "favorite": false, + "id": "YKVsWm3b47n", + "indicatorGroupSet": { + "id": "ctq2uZDeEom" + }, + "indicators": [ + { + "id": "N8S7Vnntced" + }, + { + "id": "qsOjtTbXJgJ" + }, + { + "id": "tIWGvDkU6lb" + }, + { + "id": "fr1H0xM09uP" + }, + { + "id": "FHm610XVh02" + }, + { + "id": "x2piMpdUU68" + }, + { + "id": "bZojnzkbvrZ" + }, + { + "id": "oAJpTsMsRxv" + }, + { + "id": "DGfysK6msvW" + }, + { + "id": "bA6kgEyRkg0" + }, + { + "id": "CgIjjRIEx9y" + }, + { + "id": "bBtpTPIvpNz" + }, + { + "id": "V3ddhQv64m9" + }, + { + "id": "lRBSFNlbk3D" + }, + { + "id": "Uzmk0S9IwWn" + }, + { + "id": "vK4qNvAtZsG" + }, + { + "id": "xiHTf2TK2G5" + }, + { + "id": "blS3OjRXn0c" + }, + { + "id": "C4MxCbqDJFy" + }, + { + "id": "Ffi38WOC65w" + }, + { + "id": "LCSjdxqMz7U" + }, + { + "id": "acDxsQjnEof" + }, + { + "id": "t7lgbT05u3k" + }, + { + "id": "tgzppnN2DsG" + }, + { + "id": "KYMYmQUL7zN" + }, + { + "id": "SLOVMJHssO0" + }, + { + "id": "yxl57MQlamu" + }, + { + "id": "fvSA2BtaTBX" + }, + { + "id": "avidQanPyxp" + }, + { + "id": "xxiqVdVTF8z" + }, + { + "id": "J06o672aumY" + }, + { + "id": "rd71eVlLezw" + }, + { + "id": "OCRFvqr1UkZ" + }, + { + "id": "yC9EwmnP8L0" + }, + { + "id": "w44M511O2yp" + }, + { + "id": "SqFthnK8FJY" + }, + { + "id": "A1o8U4zmzvA" + }, + { + "id": "C3Nky5d1C2y" + }, + { + "id": "f2dqukJgSxy" + }, + { + "id": "K1DkT2kokjD" + }, + { + "id": "BhoZ0XenErj" + }, + { + "id": "rJT9jsfSplB" + }, + { + "id": "EEuvMCljxc9" + }, + { + "id": "MwpGLM7V7vn" + }, + { + "id": "B0HiDb6gBa1" + }, + { + "id": "EiWBxnS9wmk" + }, + { + "id": "RLxhxT7sO0R" + }, + { + "id": "l0TE4LdzE8j" + }, + { + "id": "npqu6fhBVpe" + }, + { + "id": "GCbegvX9iGe" + }, + { + "id": "yMp1E2wohb4" + }, + { + "id": "xZPfJVUrSsm" + }, + { + "id": "AdyubP1OaxP" + }, + { + "id": "KThZ4t55Q0A" + }, + { + "id": "uPuVP7vVv75" + }, + { + "id": "eGISFgA3Cah" + }, + { + "id": "rOt4BctnRqS" + }, + { + "id": "TnqCgOccFIC" + }, + { + "id": "JzWUCTqpITC" + }, + { + "id": "KnoBf1YCOe2" + }, + { + "id": "ZlpqQCFLo2i" + }, + { + "id": "lL9BxL5FSNv" + }, + { + "id": "Ec4z30wDGVH" + }, + { + "id": "IGVgCwUaaVz" + }, + { + "id": "VoN285Q7FQG" + }, + { + "id": "rPYLomUceL4" + }, + { + "id": "VxAkjvBMvfp" + }, + { + "id": "FdfpxYmcsC3" + }, + { + "id": "cDyuNvxtBQn" + }, + { + "id": "JZegZ4SDzDs" + }, + { + "id": "APlaSyVyMqx" + }, + { + "id": "sl7EVPFXps8" + }, + { + "id": "yobFlvQGbSO" + }, + { + "id": "RgRkvZiQaSt" + }, + { + "id": "dKbHt6OB5x1" + }, + { + "id": "kRM758TS6p7" + }, + { + "id": "zItDfNaCDcR" + }, + { + "id": "AF99VXqV5Fe" + }, + { + "id": "CHUBTqdiCeO" + }, + { + "id": "Awf6lC57zdP" + }, + { + "id": "QHcjn7FHI2w" + }, + { + "id": "OS3CLHlk3HS" + }, + { + "id": "WXcGJXnuZ28" + }, + { + "id": "mDoGCMbIMUc" + }, + { + "id": "PHKTIO5iFgA" + }, + { + "id": "YbO5j3XYABU" + }, + { + "id": "Yf0KTxLcRPE" + }, + { + "id": "CpJtAPDdxae" + }, + { + "id": "dqv9OGG0hzy" + }, + { + "id": "dASLnPMS8L8" + } + ], + "name": "[OLD] Malaria", + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + } + ], + "indicatorTypes": [ + { + "attributeValues": [], + "code": "NUMBER_ONLY", + "externalAccess": false, + "factor": 1, + "favorite": false, + "id": "kHy61PbChXr", + "name": "Numerator only (number)", + "number": true, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Numérateur seulement (nombre)" + }, + { + "locale": "es", + "property": "NAME", + "value": "Solo numerador (número)" + }, + { + "locale": "ru", + "property": "NAME", + "value": "Тоько числитель (число)" + }, + { + "locale": "ar", + "property": "NAME", + "value": "البسط فقط (رقم)" + }, + { + "locale": "uz", + "property": "NAME", + "value": "Фақат рақамловчи (рақам)" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Apenas numerador (número)" + }, + { + "locale": "nb", + "property": "NAME", + "value": "Kun teller (tall)" + }, + { + "locale": "cs", + "property": "NAME", + "value": "Pouze čitatel (číslo)" + } + ], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "externalAccess": false, + "factor": 1000, + "favorite": false, + "id": "zpa0vUC7IWd", + "name": "Per 1000", + "number": false, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "externalAccess": false, + "factor": 10000, + "favorite": false, + "id": "FWTvArgP0jt", + "name": "Per 10 000", + "number": false, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Pour 10 000" + } + ], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "code": "PERCENT", + "externalAccess": false, + "factor": 100, + "favorite": false, + "id": "hmSnCXmLYwt", + "name": "Percentage", + "number": false, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [ + { + "locale": "uz", + "property": "NAME", + "value": "Фоиз" + }, + { + "locale": "id", + "property": "NAME", + "value": "Persentase" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Percentagem" + }, + { + "locale": "cs", + "property": "NAME", + "value": "Procento" + }, + { + "locale": "fr", + "property": "NAME", + "value": "Pourcentage" + }, + { + "locale": "ru", + "property": "NAME", + "value": "Процент" + }, + { + "locale": "ar", + "property": "NAME", + "value": "نسبة" + }, + { + "locale": "nb", + "property": "NAME", + "value": "Prosentdel" + }, + { + "locale": "es", + "property": "NAME", + "value": "Por 100" + }, + { + "locale": "uz_UZ", + "property": "NAME", + "value": "Foiz" + } + ], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "externalAccess": false, + "factor": 1, + "favorite": false, + "id": "k4RGC3sMTzO", + "name": "Rate (factor=1)", + "number": false, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Taux (facteur = 1)" + }, + { + "locale": "cs", + "property": "NAME", + "value": "Četnost (faktor=1)" + }, + { + "locale": "uz", + "property": "NAME", + "value": "Ставка (омил = 1)" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Taxa (fator = 1)" + }, + { + "locale": "ru", + "property": "NAME", + "value": "Показатель/доля (фактор=1)" + } + ], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "indicators": [ + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_ALL_IPD_ALL_OPD", + "dataSets": [], + "denominator": "#{VL73cqNHxBJ}", + "denominatorDescription": "All-cause outpatient cases", + "description": "Admission rate: Number of all-cause inpatients (admissions) divided by all-cause outpatients multiplied by 100.", + "dimensionItem": "yxl57MQlamu", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "yxl57MQlamu", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - All-admissions/all outpatients (%)", + "numerator": "#{BjDrgVrkBI3}", + "numeratorDescription": "All-cause inpatient", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "% of all-admissions/all outpatients", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "% de toutes les hospitalisation / tous les cas ambulatoires" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - % de toutes les hospitalisation / tous les cas ambulatoires" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "ALL_CAUSE_DTH_REPORTED_%", + "dataSets": [], + "denominator": "R{O34y2Kyxx6P.ACTUAL_REPORTS}", + "denominatorDescription": "Actual report for malaria burden reduction", + "description": "Count of reported all-cause death divided by actual number of reports received multiplied by 100", + "dimensionItem": "fr1H0xM09uP", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "fr1H0xM09uP", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - All-cause death actual reported (%)", + "numerator": "#{SXGjaEobp6V}", + "numeratorDescription": "All-cause death", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "% All-cause deaths actual reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "ALL_CAUSE_DTH_GT_MAL_IPD_DTH", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "All cause deaths minus malaria inpatient deaths", + "dimensionItem": "CHUBTqdiCeO", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "CHUBTqdiCeO", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSet": { + "id": "UKMxIj4iCfO" + }, + "legendSets": [ + { + "id": "UKMxIj4iCfO" + } + ], + "name": "MAL - All cause deaths>Malaria inpatient deaths", + "numerator": "#{SXGjaEobp6V}-#{GxlrIgMyEf4}", + "numeratorDescription": "All cause deaths - Malaria inpatient deaths", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "All cause deaths>Malaria inpatient deaths", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "ALL_CAUSE_IPT_REPORTED_%", + "dataSets": [], + "denominator": "R{O34y2Kyxx6P.ACTUAL_REPORTS}", + "denominatorDescription": "Actual report for malaria burden reduction", + "description": "Count of reported all-cause inpatient divided by actual number of reports received multiplied by 100", + "dimensionItem": "DGfysK6msvW", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "DGfysK6msvW", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - All-cause inpatient actual reported (%)", + "numerator": "#{BjDrgVrkBI3}", + "numeratorDescription": "All-cause inpatient", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "% All-cause admissions actual reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "ALL_CAUSE_IPD_GT_MAL_IPD", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "All cause inpatients minus malaria inpatients", + "dimensionItem": "avidQanPyxp", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "avidQanPyxp", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSet": { + "id": "UKMxIj4iCfO" + }, + "legendSets": [ + { + "id": "UKMxIj4iCfO" + } + ], + "name": "MAL - All cause inpatients>Malaria inpatients", + "numerator": "#{BjDrgVrkBI3} - #{v0WZQQ6gKAX}", + "numeratorDescription": "All cause inpatients - Malaria inpatients", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "All cause inpatients>Malaria inpatients", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "ALL _CAUSE_OPD_REPORTED_%", + "dataSets": [], + "denominator": "R{O34y2Kyxx6P.ACTUAL_REPORTS}", + "denominatorDescription": "Actual report for malaria burden reduction", + "description": "Count of reported all-cause outpatient cases divided by actual number of reports received multiplied by 100", + "dimensionItem": "bBtpTPIvpNz", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "bBtpTPIvpNz", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - All-cause outpatient cases actual reported (%)", + "numerator": "#{VL73cqNHxBJ}", + "numeratorDescription": "All-cause outpatient cases", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "% All-cause outpatient actual reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "ALL_CAUSE OPD_GT_TOTAL_MAL", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "All cause outpatients minus total malaria cases", + "dimensionItem": "APlaSyVyMqx", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "APlaSyVyMqx", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSet": { + "id": "UKMxIj4iCfO" + }, + "legendSets": [ + { + "id": "UKMxIj4iCfO" + } + ], + "name": "MAL - All cause outpatients>Total malaria cases", + "numerator": "#{VL73cqNHxBJ}-#{kRasaq1REFp}", + "numeratorDescription": "all cause outpatients - total malaria cases", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "All cause outpatients>Total malaria cases", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_ALL_DEATHS_ALL_ADMIS", + "dataSets": [], + "denominator": "#{BjDrgVrkBI3}", + "denominatorDescription": "All-cause admission", + "description": "Fatality rate : Number of all-cause deaths divided by all-cause admissions multiplied by 100", + "dimensionItem": "cDyuNvxtBQn", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "cDyuNvxtBQn", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - All-deaths/all admissions (%)", + "numerator": "#{SXGjaEobp6V}", + "numeratorDescription": "All-cause death", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "% of all-deaths/all admissions", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "% de tous les décès / Cas d'hospitalisations" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - % de tous les décès / Cas d'hospitalisations" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "OPD_MAL_CONF_PRES_REPORTED_%", + "dataSets": [], + "denominator": "R{O34y2Kyxx6P.ACTUAL_REPORTS}", + "denominatorDescription": "Actual report for malaria burden reduction", + "description": "Count of reported total malaria cases (confirmed + presumed) divided by actual number of reports received multiplied by 100", + "dimensionItem": "f2dqukJgSxy", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "f2dqukJgSxy", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - All malaria cases actual reported (%)", + "numerator": "#{kRasaq1REFp}", + "numeratorDescription": "Total malaria cases (confirmed + presumed)", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "All malaria cases actual reported (%)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ANC1", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "First visit by a pregnant woman to a health facility to primarily receive antenatal care. The first antenatal visit may be referred to as a ‘booking or scheduled visit’ when various processes are done as per the national policy.", + "dimensionItem": "hAAyWEh4Xf0", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "hAAyWEh4Xf0", + "indicatorGroups": [ + { + "id": "mrrlu8kux0s" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - ANC 1st visit", + "numerator": "#{n0tgQ4PjnnT}", + "numeratorDescription": "ANC 1st visit", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ANC 1st visit", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": true, + "attributeValues": [], + "code": "MAL_ABER", + "dataSets": [], + "denominator": "#{cOVhTyW8zN6} ", + "denominatorDescription": "Population at risk", + "description": "The number of parasitological test conducted for malaria per 100 population per year", + "dimensionItem": "SqFthnK8FJY", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "SqFthnK8FJY", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSet": { + "id": "phSksJ6YPO4" + }, + "legendSets": [ + { + "id": "phSksJ6YPO4" + } + ], + "name": "MAL - Annual blood examination rate (ABER)", + "numerator": "#{DPNsg3wjxGm}+#{pmRn0GsUfr6}", + "numeratorDescription": "Cases tested with microscopy + Cases tested with RDT", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "ABER", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Taux annuel d’examens hématologiques" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Taux annuel d’examens hématologiques" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": true, + "attributeValues": [], + "code": "MAL_API", + "dataSets": [], + "denominator": "#{cOVhTyW8zN6} ", + "denominatorDescription": "Population at risk*Foci classified as endemic or active (with confirmed local cases for at least the past 2 years)", + "description": "(Confirmed cases during 1 year/population at risk) x 1000", + "dimensionItem": "YbO5j3XYABU", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "YbO5j3XYABU", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "zpa0vUC7IWd" + }, + "legendSets": [], + "name": "MAL - Annual malaria parasite incidence (API)", + "numerator": "#{enVf9I39FRZ} + #{vTRrNdOOT9g} +(#{cE8SDxizo5s} -(#{DPNsg3wjxGm}+#{pmRn0GsUfr6}))", + "numeratorDescription": "Total malaria confirmed cases", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "API", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - l'incidence parasitaire annuelle (IPA)" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "l'incidence parasitaire annuelle (IPA)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_CASE_FATAL_RATE_MAL_IPD", + "dataSets": [], + "denominator": "#{v0WZQQ6gKAX}", + "denominatorDescription": "Malaria inpatients", + "description": "Malaria case fatality rate (inpatient): number of malaria deaths divided by malaria admissions multiplied by 100", + "dimensionItem": "V3ddhQv64m9", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "V3ddhQv64m9", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Case fatality rate (malaria admissions)", + "numerator": "#{GxlrIgMyEf4}", + "numeratorDescription": "Malaria deaths", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "CFR (of malaria admissions)", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Taux de létalité (malaria hospitalisations)" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Taux de létalité (malaria hospitalisations)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_CASE_FATAL_RATE_MAL_OPD", + "dataSets": [], + "denominator": "#{kRasaq1REFp}", + "denominatorDescription": "Outpatient malaria cases (confirmed + presumed)", + "description": "Malaria case fatality rate (outpatient): number of malaria admissions divided by total number of outpatient malaria cases multiplied by 100", + "dimensionItem": "KYMYmQUL7zN", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "KYMYmQUL7zN", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Case fatality rate (malaria outpatients)", + "numerator": "#{GxlrIgMyEf4}", + "numeratorDescription": "Malaria deaths", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "CFR (of malaria outpatients)", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Taux de létalité (malaria (ambulatoires)" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Taux de létalité (malaria (ambulatoires)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": true, + "attributeValues": [], + "code": "MAL_CONF_CASES_PER_1000", + "dataSets": [], + "denominator": "#{cOVhTyW8zN6} ", + "denominatorDescription": "Population at risk", + "description": "Number of confirmed malaria cases identified through active and passive surveillance activities over a 1-year period x 1000 divided by mid-year number of persons at risk for malaria infection during reporting year. Note: Cases are confirmed with either microscopy or RDT; This is similar to the annual parasite incidence (API) which is a case incidence per 1000 population per year in a given administration level.", + "dimensionItem": "C3Nky5d1C2y", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "C3Nky5d1C2y", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "zpa0vUC7IWd" + }, + "legendSet": { + "id": "JUG5nRDqRFl" + }, + "legendSets": [ + { + "id": "JUG5nRDqRFl" + } + ], + "name": "MAL - Confirmed malaria cases per 1000", + "numerator": "#{enVf9I39FRZ} + #{vTRrNdOOT9g}", + "numeratorDescription": "Total malaria confirmed cases", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Malaria case per 1000", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Cas de paludisme confirmés pour 1000" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Cas de paludisme confirmés pour 1000" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_CONF_CASES_GT_ 1ST_ LINE_TX", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Confirmed malaria cases minus confirmed malaria cases treated with 1st line treatment courses (incl ACT)", + "dimensionItem": "OS3CLHlk3HS", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "OS3CLHlk3HS", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSet": { + "id": "w5nOHQy2NP8" + }, + "legendSets": [ + { + "id": "w5nOHQy2NP8" + } + ], + "name": "MAL - Confirmed malaria cases>/= Treated with 1st line courses", + "numerator": "(#{enVf9I39FRZ}+#{vTRrNdOOT9g})- #{YG5uCKZRilL}", + "numeratorDescription": "Confirmed malaria cases (MIC+RDT) - cases treated with 1st line treatment", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Confirmed malaria cases>/= 1st line TX", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PROP_FOCI_CLASS", + "dataSets": [], + "denominator": "#{lZi1cjtvVB6} ", + "denominatorDescription": "New foci identified", + "description": "Number of foci investigated and classified divided by total number of foci in the registry multiplied by 100 (in a year)", + "dimensionItem": "dKbHt6OB5x1", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "dKbHt6OB5x1", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Foci classified (%)", + "numerator": "#{EHbjdbiKtd8} ", + "numeratorDescription": "Foci classified", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci classified (%)", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Pourcentage de foyers classifiés" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Pourcentage de foyers classifiés" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PROP_FOCI_INVEST", + "dataSets": [], + "denominator": "#{lZi1cjtvVB6} ", + "denominatorDescription": "Malaria foci identified (new)", + "description": "Number of foci investigated divided by total number of foci in the registry multiplied by 100 (in a year)", + "dimensionItem": "AdyubP1OaxP", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "AdyubP1OaxP", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Foci investigated (%)", + "numerator": "#{s9FmEvF0r4n}", + "numeratorDescription": "Foci investigated", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci investigated (%)", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Pourcentage de foyers investigués" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Pourcentage de foyers investigués" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": true, + "attributeValues": [], + "code": "MAL_IPD_MAL_CASE_INC_10K", + "dataSets": [], + "denominator": "#{cOVhTyW8zN6} ", + "denominatorDescription": "Population at risk", + "description": "Incidence of inpatient malaria cases per 10,000 population in a given period (number of inpatient cases with a discharge diagnosis of malaria x 10 000/mid-year number of persons at risk for malaria infection during reporting year)", + "dimensionItem": "Awf6lC57zdP", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "Awf6lC57zdP", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "FWTvArgP0jt" + }, + "legendSets": [], + "name": "MAL - Inpatient malaria case incidence per 10,000", + "numerator": "#{v0WZQQ6gKAX}", + "numeratorDescription": "Malaria inpatients", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Inpatient malaria cases per 10,000", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Incidence des cas de paludisme chez les cas hospitalisés pour 10 000" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Incidence des cas de paludisme chez les cas hospitalisés pour 10 000" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_IPD_CASES", + "dataSets": [], + "denominator": "#{BjDrgVrkBI3}", + "denominatorDescription": "All cause inpatients", + "description": "N: Number of malaria inpatients D: All cause inpatients", + "dimensionItem": "zItDfNaCDcR", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "zItDfNaCDcR", + "indicatorGroups": [ + { + "id": "qi3acNeMc6V" + }, + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Inpatient malaria cases (%)", + "numerator": "#{v0WZQQ6gKAX}", + "numeratorDescription": "Inpatient malaria cases", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "% of inpatient malaria cases", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_IPT_REPORTED_%", + "dataSets": [], + "denominator": "R{O34y2Kyxx6P.ACTUAL_REPORTS}", + "denominatorDescription": "Actual report for malaria burden reduction", + "description": "Number of malaria inpatients divided by number of all inpatients deaths multiplied by 100", + "dimensionItem": "RgRkvZiQaSt", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "RgRkvZiQaSt", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Inpatient malaria cases actual reported (%)", + "numerator": "#{v0WZQQ6gKAX}", + "numeratorDescription": "Inpatient malaria cases", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "% Malaria admissions actual reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_TOT_MAL_CONF_CASES", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of malaria cases confirmed as positive with microscopy and/or RDT", + "dimensionItem": "rPYLomUceL4", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "rPYLomUceL4", + "indicatorGroups": [ + { + "id": "mrrlu8kux0s" + }, + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Malaria cases confirmed", + "numerator": "#{enVf9I39FRZ} + #{vTRrNdOOT9g}", + "numeratorDescription": "Total malaria confirmed cases", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria confirmed", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "microscopie et/ou TDR microscopie/TDR" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Cas de paludisme confirmés par microscopie et/ou TDR " + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_CASES_POS_MICR", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Cases confirmed as positive with microscopy", + "dimensionItem": "w44M511O2yp", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "w44M511O2yp", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Malaria cases positive microscopy", + "numerator": "#{enVf9I39FRZ}", + "numeratorDescription": "Malaria cases positive with microscopy", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Positive (micr)", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Cas de paludisme confirmés par microscopie" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Cas de paludisme confirmés par microscopie" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_CASES_TEST_TOT", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Sum of cases tested with RDT and cases tested with microscopy", + "dimensionItem": "mDoGCMbIMUc", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "mDoGCMbIMUc", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Malaria cases tested (total)", + "numerator": "#{pmRn0GsUfr6} + #{DPNsg3wjxGm}", + "numeratorDescription": "Malaria cases tested with RDT plus cases tested with microscopy", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Malaria cases tested", + "translations": [ + { + "locale": "fr", + "property": "DESCRIPTION", + "value": "La somme des cas testés par TDR et des cas testés par microscopie" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Cas testés par microscopie et/ou TDR " + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Cas testés par microscopie/TDR" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_CASES_TEST_MICR", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Suspected cases tested with malaria microscopy", + "dimensionItem": "KnoBf1YCOe2", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "KnoBf1YCOe2", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Malaria cases tested with microscopy", + "numerator": "#{DPNsg3wjxGm}", + "numeratorDescription": "Malaria cases tested with microscopy", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Tested (micr)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Cas suspects testés par microscopie" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Cas suspects testés par microscopie" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_CASES_TEST_RDT", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Suspected cases tested with malaria rapid diagnostic test (RDT)", + "dimensionItem": "l0TE4LdzE8j", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "l0TE4LdzE8j", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Malaria cases tested with RDT", + "numerator": "#{pmRn0GsUfr6}", + "numeratorDescription": "Malaria cases tested with RDT", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Tested (RDT)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Cas suspects testés par TDR" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Cas suspects testés par TDR" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_CASES_TREATED_ACT", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Total number of malaria cases (confirmed and presumed) treated with ACT", + "dimensionItem": "SLOVMJHssO0", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "SLOVMJHssO0", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Malaria cases treated with ACT", + "numerator": "#{YG5uCKZRilL} + #{Ae0TUkWm1wo}", + "numeratorDescription": "Malaria cases treated with ACT", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Malaria cases treated with ACT", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "CONFIRMED_CASES_REPORTED_%", + "dataSets": [], + "denominator": "R{O34y2Kyxx6P.ACTUAL_REPORTS}", + "denominatorDescription": "Actual report for malaria burden reduction", + "description": "Count of reported malaria confirmed cases (MIC+RDT) divided by actual number of reports received multiplied by 100", + "dimensionItem": "KThZ4t55Q0A", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "KThZ4t55Q0A", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Malaria confirmed cases actual reported (%)", + "numerator": "#{lYsfXxCw6Qi}", + "numeratorDescription": "Malaria confirmed cases reported", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "% Malaria cases actual reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_CONF_THRES2", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "dimensionItem": "tIWGvDkU6lb", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "tIWGvDkU6lb", + "indicatorGroups": [ + { + "id": "qi3acNeMc6V" + }, + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Malaria confirmed MEAN+2 STD (threshold)", + "numerator": "#{LhcXjWs6lm7.HllvX50cXC0}", + "numeratorDescription": "Malaria confirmed MEDIAN+2 STD (threshold)", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria confirmed threshold 2", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Cas confirmé 2 écarts-types de la moyenne" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Cas confirmé 2 écarts-types de la moyenne" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_CONF_THRES", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "dimensionItem": "bA6kgEyRkg0", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "bA6kgEyRkg0", + "indicatorGroups": [ + { + "id": "qi3acNeMc6V" + }, + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Malaria confirmed MEDIAN (threshold)", + "numerator": "#{nwzSeTAxCGV.HllvX50cXC0}", + "numeratorDescription": "Malaria confirmed MEDIAN (threshold)", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria confirmed threshold", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Cas confirmé médiane" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Cas confirmé médiane" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_DTH_REPORTED_%", + "dataSets": [], + "denominator": "R{O34y2Kyxx6P.ACTUAL_REPORTS}", + "denominatorDescription": "Actual report for malaria burden reduction", + "description": "Count of reported malaria deaths divided by actual number of reports received multiplied by 100", + "dimensionItem": "uPuVP7vVv75", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "uPuVP7vVv75", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Malaria deaths actual reported (%)", + "numerator": "#{GxlrIgMyEf4}", + "numeratorDescription": "Malaria deaths", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "% Malaria deaths actual reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_DEATH", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Deaths in health facility due to malaria", + "dimensionItem": "FdfpxYmcsC3", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "FdfpxYmcsC3", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Malaria deaths inpatient", + "numerator": "#{GxlrIgMyEf4}", + "numeratorDescription": "Malaria deaths", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria deaths", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Décès dus au paludisme chez les patients hospitalisés" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Décès dus au paludisme chez les patients hospitalisés" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_INPAT_MAL_CASES", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Admissions or hospitalization in health facility confirmed as malaria excluding admissions of pregnant women for delivery", + "dimensionItem": "BhoZ0XenErj", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "BhoZ0XenErj", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Malaria inpatient admissions", + "numerator": "#{v0WZQQ6gKAX}", + "numeratorDescription": "Inpatient malaria cases", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria admissions", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_IPD_DTH", + "dataSets": [], + "denominator": "#{SXGjaEobp6V}", + "denominatorDescription": "death", + "description": "Number of Inpatient malaria deaths divided by number of all deaths at facility multiplied by 100", + "dimensionItem": "AAFrGj6qxF9", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "AAFrGj6qxF9", + "indicatorGroups": [ + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Malaria inpatient deaths (%)", + "numerator": "#{GxlrIgMyEf4}", + "numeratorDescription": "Malaria deaths", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Malaria inpatient deaths (%)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_CASES_WITH_RDT", + "dataSets": [], + "denominator": "#{DPNsg3wjxGm}+#{pmRn0GsUfr6}", + "denominatorDescription": "Cases tested with microscopy + Cases tested with RDT", + "description": "Number of suspected cases tested with RDT divided by total number of suspected cases tested with either microscopy or RDT multiplied by 100", + "dimensionItem": "K1DkT2kokjD", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "K1DkT2kokjD", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Malaria tested cases by RDT (%)", + "numerator": "#{pmRn0GsUfr6}", + "numeratorDescription": "Cases tested with RDT", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "% of malaria tested cases by RDT", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "% de cas dépistés par TDR" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - % de cas dépistés par TDR" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_TPR", + "dataSets": [], + "decimals": 1, + "denominator": "#{DPNsg3wjxGm}+ #{pmRn0GsUfr6}", + "denominatorDescription": "Total tested (Micr + RDT)", + "description": "Total number of positive cases (Micr + RDT) divided by total number of tested (Micr + RDT) multiplied by 100", + "dimensionItem": "acDxsQjnEof", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "acDxsQjnEof", + "indicatorGroups": [ + { + "id": "qi3acNeMc6V" + }, + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Malaria test positivity rate (Micr+RDT) (%)", + "numerator": "#{enVf9I39FRZ}+#{vTRrNdOOT9g}", + "numeratorDescription": "Total positive cases (Micr + RDT)", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "% Malaria test positivity rate", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Taux de positivité (Micr/TDR)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "ALL_MICR_POS_REPORTED_%", + "dataSets": [], + "denominator": "R{O34y2Kyxx6P.ACTUAL_REPORTS}", + "denominatorDescription": "Actual report for malaria burden reduction", + "description": "Count of reported microscopy positive divided by actual number of reports received multiplied by 100", + "dimensionItem": "OCRFvqr1UkZ", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "OCRFvqr1UkZ", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Microscopy positive actual reported (%)", + "numerator": "#{enVf9I39FRZ}", + "numeratorDescription": "Microscopy positive", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "% microscopy positive actual reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "ALL_MICR_TESTED_REPORTED_%", + "dataSets": [], + "denominator": "R{O34y2Kyxx6P.ACTUAL_REPORTS}", + "denominatorDescription": "Actual report for malaria burden reduction", + "description": "Count of reported microscopy tested divided by actual number of reports received multiplied by 100", + "dimensionItem": "CgIjjRIEx9y", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "CgIjjRIEx9y", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Microscopy tested actual reported (%)", + "numerator": "#{DPNsg3wjxGm}", + "numeratorDescription": "Microscopy tested", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "% microscopy tested actual reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_MICR_TEST_GT_POS", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Cases tested for malaria with Microscopy minus microscopy positive", + "dimensionItem": "C4MxCbqDJFy", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "C4MxCbqDJFy", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSet": { + "id": "w5nOHQy2NP8" + }, + "legendSets": [ + { + "id": "w5nOHQy2NP8" + } + ], + "name": "MAL - Microscopy tested>/=Microscopy positive", + "numerator": "#{DPNsg3wjxGm}-#{enVf9I39FRZ}", + "numeratorDescription": "Microscopy tested - Microscopy positive", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Microscopy tested>/=Microscopy positive", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_NON_MAL_IPD_DTH", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Computed as (all-cause inpatient deaths- malaria inpatient deaths)", + "dimensionItem": "FHm610XVh02", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "FHm610XVh02", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Non-malaria deaths inpatient", + "numerator": "#{SXGjaEobp6V}-#{GxlrIgMyEf4}", + "numeratorDescription": "All-cause deaths - malaria deaths", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Non-malaria inpatient deaths", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Décès non liés au paludisme" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Décès non liés au paludisme" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_NON_MAL_IPD_CASES", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Computed as (all-cause inpatient cases - malaria inpatient cases)", + "dimensionItem": "lL9BxL5FSNv", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "lL9BxL5FSNv", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Non-malaria inpatient cases", + "numerator": "#{BjDrgVrkBI3} - #{v0WZQQ6gKAX}", + "numeratorDescription": "All-cause admission - Malaria Inpatients", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Non-malaria IPD", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Cas d'hospitalisations non liées au paludisme" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Cas d'hospitalisations non liées au paludisme" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_NON_MAL_OPD_CASES", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Computed as (all-cause outpatient cases - malaria outpatient cases)", + "dimensionItem": "J06o672aumY", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "J06o672aumY", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Non-malaria outpatient cases", + "numerator": "#{VL73cqNHxBJ}\r -\r #{kRasaq1REFp}", + "numeratorDescription": "All-cause cases OPD - OPD Mal cases", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Non-malaria OPD", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Cas ambulatoires non liés au paludisme" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Cas ambulatoires non liés au paludisme" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_OPD_CASES", + "dataSets": [], + "denominator": "#{VL73cqNHxBJ}", + "denominatorDescription": "All-cause outpatients", + "description": "Number of malaria outpatient divided by number of all outpatients multiplied by 100", + "dimensionItem": "yeQBWgHr3Wf", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "yeQBWgHr3Wf", + "indicatorGroups": [ + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Outpatient malaria cases (%)", + "numerator": "#{kRasaq1REFp}", + "numeratorDescription": "Outpatient malaria cases", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "% of outpatient malaria cases", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_OF_CASES_POTEN_TREAT_ACTS", + "dataSets": [], + "denominator": "#{jvjJ901K56K}+#{IUrl6HtHVQI}+#{lgDGha7OO9o}+#{llpG8qA0SvG}", + "denominatorDescription": "P. falciparum cases + mixed cases (Micr+RDT)", + "description": "(Number of full ACT treatment courses distributed / total number of P. falciparum cases)*100", + "dimensionItem": "xiHTf2TK2G5", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "xiHTf2TK2G5", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Percentage of cases potentially treated with ACTs", + "numerator": "#{l7gcisIvTBN}", + "numeratorDescription": "Treatment with ACT", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Cases potentially treated with ACTs (%)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Cas de paludisme potentiellement traités par CTA (%)" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Cas de paludisme potentiellement traités par CTA (%)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_CASES_CLASS", + "dataSets": [], + "denominator": "#{enVf9I39FRZ}+ #{vTRrNdOOT9g}", + "denominatorDescription": "Total malaria confirmed cases (Micr+RDT)", + "description": "situations in which a diagnostic test cannot be performed in a timely", + "dimensionItem": "bZojnzkbvrZ", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "bZojnzkbvrZ", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Percentage of malaria cases classified", + "numerator": "#{a4Cw4iPcMrY}", + "numeratorDescription": "Malaria cases classified", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "% of malaria cases classified", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Pourcentage de cas de paludisme classifiés" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Pourcentage de cas de paludisme classifiés" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_CASES_DETEC_COM_LEVEL", + "dataSets": [], + "denominator": "#{enVf9I39FRZ}+#{vTRrNdOOT9g}", + "denominatorDescription": "Cases positive with RDT + Cases positive with microscopy", + "description": "manner but a patient is suspected by the clinician to have malaria and is treated for the disease. The definition of a suspected may vary by country and should be based on the current National Malaria Treatment Guidelines. Where trend in this indicator is been analysed", + "dimensionItem": "yC9EwmnP8L0", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "yC9EwmnP8L0", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Percentage of malaria cases detected in community level", + "numerator": "#{enVf9I39FRZ}+#{vTRrNdOOT9g}", + "numeratorDescription": "Positive (Micr) + Positive (RDT) (Community only)", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "% of cases detected in community level", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Pourcentage de cas détectés au niveau communautaire (par les agents de santé communautaires)" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Pourcentage de cas détectés au niveau communautaire (par les agents de santé communautaires)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_CASES_INVES", + "dataSets": [], + "denominator": "#{enVf9I39FRZ}+\r #{vTRrNdOOT9g}", + "denominatorDescription": "Total positives", + "description": "Number of positive cases detected through PCD and investigated by total number of cases detected through PCD multiplied by 00.", + "dimensionItem": "sl7EVPFXps8", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "sl7EVPFXps8", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Percentage of malaria cases investigated", + "numerator": "#{Ppc51eaCPHb} ", + "numeratorDescription": "Malaria cases investigated", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "% of malaria cases investigated", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Pourcentage de cas investigués" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Pourcentage de cas investigués" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_CASES_NOTIF_24RS", + "dataSets": [], + "denominator": "#{enVf9I39FRZ}+#{vTRrNdOOT9g}", + "denominatorDescription": "Cases detected", + "description": "Number of confirmed malaria cases notified to national level within (N1) timeframe after confirmation, defined in the national guideline divided by total number of confirmed malaria cases through PCD multiplied by 100.", + "dimensionItem": "fvSA2BtaTBX", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "fvSA2BtaTBX", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Percentage of malaria cases notified within time frame", + "numerator": "#{Eoc8cDA52c3} ", + "numeratorDescription": "Cases notified within 2 days (from diagnosis)", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "% of malaria cases notified within N1 days", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - " + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_MAL_DTH", + "dataSets": [], + "denominator": "#{SXGjaEobp6V}", + "denominatorDescription": "All-cause deaths", + "description": "(Number of malaria inpatient deaths/all-cause inpatient deaths)x100", + "dimensionItem": "JzWUCTqpITC", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "JzWUCTqpITC", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Percentage of malaria deaths", + "numerator": "#{GxlrIgMyEf4}", + "numeratorDescription": "Malaria deaths", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "% of malaria deaths", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Pourcentage de décès liés au paludisme" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Pourcentage de décès liés au paludisme" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_IPD_MAL", + "dataSets": [], + "denominator": "#{BjDrgVrkBI3}", + "denominatorDescription": "All-cause IPD", + "description": "(Number of malaria inpatient cases/all-cause inpatient admissions)x100", + "dimensionItem": "AF99VXqV5Fe", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "AF99VXqV5Fe", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Percentage of malaria IPD", + "numerator": "#{v0WZQQ6gKAX}", + "numeratorDescription": "Malaria IPD cases", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "% of inpatient malaria", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Pourcentage de cas de paludisme hospitalisés" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Pourcentage de cas de paludisme hospitalisés" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_OPD_MAL_CASES", + "dataSets": [], + "denominator": "#{VL73cqNHxBJ}", + "denominatorDescription": "All-cause OPD", + "description": "(Number of malaria cases/all-cause outpatient consultations)x100", + "dimensionItem": "EiWBxnS9wmk", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "EiWBxnS9wmk", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Percentage of malaria OPD cases", + "numerator": "#{kRasaq1REFp}", + "numeratorDescription": "Malaria OPD cases", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "% of outpatient malaria cases", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Pourcentage de consultations ambulatoires dues au paludisme" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Pourcentage de consultations ambulatoires dues au paludisme" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_PW_REC_IPT1", + "dataSets": [], + "denominator": "#{WBmvvafUwT8}", + "denominatorDescription": "GEN - Population expected pregnant women", + "description": "Percentage of pregnant women received IPT1", + "dimensionItem": "PHKTIO5iFgA", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "PHKTIO5iFgA", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Percentage of pregnant women received IPT1", + "numerator": "#{vCwegNjEuxN}", + "numeratorDescription": "SP course received for IPTp (1st dose)", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Percentage of pregnant women received IPT1", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_PW_REC_IPT3", + "dataSets": [], + "denominator": "#{WBmvvafUwT8}", + "denominatorDescription": "GEN - Population expected pregnant women", + "description": "Percentage of pregnant women received IPT3", + "dimensionItem": "lRBSFNlbk3D", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "lRBSFNlbk3D", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Percentage of pregnant women received IPT3", + "numerator": "#{SPhiBDEbG0o}", + "numeratorDescription": "SP course received for IPTp (3rd dose)", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Percentage of pregnant women received IPT3", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_POP_AT_RISK", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Population living in areas where malaria transmission is possible, i.e. population living in either endemic area, or in elimination settings in active foci, residual non-active. May also include population in cleared foci where interventions continue because is still receptive", + "dimensionItem": "TnqCgOccFIC", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "TnqCgOccFIC", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Population at risk for malaria", + "numerator": "#{cOVhTyW8zN6} ", + "numeratorDescription": "Population at risk", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Population at risk", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Population à risque" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Population à risque" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "dataSets": [], + "denominator": "(#{enVf9I39FRZ} + #{vTRrNdOOT9g})+(#{cE8SDxizo5s} - (#{enVf9I39FRZ} + #{vTRrNdOOT9g}))", + "denominatorDescription": "Total malaria cases (confirmed + presumed)", + "description": "Total presumed malaria cases / Total malaria cases (confirmed + presumed)", + "dimensionItem": "xxiqVdVTF8z", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "xxiqVdVTF8z", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Presumed cases (%)", + "numerator": "#{cE8SDxizo5s} - (#{enVf9I39FRZ} + #{vTRrNdOOT9g})", + "numeratorDescription": "Total presumed malaria cases", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Presumed cases (%)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PRES_CASES", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Case suspected of being malaria that is not confirmed by a diagnostic test.", + "dimensionItem": "yMp1E2wohb4", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "yMp1E2wohb4", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Presumed malaria cases", + "numerator": "#{cE8SDxizo5s} - (#{enVf9I39FRZ} + #{vTRrNdOOT9g})", + "numeratorDescription": "Presumed cases", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Presumed malaria cases", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Cas présumés de paludisme" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Cas présumés de paludisme" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_FOCI_ZERO_LOCAL_CASES", + "dataSets": [], + "denominator": "#{kC0lyoKVBqC} ", + "denominatorDescription": "New foci identified", + "description": "Proportion of foci (active, residual non-active) with zero local cases", + "dimensionItem": "N8S7Vnntced", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "N8S7Vnntced", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Proportion of foci (active, residual non-active) with zero local cases", + "numerator": "#{lz1FE0wvo1m} ", + "numeratorDescription": "Foci classified as endemic or active (with confirmed local cases for at least the past 2 years)", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "% of foci with zero local cases", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Proportion de foyers avec zéro cas local" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Proportion de foyers avec zéro cas local" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": true, + "attributeValues": [], + "code": "MAL_RATIO_OF_POP_IPD", + "dataSets": [], + "denominator": "#{dFaBg0HpoIL}", + "denominatorDescription": "Population", + "description": "Number of all-cause admissions (inpatients) per person per year. Number of all-cause consultations in a year divided by mid-year population", + "dimensionItem": "qsOjtTbXJgJ", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "qsOjtTbXJgJ", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Ratio of admissions", + "numerator": "#{BjDrgVrkBI3}", + "numeratorDescription": "All-cause admission", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Ratio of admissions", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Ratio d'hospitalisations" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Ratio d'hospitalisations" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": true, + "attributeValues": [], + "code": "MAL_RATIO_OF_POP_OPD", + "dataSets": [], + "denominator": "#{dFaBg0HpoIL}", + "denominatorDescription": "Population", + "description": "Number of consultations per person per year. Number of all-cause consultations in a year divided by mid-year population", + "dimensionItem": "rJT9jsfSplB", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "rJT9jsfSplB", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Ratio of consultations", + "numerator": "#{VL73cqNHxBJ}", + "numeratorDescription": "All-cause outpatient", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Ratio of consultations", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Ratio de consultations ambulatoires" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Ratio de consultations ambulatoires" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "dataSets": [], + "denominator": "#{xysDfJ6oPMh}", + "denominatorDescription": "ACTs issued", + "description": "Ratio of total malaria cases reported (confirmed + presumed) to ACTs issued.", + "dimensionItem": "WXcGJXnuZ28", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "WXcGJXnuZ28", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "k4RGC3sMTzO" + }, + "legendSets": [], + "name": "MAL - Ratio of malaria cases to ACTs issued", + "numerator": "#{kRasaq1REFp}", + "numeratorDescription": "Total malaria cases (confirmed+presumed)", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Ratio of malaria cases to ACTs issued", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "ALL_RDT_POS_REPORTED_%", + "dataSets": [], + "denominator": "R{O34y2Kyxx6P.ACTUAL_REPORTS}", + "denominatorDescription": "Actual report for malaria burden reduction", + "description": "Count of reported RDT positive divided by actual number of reports received multiplied by 100", + "dimensionItem": "MwpGLM7V7vn", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "MwpGLM7V7vn", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - RDT positive actual reported (%)", + "numerator": "#{vTRrNdOOT9g}", + "numeratorDescription": "RDT positive", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "% RDT positive actual reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_TRP_RDT", + "dataSets": [], + "denominator": "#{pmRn0GsUfr6}", + "denominatorDescription": "Tested (RDT)", + "description": "Number of malaria RDT positive cases divided by total RDT tests multiplied by 100", + "dimensionItem": "QHcjn7FHI2w", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "QHcjn7FHI2w", + "indicatorGroups": [ + { + "id": "qi3acNeMc6V" + }, + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - RDT positivity rate (%)", + "numerator": "#{vTRrNdOOT9g}", + "numeratorDescription": "Cases positive with RDT", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "% RDT positivity rate", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Taux de positivité (TDR)" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Taux de positivité (TDR)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "ALL_RDT_TESTED_REPORTED_%", + "dataSets": [], + "denominator": "R{O34y2Kyxx6P.ACTUAL_REPORTS}", + "denominatorDescription": "Actual report for malaria burden reduction", + "description": "Count of reported RDT tested divided by actual number of reports received multiplied by 100", + "dimensionItem": "ZlpqQCFLo2i", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "ZlpqQCFLo2i", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - RDT tested actual reported (%)", + "numerator": "#{pmRn0GsUfr6}", + "numeratorDescription": "RDT tested", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "% RDT tested actual reported", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_RDT_TEST_GREATER_POS", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Cases tested for malaria with RDT minus RDT positive", + "dimensionItem": "B0HiDb6gBa1", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "B0HiDb6gBa1", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSet": { + "id": "w5nOHQy2NP8" + }, + "legendSets": [ + { + "id": "w5nOHQy2NP8" + } + ], + "name": "MAL - RDT tested>/=RDT positive", + "numerator": "(#{pmRn0GsUfr6}-#{vTRrNdOOT9g})", + "numeratorDescription": "RDT tested - RDT positive", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDT tested>/=RDT positive", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_RPT_COMPLETENESS", + "dataSets": [], + "denominator": "R{O34y2Kyxx6P.EXPECTED_REPORTS}", + "denominatorDescription": "Number of health facilities expected to report", + "description": "Number of actual reports received divided by total number of health facilities expected to report", + "dimensionItem": "kRM758TS6p7", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "kRM758TS6p7", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Reporting Completeness (%)", + "numerator": "R{O34y2Kyxx6P.ACTUAL_REPORTS}", + "numeratorDescription": "Number of health facilities reported", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": " Reporting Completeness (%)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_DTH_REP_COMP_(%)", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "Number of Health Facility reports expected to report Deaths", + "description": "Number of malaria deaths reported by health facilities (public, private and NGO) divided by total number of health facilities expected to report", + "dimensionItem": "x2piMpdUU68", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "x2piMpdUU68", + "indicatorGroups": [ + { + "id": "qi3acNeMc6V" + }, + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Reporting completeness - DTH (%)", + "numerator": "-1", + "numeratorDescription": "Number of Health Facility reports received Deaths", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Mortality reporting completeness (%)", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Taux de complétude (décès)" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Taux de complétude (décès)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_IPD_REP_COMP_(%)", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "Number of Health Facility reports expected to report Inpatient", + "description": "Number of inpatient malaria cases reported by health facilities (public, private and NGO) divided by total number of health facilities expected to report", + "dimensionItem": "xZPfJVUrSsm", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "xZPfJVUrSsm", + "indicatorGroups": [ + { + "id": "qi3acNeMc6V" + }, + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Reporting completeness - IPD (%)", + "numerator": "-1", + "numeratorDescription": "Number of Health Facility reports received Inpatient", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Inpatient reporting completeness (%)", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Taux de complétude (hospitalisations)" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Taux de complétude (hospitalisations)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_OPD_REP_COMP_(%)", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "Number of Health Facility reports expected to report Outpatient", + "description": "Number of outpatient malaria cases reported by health facilities (public, private, NGO and community) divided by total number of health facilities expected to report", + "dimensionItem": "yobFlvQGbSO", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "yobFlvQGbSO", + "indicatorGroups": [ + { + "id": "qi3acNeMc6V" + }, + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Reporting completeness - OPD (%)", + "numerator": "-1", + "numeratorDescription": "Number of Health Facility reports received Outpatient", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "OPD reporting completeness (%)", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Taux de complétude (ambulatoires)" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Taux de complétude (ambulatoires)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_RPT_TIMELINESS", + "dataSets": [], + "denominator": "R{O34y2Kyxx6P.EXPECTED_REPORTS}", + "denominatorDescription": "Number of health facilities expected to report", + "description": "Number of actual reports received on time divided by total number of health facilities expected to report", + "dimensionItem": "LCSjdxqMz7U", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "LCSjdxqMz7U", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Reporting timeliness (%)", + "numerator": "R{O34y2Kyxx6P.ACTUAL_REPORTS_ON_TIME}", + "numeratorDescription": "Number of health facilities reported on time", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Reporting timeliness (%)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_SPR_MICR", + "dataSets": [], + "denominator": "#{DPNsg3wjxGm}", + "denominatorDescription": "Cases tested with microscopy", + "description": "Number of malaria microscopy positive cases divided by total microcopy tests multiplied by 100", + "dimensionItem": "oAJpTsMsRxv", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "oAJpTsMsRxv", + "indicatorGroups": [ + { + "id": "qi3acNeMc6V" + }, + { + "id": "YKVsWm3b47n" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSet": { + "id": "JUG5nRDqRFl" + }, + "legendSets": [ + { + "id": "JUG5nRDqRFl" + } + ], + "name": "MAL - Slide (microscopy) positivity rate (%)", + "numerator": "#{enVf9I39FRZ}", + "numeratorDescription": "Cases positive with microscopy", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Slide (microscopy) positivity rate (%)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Taux de positivité des lames " + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Taux de positivité des lames " + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_SP_COURS_RECV_IPTP1", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of 1st dose full treatment course of sulfadoxine-pyrimethamine received for intermittent preventive treatment in pregnancy (IPTp)", + "dimensionItem": "rd71eVlLezw", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "rd71eVlLezw", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - SP course received for IPTp (1st dose)", + "numerator": "#{vCwegNjEuxN}", + "numeratorDescription": "MAL - SP course received for IPTp (1st dose)", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "SP course received for IPTp (1st dose)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_SP_COURS_RECV_IPTP3", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of 3rd dose full treatment course of sulfadoxine-pyrimethamine received for intermittent preventive treatment in pregnancy (IPTp)", + "dimensionItem": "Ffi38WOC65w", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "Ffi38WOC65w", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - SP course received for IPTp (3rd dose)", + "numerator": "#{SPhiBDEbG0o}", + "numeratorDescription": "MAL - SP course received for IPTp (3rd dose)", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "SP course received for IPTp (3rd dose)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Illness suspected by a health worker to be due to malaria, generally on the basis of the presence of fever with or without other symptoms. Where some cases are presumed, suspected cases include tested plus presumed.", + "dimensionItem": "CpJtAPDdxae", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "CpJtAPDdxae", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Suspected malaria cases", + "numerator": "#{cE8SDxizo5s}", + "numeratorDescription": "Suspected malaria cases", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Suspected cases", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_SUSP_CASES_TEST", + "dataSets": [], + "denominator": "#{cE8SDxizo5s}", + "denominatorDescription": "Suspected malaria cases", + "description": "Number of suspected cases tested with either microscopy or RDT divided by total number of suspected cases multiplied by 100", + "dimensionItem": "VxAkjvBMvfp", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "VxAkjvBMvfp", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + }, + { + "id": "XKfUbxFNWaY" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSet": { + "id": "kZFJ670FpB6" + }, + "legendSets": [ + { + "id": "kZFJ670FpB6" + } + ], + "name": "MAL - Suspected malaria cases tested (%)", + "numerator": "#{DPNsg3wjxGm} + #{pmRn0GsUfr6}", + "numeratorDescription": "Cases tested with microscopy + Cases tested with RDT", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "% of suspected malaria cases tested", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "% de cas suspectés testés" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - % de cas suspectés testés" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_TOT_MAL_CASES_CONF", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Total number of cases reported as malaria (confirmed with either microscopy or RDT, and presumed clinically as malaria in absence of diagnosis)", + "dimensionItem": "rOt4BctnRqS", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "rOt4BctnRqS", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "qi3acNeMc6V" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Total reported malaria cases (confirmed + presumed)", + "numerator": "#{kRasaq1REFp}", + "numeratorDescription": "Total malaria cases (confirmed+presumed)", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Total malaria cases", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Cas de paludisme (presumé et confirmés )" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Cas de paludisme (presumé et confirmés )" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ACT_CLOSING_BAL", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of ACT as closing balance [Opening balance + Received - Issued - Redistributed - Discarded] at the end of the reporting period", + "dimensionItem": "zKXBN1jGXIu", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "zKXBN1jGXIu", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - ACT closing balance", + "numerator": "#{x4A99GZbg5k}+#{CBKXL15dSwQ}-#{THsfR427giB}-#{xysDfJ6oPMh}-#{ZnifKT2U88N}", + "numeratorDescription": "ACT closing bal", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACT closing balance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ACT_ISSUED", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of ACTs issued from the facility's stock", + "dimensionItem": "I5XKoyarjKG", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "I5XKoyarjKG", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - ACT issued", + "numerator": "#{xysDfJ6oPMh}", + "numeratorDescription": "MAL - ACT issued", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACTs issued", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_ACTS_AVAILABLE", + "dataSets": [], + "decimals": 1, + "denominator": "OUG{HmsefvrIHE4}", + "denominatorDescription": "Number of Districts", + "dimensionItem": "t7lgbT05u3k", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "t7lgbT05u3k", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - ACTs availability (% of health facility with stock)", + "numerator": "OUG{HmsefvrIHE4} - #{ENIbHvgpaQR}", + "numeratorDescription": "MAL - Stock-out of ACT - Adult - Pack", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACTs availability (% of HF with stock)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Disponibilité des CTAs (% de l'établissement de santé avec stock)" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Disponibilité des CTAs (% de FS avec stock)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ACT_REDISTRIBUTED", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of ACTs redistributed", + "dimensionItem": "HESD7pkLakc", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "HESD7pkLakc", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - ACTs redistributed", + "numerator": "#{ZnifKT2U88N}", + "numeratorDescription": "MAL - ACTs redistributed", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACTs redistributed", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ACT_STOCK_ON_HAND", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of ACTs stock on hand", + "dimensionItem": "SjXESP7zKb2", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "SjXESP7zKb2", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - ACTs stock on hand", + "numerator": "#{mTR90t8ea5x}", + "numeratorDescription": "MAL - ACTs stock on hand", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACTs stock on hand", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ACT_COVERAGE_TIME", + "dataSets": [], + "decimals": 0, + "denominator": "#{THsfR427giB} + #{xysDfJ6oPMh} + #{ZnifKT2U88N}", + "denominatorDescription": "consumed stock", + "dimensionItem": "TkwXRuRQSYi", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "TkwXRuRQSYi", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "k4RGC3sMTzO" + }, + "legendSet": { + "id": "f1hWZIYCTzc" + }, + "legendSets": [ + { + "id": "f1hWZIYCTzc" + } + ], + "name": "MAL - ACT stock coverage time", + "numerator": "#{CBKXL15dSwQ}+#{x4A99GZbg5k}", + "numeratorDescription": "usable stock", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACT stock coverage time", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ACT_DISCREPANCY", + "dataSets": [], + "denominator": "#{mTR90t8ea5x}", + "denominatorDescription": "stock on hand", + "description": "Percentage of the item's stock discrepancy [Stock on hand - Closing balance] / Stock on hand", + "dimensionItem": "zCXWGi6fEsw", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "zCXWGi6fEsw", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - ACT stock discrepancy (%)", + "numerator": "#{mTR90t8ea5x}-(#{x4A99GZbg5k}+#{CBKXL15dSwQ}-#{THsfR427giB}-#{xysDfJ6oPMh}-#{ZnifKT2U88N})", + "numeratorDescription": "ACT stock discrepancy", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACT stock discrepancy (%)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ACT_STOCKOUT_DAYS", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of days when the facility was stocked out of ACT blister packs (at any point during the day) during the reporting period.", + "dimensionItem": "x4CIsntvniz", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "x4CIsntvniz", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSet": { + "id": "lY1SvO1BnVg" + }, + "legendSets": [ + { + "id": "lY1SvO1BnVg" + } + ], + "name": "MAL - ACT stock out days", + "numerator": "#{pNalmL0t0uk}", + "numeratorDescription": "ACT stock out days", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACT stock out days", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "ACT_WASTAGE_RATE", + "dataSets": [], + "denominator": "((#{x4A99GZbg5k}+#{CBKXL15dSwQ}-#{THsfR427giB}-#{xysDfJ6oPMh}-#{ZnifKT2U88N})-#{mTR90t8ea5x})+#{THsfR427giB}+#{xysDfJ6oPMh}", + "denominatorDescription": "Stock used=([Closing balance]-[Stock at hand]) + discarded + dispensed to patient)", + "description": "Stock wasted=([Closing balance]-[Stock at hand]) + discarded)", + "dimensionItem": "RBnVKphd48z", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "RBnVKphd48z", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - ACT wastage rate (%)", + "numerator": "((#{x4A99GZbg5k}+#{CBKXL15dSwQ}-#{THsfR427giB}-#{xysDfJ6oPMh}-#{ZnifKT2U88N})-#{mTR90t8ea5x})+#{THsfR427giB}", + "numeratorDescription": "Stock wasted=([Closing balance]-[Stock at hand]) + discarded)", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACT wastage rate", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ARTESUNATE_CLOSING_BAL", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Artesunate as closing balance [Opening balance + Received - Issued - Redistributed - Discarded] at the end of the reporting period", + "dimensionItem": "vRfTmlOxzFa", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "vRfTmlOxzFa", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Artesunate closing balance", + "numerator": "#{F7BWpIVSEpM}+#{BdRI37FNDJs}-#{twoxyChxlC3}-#{kk2ClooVm41}-#{F7L5jVrWnHi}", + "numeratorDescription": "Artesunate closing bal", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Artesunate closing balance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ARTESUNATE_DISCARDED", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Artesunate discarded during the reporting period (expired, damaged, etc.)", + "dimensionItem": "xiI6aQRNUVX", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "xiI6aQRNUVX", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Artesunate discarded", + "numerator": "#{twoxyChxlC3}", + "numeratorDescription": "Artesunate discarded", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Artesunate discarded", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ARTESUNATE_ISSUED", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Artesunate issued from the facility's stock", + "dimensionItem": "tCFll2clsVs", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "tCFll2clsVs", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Artesunate issued", + "numerator": "#{kk2ClooVm41}", + "numeratorDescription": "MAL - Artesunate issued", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Artesunate issued", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ARTESUNATE_OPENING_BALANCE", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Artesunate opening balance", + "dimensionItem": "iEUye81vR8U", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "iEUye81vR8U", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Artesunate opening balance", + "numerator": "#{BdRI37FNDJs}", + "numeratorDescription": "MAL - Artesunate opening balance", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Artesunate opening balance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ARTESUNATE_RECV", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Artesunate received in the facility's stock", + "dimensionItem": "sUuIRRJgHDl", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "sUuIRRJgHDl", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Artesunate received", + "numerator": "#{F7BWpIVSEpM}", + "numeratorDescription": "MAL - Artesunate received", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Artesunate received", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ARTESUNATE_REDISTRIBUTED", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Artesunate redistributed", + "dimensionItem": "RoeRc4k513l", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "RoeRc4k513l", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Artesunate redistributed", + "numerator": "#{F7L5jVrWnHi}", + "numeratorDescription": "MAL - Artesunate redistributed", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Artesunate redistributed", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ARTESUNATE_STOCK_ON_HAND", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Artesunate stock on hand", + "dimensionItem": "h0iRcZhDsLe", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "h0iRcZhDsLe", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Artesunate stock on hand", + "numerator": "#{NFMzN9Up5zQ}", + "numeratorDescription": "MAL - Artesunate stock on hand", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Artesunate stock on hand", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "ARTESUNATE_WASTAGE_RATE", + "dataSets": [], + "denominator": "((#{F7BWpIVSEpM}+#{BdRI37FNDJs}-#{twoxyChxlC3}-#{kk2ClooVm41}-#{F7L5jVrWnHi})-#{NFMzN9Up5zQ})+#{twoxyChxlC3}+#{kk2ClooVm41}", + "denominatorDescription": "Stock used=([Closing balance]-[Stock at hand]) + discarded + dispensed to patient)", + "description": "Stock wasted=([Closing balance]-[Stock at hand]) + discarded)", + "dimensionItem": "p2s6iZcpke1", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "p2s6iZcpke1", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Artesunate wastage rate (%)", + "numerator": "((#{F7BWpIVSEpM}+#{BdRI37FNDJs}-#{twoxyChxlC3}-#{kk2ClooVm41}-#{F7L5jVrWnHi})-#{NFMzN9Up5zQ})+#{twoxyChxlC3}", + "numeratorDescription": "Stock wasted=([Closing balance]-[Stock at hand]) + discarded)", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Artesunate wastage rate", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ART_COVERAGE_TIME", + "dataSets": [], + "decimals": 0, + "denominator": "#{twoxyChxlC3} + #{kk2ClooVm41} + #{F7L5jVrWnHi}", + "denominatorDescription": "consumed stock", + "dimensionItem": "Pt9zvTAmuC2", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "Pt9zvTAmuC2", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "k4RGC3sMTzO" + }, + "legendSet": { + "id": "f1hWZIYCTzc" + }, + "legendSets": [ + { + "id": "f1hWZIYCTzc" + } + ], + "name": "MAL - ART stock coverage time", + "numerator": "#{BdRI37FNDJs} + #{F7BWpIVSEpM}", + "numeratorDescription": "usable stock", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ART stock coverage time", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_FOCI_IDENT_NEW_OLD", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of malaria foci identified (new+old) identified in the past 5 years (including current calendar year)", + "dimensionItem": "RLxhxT7sO0R", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "RLxhxT7sO0R", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Foci identified (new+old) in past 5 years (including current calendar year)", + "numerator": "#{kC0lyoKVBqC.HllvX50cXC0}", + "numeratorDescription": "Foci identified (new+old) in past 5 years (including current calendar year)", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Foci identified, new and old (list of foci)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Nombre de foyers identifiés (total) au cours des 5 dernières années (y compris l'année civile en cours)" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Nombre de foyers identifiés (total) au cours des 5 dernières années (y compris l'année civile en cours)" + }, + { + "locale": "fr", + "property": "DESCRIPTION", + "value": "Nombre de foyers identifiés (total) au cours des 5 dernières années (y compris l'année civile en cours)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "HF_WITH_ACT_STOCKOUT_DAYS_%", + "dataSets": [], + "denominator": "#{Pw7sgDi5Pge}+#{d9YgyZpkUW4}", + "denominatorDescription": "HF reporting stockout days", + "description": "Proportion of health facilities with ACT stockout days", + "dimensionItem": "tS54JH4t0KS", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "tS54JH4t0KS", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Health facilities with ACT stock-out days (%)", + "numerator": "#{Pw7sgDi5Pge}", + "numeratorDescription": "HF with ACT stockout days reported", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "HF without ACT stockout days (%)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "HF_WITH_ARTESUNATE_STOCKOUT_DAYS_%", + "dataSets": [], + "denominator": "#{ruRmurEI4yM}+#{We2VNUVFxso}", + "denominatorDescription": "HF reporting stockout days", + "description": "Proportion of health facilities with Artesunate stockout days", + "dimensionItem": "WxXtpE1zdeJ", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "WxXtpE1zdeJ", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Health facilities with Artesunate stock-out days (%)", + "numerator": "#{ruRmurEI4yM}", + "numeratorDescription": "HF with Artesunate stockout days reported", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "HF with Artesunate stockout days (%)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "HF_WITH_LLIN_STOCKOUT_DAYS_%", + "dataSets": [], + "denominator": "#{cS2FTLczEz0}+#{L9wnSDBRClO}", + "denominatorDescription": "HF reporting stockout days", + "description": "Proportion of health facilities with LLIN stockout days", + "dimensionItem": "hCj9BqpyMvT", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "hCj9BqpyMvT", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Health facilities with LLIN stock-out days (%)", + "numerator": "#{cS2FTLczEz0}", + "numeratorDescription": "HF with LLIN stockout days reported", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "HF with LLIN stockout days (%)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "HF_WITH_PRIMAQUINE_STOCKOUT_DAYS_%", + "dataSets": [], + "denominator": "#{XRIzH1a19DU}+#{bbHPUFANq7c}", + "denominatorDescription": "HF reporting stockout days", + "description": "Proportion of health facilities with Primaquine stockout days", + "dimensionItem": "ePye02livLt", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "ePye02livLt", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Health facilities with Primaquine stock-out days (%)", + "numerator": "#{XRIzH1a19DU}", + "numeratorDescription": "HF with Primaquine stockout days reported", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "HF with Primaquine stockout days (%)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "HF_WITH_RDTS_STOCKOUT_DAYS_%", + "dataSets": [], + "denominator": "#{vBAWCLJpF6r}+#{lPXaBt4ToQb}", + "denominatorDescription": "HF reporting stockout days", + "description": "Proportion of health facilities with RDTs stockout days", + "dimensionItem": "oXCc5MR3LLi", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "oXCc5MR3LLi", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Health facilities with RDTs stock-out days (%)", + "numerator": "#{vBAWCLJpF6r}", + "numeratorDescription": "HF with RDTs stockout days reported", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "HF with RDTs stockout days (%)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "HF_WITH_SP_STOCKOUT_DAYS_%", + "dataSets": [], + "denominator": "#{Rd02CjRNYDD}+#{GHtprEGbFWE}", + "denominatorDescription": "HF reporting stockout days", + "description": "Proportion of health facilities with SP stockout days", + "dimensionItem": "OzpsrdzqZXp", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "OzpsrdzqZXp", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Health facilities with Sulfadoxine-pyrimethamine stockout days (%)", + "numerator": "#{Rd02CjRNYDD}", + "numeratorDescription": "HF with SP stockout days reported", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "HF with SP stockout days (%)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_LLIN_CLOSING_BAL", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of LLIN as closing balance [Opening balance + Received - Issued - Redistributed - Discarded] at the end of the reporting period", + "dimensionItem": "ket0CCCIHKs", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "ket0CCCIHKs", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - LLIN closing balance", + "numerator": "#{eCKSKNgHJqe}+#{RRA1O37nLn0}-#{YnKOG0WVtlq}-#{OpiuZiAzEwQ}-#{zM1vd2VeCss}", + "numeratorDescription": "LLIN closing bal", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLIN closing balance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_LLIN_DISCARDED", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of LLIN discarded during the reporting period (expired, damaged, etc.)", + "dimensionItem": "mm9hChdAyl3", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "mm9hChdAyl3", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - LLIN discarded", + "numerator": "#{YnKOG0WVtlq}", + "numeratorDescription": "LLIN discarded", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLIN discarded", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_LLIN_ISSUED", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of LLIN issued from the facility's stock", + "dimensionItem": "uihjx61H8ai", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "uihjx61H8ai", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - LLIN issued", + "numerator": "#{OpiuZiAzEwQ}", + "numeratorDescription": "MAL - LLIN issued", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLIN issued", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_LLIN_OPENING_BALANCE", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of LLIN opening balance", + "dimensionItem": "s4n3zSyciLw", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "s4n3zSyciLw", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - LLIN opening balance", + "numerator": "#{RRA1O37nLn0}", + "numeratorDescription": "MAL - LLIN opening balance", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLIN opening balance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_LLIN_RECV", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of LLIN received in the stock of the health facility", + "dimensionItem": "DEURBGqN6fO", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "DEURBGqN6fO", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - LLIN received", + "numerator": "#{eCKSKNgHJqe}", + "numeratorDescription": "MAL - LLIN received", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLIN received", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_LLIN_COVERAGE_TIME", + "dataSets": [], + "decimals": 0, + "denominator": "#{YnKOG0WVtlq} + #{OpiuZiAzEwQ} + #{zM1vd2VeCss}", + "denominatorDescription": "consumed stock", + "dimensionItem": "QJv5i3fzFBJ", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "QJv5i3fzFBJ", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "k4RGC3sMTzO" + }, + "legendSet": { + "id": "f1hWZIYCTzc" + }, + "legendSets": [ + { + "id": "f1hWZIYCTzc" + } + ], + "name": "MAL - LLIN stock coverage time", + "numerator": "#{RRA1O37nLn0} + #{eCKSKNgHJqe}", + "numeratorDescription": "usable stock", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLIN stock coverage time", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_LLIN_DISCREPANCY", + "dataSets": [], + "denominator": "#{GIhoITcc0jp}", + "denominatorDescription": "stock on hand", + "description": "Percentage of the item's stock discrepancy [Stock on hand - Closing balance] / Stock on hand", + "dimensionItem": "lCUNJpZTDQJ", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "lCUNJpZTDQJ", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - LLIN stock discrepancy (%)", + "numerator": "#{GIhoITcc0jp}-(#{eCKSKNgHJqe}+#{RRA1O37nLn0}-#{YnKOG0WVtlq}-#{OpiuZiAzEwQ}-#{zM1vd2VeCss})", + "numeratorDescription": "LLIN stock discrepancy", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLIN stock discrepancy (%)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_LLIN_STOCK_ON_HAND", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of LLIN stock on hand", + "dimensionItem": "UdyTo2oqzZO", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "UdyTo2oqzZO", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - LLIN stock on hand", + "numerator": "#{GIhoITcc0jp}", + "numeratorDescription": "MAL - LLIN stock on hand", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLIN stock on hand", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_LLIN_STOCKOUT_DAYS", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of days when the facility was stocked out of LLIN (at any point during the day) during the reporting period.", + "dimensionItem": "J3UT51fnJjS", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "J3UT51fnJjS", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSet": { + "id": "lY1SvO1BnVg" + }, + "legendSets": [ + { + "id": "lY1SvO1BnVg" + } + ], + "name": "MAL - LLIN stock out days", + "numerator": "#{KQvuAWwOPnE}", + "numeratorDescription": "LLIN stock out days", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLIN stock out days", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "LLIN_WASTAGE_RATE", + "dataSets": [], + "denominator": "((#{eCKSKNgHJqe}+#{RRA1O37nLn0}-#{YnKOG0WVtlq}-#{OpiuZiAzEwQ}-#{zM1vd2VeCss})-#{GIhoITcc0jp})+#{YnKOG0WVtlq}+#{OpiuZiAzEwQ}", + "denominatorDescription": "Stock used=([Closing balance]-[Stock at hand]) + discarded + dispensed to patient)", + "description": "Stock wasted=([Closing balance]-[Stock at hand]) + discarded)", + "dimensionItem": "DpbZBWj6bLQ", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "DpbZBWj6bLQ", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - LLIN wastage rate (%)", + "numerator": "((#{eCKSKNgHJqe}+#{RRA1O37nLn0}-#{YnKOG0WVtlq}-#{OpiuZiAzEwQ}-#{zM1vd2VeCss})-#{GIhoITcc0jp})+#{YnKOG0WVtlq}", + "numeratorDescription": "Stock wasted=([Closing balance]-[Stock at hand]) + discarded)", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLIN wastage rate", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_CASES_CLASS_LOCAL", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of cases confirmed as malaria that are investigated and classified as either indigenous or introduced", + "dimensionItem": "npqu6fhBVpe", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "npqu6fhBVpe", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Malaria cases classified as local", + "numerator": "#{HMUc4RajgaC}", + "numeratorDescription": "Malaria cases classified as local", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "Malaria local", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Cas classés comme souche autochtone" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Cas classés comme souche autochtone" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_INFANTS_REC_ITN", + "dataSets": [], + "denominator": "#{WBmvvafUwT8}", + "denominatorDescription": "GEN - Population expected pregnant women", + "description": "Percentage of infants received an ITN", + "dimensionItem": "vK4qNvAtZsG", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "vK4qNvAtZsG", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Percentage of infants received an ITN", + "numerator": "#{MJFRkoiH4KQ}", + "numeratorDescription": "LLINs distributed to infants", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Percentage of infants received an ITN", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - % d'enfants ayant un MILDA" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "% d'enfants ayant un MILDA" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_CASES_INVEST_N2", + "dataSets": [], + "denominator": "#{enVf9I39FRZ} + #{vTRrNdOOT9g}", + "denominatorDescription": "Number of cases positive", + "description": "Malaria - Proportion of cases investigated within time frame (from diagnosis). Usually 4 days after diagnosis, see national guideline.", + "dimensionItem": "dASLnPMS8L8", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "dASLnPMS8L8", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Percentage of malaria cases investigated within time frame", + "numerator": "#{HHpmA3PRXlJ} ", + "numeratorDescription": "Cases investigated within 4 days (from diagnosis)", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "% of cases investigated within 4 timeframe", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_CASES_SYMPT_DIAG_24HRS", + "dataSets": [], + "denominator": "#{enVf9I39FRZ}+#{vTRrNdOOT9g}", + "denominatorDescription": "Cases detected", + "description": "Malaria - Proportion of cases with symptoms diagnosed within time frame", + "dimensionItem": "JZegZ4SDzDs", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "JZegZ4SDzDs", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Percentage of malaria cases with symptoms diagnosed within time frame", + "numerator": "#{KNAg6VC23us}", + "numeratorDescription": "Cases with symptoms diagnosed within 24 hours", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "% of malaria cases diag within time frame", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_PF", + "dataSets": [], + "decimals": 2, + "denominator": "#{jvjJ901K56K}+ #{yHS1RqIFeD7}+ #{lgDGha7OO9o}+ #{WNcIBqTodHr}+ #{iMcQ1MedqGo}+ #{QJUcVI1zY5y}+ #{jtyuEfbNbkb}+ #{IUrl6HtHVQI}+ #{yVGY0DGVPor}+ #{llpG8qA0SvG}", + "denominatorDescription": "Confirmed malaria cases", + "description": "Percentage of positive cases due to P. falciparum parasite ((number of cases due to P. falciparum only + mix infection with P. falciparum/ all positive cases)x100)", + "dimensionItem": "Uzmk0S9IwWn", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "Uzmk0S9IwWn", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Percentage of P. falciparum", + "numerator": "#{jvjJ901K56K}+#{lgDGha7OO9o}+ #{IUrl6HtHVQI}+#{llpG8qA0SvG}", + "numeratorDescription": "Sum (Pf+mixed Micr+RDT)", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "% P. falciparum", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Pourcentage de P. falciparum" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Pourcentage de P. falciparum" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_PW_ATTEND_ANC1", + "dataSets": [], + "denominator": "#{WBmvvafUwT8}", + "denominatorDescription": "GEN - Population expected pregnant women", + "description": "Percentage of pregnant women attending ANC 1st visit", + "dimensionItem": "blS3OjRXn0c", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "blS3OjRXn0c", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Percentage of pregnant women attending ANC1", + "numerator": "#{qqc4NnWVFL9}", + "numeratorDescription": "MAL - ANC 1st visit (malaria)", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Percentage of pregnant women attending ANC1", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_PW_REC_ITN", + "dataSets": [], + "denominator": "#{WBmvvafUwT8}", + "denominatorDescription": "GEN - Population expected pregnant women", + "description": "Percentage of pregnant women received an ITN", + "dimensionItem": "VoN285Q7FQG", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "VoN285Q7FQG", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Percentage of pregnant women received an ITN", + "numerator": "#{UH47dKFqTRK}", + "numeratorDescription": "LLINs distributed to pregnant women", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Percentage of pregnant women received an ITN", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_PV", + "dataSets": [], + "decimals": 2, + "denominator": "#{jvjJ901K56K}+ #{yHS1RqIFeD7}+ #{lgDGha7OO9o}+ #{WNcIBqTodHr}+ #{iMcQ1MedqGo}+ #{QJUcVI1zY5y}+ #{jtyuEfbNbkb}+ #{IUrl6HtHVQI}+ #{yVGY0DGVPor}+ #{llpG8qA0SvG} ", + "denominatorDescription": "Confirmed malaria cases", + "description": "Percentage of positive cases due to P. vivax parasite ((number of cases due to P. vivax only + mix infection with P. vivax/ all positive cases)x100)", + "dimensionItem": "EEuvMCljxc9", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "EEuvMCljxc9", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Percentage of P. vivax", + "numerator": "#{yHS1RqIFeD7} + #{yVGY0DGVPor}", + "numeratorDescription": "P. vivax (microscopy) + P. vivax (RDT)", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "shortName": "% P. vivax", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Pourcentage de P. vivax" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Pourcentage de P. vivax" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PMQ_COVERAGE_TIME", + "dataSets": [], + "decimals": 0, + "denominator": "#{o3fW3Hgo9GO} + #{oIi0Ybn06e2} + #{RJkNUMqVTRC}", + "denominatorDescription": "consumed stock", + "dimensionItem": "LlI38w39pwW", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "LlI38w39pwW", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "k4RGC3sMTzO" + }, + "legendSet": { + "id": "f1hWZIYCTzc" + }, + "legendSets": [ + { + "id": "f1hWZIYCTzc" + } + ], + "name": "MAL - PMQ stock coverage time", + "numerator": "#{CPBuuIiDnn8} + #{uFwkuqBgI29}", + "numeratorDescription": "usable stock", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "PMQ stock coverage time", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": true, + "attributeValues": [], + "code": "MAL_PER_POP_COV_BY_LLINS", + "dataSets": [], + "denominator": "#{cOVhTyW8zN6} ", + "denominatorDescription": "Population at risk", + "description": "Number of LLINs distributed in past 3 years* 1.8 divided by population at risk of malaria multiplied by 100", + "dimensionItem": "A1o8U4zmzvA", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "A1o8U4zmzvA", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Population potentially covered with LLIN (%)", + "numerator": "#{UH47dKFqTRK} * 1.8 ", + "numeratorDescription": "LLINs distributed", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "% of population potentially covered with LLIN (%)", + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "PALU - % de la population potentiellement couverte par MILDA (%)" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "% de la population potentiellement couverte par MILDA (%)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": true, + "attributeValues": [], + "code": "MAL_PER_POP_PROT_BY_IRS", + "dataSets": [], + "denominator": "#{cOVhTyW8zN6} ", + "denominatorDescription": "Population at risk", + "description": "Number of people in the targeted risk group protected by IRS in the past 12 months divided by number of people in risk group multiplied by 100", + "dimensionItem": "IGVgCwUaaVz", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "IGVgCwUaaVz", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "mrrlu8kux0s" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Population protected with IRS (%)", + "numerator": "#{NywGy6uMS5r}", + "numeratorDescription": "People protected by IRS", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "% population protected with IRS", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "% de la population protégé par PID" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - % de la population protégé par PID" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PRIMAQUINE_CLOSING_BAL", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Primaquine as closing balance [Opening balance + Received - Issued - Redistributed - Discarded] at the end of the reporting period", + "dimensionItem": "rL482g0s5JL", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "rL482g0s5JL", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Primaquine closing balance", + "numerator": "#{uFwkuqBgI29}+#{CPBuuIiDnn8}-#{o3fW3Hgo9GO}-#{oIi0Ybn06e2}-#{RJkNUMqVTRC}", + "numeratorDescription": "Primaquine closing bal", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Primaquine closing balance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PRIMAQUINE_ISSUED", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Primaquine issued from the facility's stock", + "dimensionItem": "YX7dJbo7uTA", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "YX7dJbo7uTA", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Primaquine issued", + "numerator": "#{oIi0Ybn06e2}", + "numeratorDescription": "MAL - Primaquine issued", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Primaquine issued", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PRIMAQUINE_OPENING_BALANCE", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Primaquine opening balance", + "dimensionItem": "psJy41rJsiE", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "psJy41rJsiE", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Primaquine opening balance", + "numerator": "#{CPBuuIiDnn8}", + "numeratorDescription": "MAL - Primaquine opening balance", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Primaquine opening balance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PRIMAQUINE_RECV", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Primaquine received in the stock of the health facility", + "dimensionItem": "Dh4kab2L39R", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "Dh4kab2L39R", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Primaquine received", + "numerator": "#{uFwkuqBgI29}", + "numeratorDescription": "MAL - Primaquine received", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Primaquine received", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PRIMAQUINE_REDISTRIBUTED", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Primaquine redistributed", + "dimensionItem": "ajmJXVocM7a", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "ajmJXVocM7a", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Primaquine redistributed", + "numerator": "#{RJkNUMqVTRC}", + "numeratorDescription": "MAL - Primaquine redistributed", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Primaquine redistributed", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PRIMAQUINE_DISCREPANCY", + "dataSets": [], + "denominator": "#{jynElcE3gF0}", + "denominatorDescription": "stock on hand", + "description": "Percentage of the item's stock discrepancy [Stock on hand - Closing balance] / Stock on hand", + "dimensionItem": "Eqy5Nnb0Rpz", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "Eqy5Nnb0Rpz", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Primaquine stock discrepancy (%)", + "numerator": "#{jynElcE3gF0}-(#{uFwkuqBgI29}+#{CPBuuIiDnn8}-#{o3fW3Hgo9GO}-#{oIi0Ybn06e2}-#{RJkNUMqVTRC})", + "numeratorDescription": "Primaquine stock discrepancy", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Primaquine stock discrepancy (%)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PRIMAQUINE_STOCKOUT_DAYS", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of days when the facility was stocked out of Primaquine (at any point during the day) during the reporting period.", + "dimensionItem": "DZTSUh1DFyX", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "DZTSUh1DFyX", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSet": { + "id": "lY1SvO1BnVg" + }, + "legendSets": [ + { + "id": "lY1SvO1BnVg" + } + ], + "name": "MAL - Primaquine stock out days", + "numerator": "#{C3vtx1aie2U}", + "numeratorDescription": "Primaquine stock out days", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Primaquine stock out days", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "PRIMAQUINE_WASTAGE_RATE", + "dataSets": [], + "denominator": "((#{uFwkuqBgI29}+#{CPBuuIiDnn8}-#{o3fW3Hgo9GO}-#{oIi0Ybn06e2}-#{RJkNUMqVTRC})-#{jynElcE3gF0})+#{o3fW3Hgo9GO}+#{oIi0Ybn06e2}", + "denominatorDescription": "Stock used=([Closing balance]-[Stock at hand]) + discarded + dispensed to patient)", + "description": "Stock wasted=([Closing balance]-[Stock at hand]) + discarded)", + "dimensionItem": "W34cMM4atBf", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "W34cMM4atBf", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Primaquine wastage rate (%)", + "numerator": "((#{uFwkuqBgI29}+#{CPBuuIiDnn8}-#{o3fW3Hgo9GO}-#{oIi0Ybn06e2}-#{RJkNUMqVTRC})-#{jynElcE3gF0})+#{o3fW3Hgo9GO}", + "numeratorDescription": "Stock wasted=([Closing balance]-[Stock at hand]) + discarded)", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Primaquine wastage rate", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_RDTS_RECV", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of RDTs received in the facility's stock", + "dimensionItem": "fqkymAhfnbg", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "fqkymAhfnbg", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - RDT kits received", + "numerator": "#{iaQuylCoH3u}", + "numeratorDescription": "MAL - RDT kits received", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDTs received", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_RDT_OPENING_BALANCE", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of RDT opening balance", + "dimensionItem": "foz7nuOFMNR", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "foz7nuOFMNR", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - RDT opening balance", + "numerator": "#{HOEMlLX5SMC}", + "numeratorDescription": "MAL - RDT opening balance", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDT opening balance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_RDTS_AVAILABLE", + "dataSets": [], + "decimals": 1, + "denominator": "OUG{HmsefvrIHE4}", + "denominatorDescription": "Number of Districts", + "dimensionItem": "eGISFgA3Cah", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "eGISFgA3Cah", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + }, + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - RDTs availability (% of health facility with stock)", + "numerator": "OUG{HmsefvrIHE4} - #{Md3xk3vlABx}", + "numeratorDescription": "MAL - Stock-out of RDT malaria kits", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDTs availability (% of HF with stock)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_RDT_CLOSING_BAL", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of RDTs as closing balance [Opening balance + Received - Issued - Redistributed - Discarded] at the end of the reporting period", + "dimensionItem": "xi2S1d7LJBc", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "xi2S1d7LJBc", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - RDTs closing balance", + "numerator": "#{iaQuylCoH3u}+#{HOEMlLX5SMC}-#{To2fZcY5oUS}-#{CsJm4IsvXqg}-#{ZRUpLZ2HVEH}", + "numeratorDescription": "RDTs closing bal", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDTs closing balance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_RDT_DISCARDED", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of RDTs discarded during the reporting period (expired, damaged, etc.)", + "dimensionItem": "hGNzrW1xbQN", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "hGNzrW1xbQN", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - RDTs discarded", + "numerator": "#{To2fZcY5oUS}", + "numeratorDescription": "RDTs discarded", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDTs discarded", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_RDT_REDISTRIBUTED", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of RDTs redistributed", + "dimensionItem": "ClIrLxTeQgG", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "ClIrLxTeQgG", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - RDTs redistributed", + "numerator": "#{ZRUpLZ2HVEH}", + "numeratorDescription": "MAL - RDTs redistributed", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDTs redistributed", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_RDT_STOCK_ON_HAND", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of RDTs stock on hand", + "dimensionItem": "o3FTGfWDUpz", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "o3FTGfWDUpz", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - RDTs stock on hand", + "numerator": "#{ImjPjbE2rFm}", + "numeratorDescription": "MAL - RDTs stock on hand", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDTs stock on hand", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_RDT_COVERAGE_TIME", + "dataSets": [], + "decimals": 0, + "denominator": "#{To2fZcY5oUS} + #{CsJm4IsvXqg} + #{ZRUpLZ2HVEH}", + "denominatorDescription": "consumed stock", + "dimensionItem": "eiom58iY0UA", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "eiom58iY0UA", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "k4RGC3sMTzO" + }, + "legendSet": { + "id": "f1hWZIYCTzc" + }, + "legendSets": [ + { + "id": "f1hWZIYCTzc" + } + ], + "name": "MAL - RDT stock coverage time", + "numerator": "#{HOEMlLX5SMC} + #{iaQuylCoH3u}", + "numeratorDescription": "usable stock", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDT stock coverage time", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_RDT_DISCREPANCY", + "dataSets": [], + "denominator": "#{ImjPjbE2rFm}", + "denominatorDescription": "stock on hand", + "description": "Percentage of the item's stock discrepancy [Stock on hand - Closing balance] / Stock on hand", + "dimensionItem": "vBNyVNLGZ5D", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "vBNyVNLGZ5D", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - RDT stock discrepancy (%)", + "numerator": "#{ImjPjbE2rFm}-(#{iaQuylCoH3u}+#{HOEMlLX5SMC}-#{To2fZcY5oUS}-#{CsJm4IsvXqg}-#{ZRUpLZ2HVEH})", + "numeratorDescription": "RDTs stock discrepancy", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDT stock discrepancy (%)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_RDT_STOCKOUT_DAYS", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of days when the facility was stocked out of RDTs (at any point during the day) during the reporting period.", + "dimensionItem": "ClIQBqasYpm", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "ClIQBqasYpm", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSet": { + "id": "lY1SvO1BnVg" + }, + "legendSets": [ + { + "id": "lY1SvO1BnVg" + } + ], + "name": "MAL - RDT stock out days", + "numerator": "#{DEasiq2eO60}", + "numeratorDescription": "RDT stock out days", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDT stock out days", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "RDTS_WASTAGE_RATE", + "dataSets": [], + "denominator": "((#{iaQuylCoH3u}+#{HOEMlLX5SMC}-#{To2fZcY5oUS}-#{CsJm4IsvXqg}-#{ZRUpLZ2HVEH})-#{ImjPjbE2rFm})+#{To2fZcY5oUS}+#{CsJm4IsvXqg}", + "denominatorDescription": "Stock used=([Closing balance]-[Stock at hand]) + discarded + dispensed to patient)", + "description": "Stock wasted=([Closing balance]-[Stock at hand]) + discarded)", + "dimensionItem": "pDC6NBURuaz", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "pDC6NBURuaz", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - RDTs wastage rate (%)", + "numerator": "((#{iaQuylCoH3u}+#{HOEMlLX5SMC}-#{To2fZcY5oUS}-#{CsJm4IsvXqg}-#{ZRUpLZ2HVEH})-#{ImjPjbE2rFm})+#{To2fZcY5oUS}", + "numeratorDescription": "Stock wasted=([Closing balance]-[Stock at hand]) + discarded)", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDTs wastage rate", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_SP_CLOSING_BAL", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Sulfadoxine-pyrimethamine as closing balance [Opening balance + Received - Issued - Redistributed - Discarded] at the end of the reporting period", + "dimensionItem": "u6rtNvz2C98", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "u6rtNvz2C98", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine closing balance", + "numerator": "#{GDBHGyXJI2T}+#{f7z0IhHVWBT}-#{SldWQ0uCFA2}-#{U4kmpM14xhJ}-#{Qv9b5QAOO0F}", + "numeratorDescription": "Sulfadoxine-pyrimethamine closing bal", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Sulfadoxine-pyrimethamine closing balance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_SP_ISSUED", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Sulfadoxine-pyrimethamine issued from the facility's stock", + "dimensionItem": "fkSnzZMYE4F", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "fkSnzZMYE4F", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine issued", + "numerator": "#{U4kmpM14xhJ}", + "numeratorDescription": "MAL - Sulfadoxine-pyrimethamine issued", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "SP issued", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_SP_OPENING_BALANCE", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Sulfadoxine-pyrimethamine opening balance", + "dimensionItem": "BU9sYJVOslw", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "BU9sYJVOslw", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine opening balance", + "numerator": "#{f7z0IhHVWBT}", + "numeratorDescription": "MAL - Sulfadoxine-pyrimethamine opening balance", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Sulfadoxine-pyrimethamine opening balance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_SP_RECV_STOCK", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Sulfadoxine-pyrimethamine received in the facility's stock", + "dimensionItem": "LboUZfKr9EP", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "LboUZfKr9EP", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine received", + "numerator": "#{GDBHGyXJI2T}", + "numeratorDescription": "MAL - Sulfadoxine-pyrimethamine received", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "SP received stock", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_SP_REDISTRIBUTED", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Sulfadoxine-pyrimethamine redistributed", + "dimensionItem": "b3yNPcHGMNN", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "b3yNPcHGMNN", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine redistributed", + "numerator": "#{Qv9b5QAOO0F}", + "numeratorDescription": "MAL - Sulfadoxine-pyrimethamine redistributed", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Sulfadoxine-pyrimethamine redistributed", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_SP_DISCREPANCY", + "dataSets": [], + "denominator": "#{VTunnWZqQCj}", + "denominatorDescription": "stock on hand", + "description": "Percentage of the item's stock discrepancy [Stock on hand - Closing balance] / Stock on hand", + "dimensionItem": "sj3URzajB3C", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "sj3URzajB3C", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine stock discrepancy (%)", + "numerator": "#{VTunnWZqQCj}-(#{GDBHGyXJI2T}+#{f7z0IhHVWBT}-#{SldWQ0uCFA2}-#{U4kmpM14xhJ}-#{Qv9b5QAOO0F})", + "numeratorDescription": "Sulfadoxine-pyrimethamine stock discrepancy", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Sulfadoxine-pyrimethamine stock discrepancy (%)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_SP_STOCK_ON_HAND", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Sulfadoxine-pyrimethamine stock on hand", + "dimensionItem": "bmjvOFB90Se", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "bmjvOFB90Se", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine stock on hand", + "numerator": "#{VTunnWZqQCj}", + "numeratorDescription": "MAL - Sulfadoxine-pyrimethamine stock on hand", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Sulfadoxine-pyrimethamine stock on hand", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_SP_STOCKOUT_DAYS", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of days when the facility was stocked out of Sulfadoxine-pyrimethamine (at any point during the day) during the reporting period.", + "dimensionItem": "e4QSHL8T5Fm", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "e4QSHL8T5Fm", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSet": { + "id": "lY1SvO1BnVg" + }, + "legendSets": [ + { + "id": "lY1SvO1BnVg" + } + ], + "name": "MAL - Sulfadoxine-pyrimethamine stock out days", + "numerator": "#{B3ItBcjVieC}", + "numeratorDescription": "Sulfadoxine-pyrimethamine stock out days", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Sulfadoxine-pyrimethamine stock out days", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "SULFADOXINE-PYRIMETHAMINE_WASTAGE_RATE", + "dataSets": [], + "denominator": "((#{GDBHGyXJI2T}+#{f7z0IhHVWBT}-#{SldWQ0uCFA2}-#{U4kmpM14xhJ}-#{Qv9b5QAOO0F})-#{VTunnWZqQCj})+#{SldWQ0uCFA2}+#{U4kmpM14xhJ}", + "denominatorDescription": "Stock used=([Closing balance]-[Stock at hand]) + discarded + dispensed to patient)", + "description": "Stock wasted=([Closing balance]-[Stock at hand]) + discarded)", + "dimensionItem": "Rf6DhpY8DeK", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "Rf6DhpY8DeK", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine wastage rate (%)", + "numerator": "((#{GDBHGyXJI2T}+#{f7z0IhHVWBT}-#{SldWQ0uCFA2}-#{U4kmpM14xhJ}-#{Qv9b5QAOO0F})-#{VTunnWZqQCj})+#{SldWQ0uCFA2}", + "numeratorDescription": "Stock wasted=([Closing balance]-[Stock at hand]) + discarded)", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Sulfadoxine-pyrimethamine wastage rate", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_SXPYR_COVERAGE_TIME", + "dataSets": [], + "decimals": 0, + "denominator": "#{SldWQ0uCFA2} + #{U4kmpM14xhJ} + #{Qv9b5QAOO0F}", + "denominatorDescription": "consumed stock", + "dimensionItem": "hjdbr1rTKff", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "hjdbr1rTKff", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "k4RGC3sMTzO" + }, + "legendSet": { + "id": "f1hWZIYCTzc" + }, + "legendSets": [ + { + "id": "f1hWZIYCTzc" + } + ], + "name": "MAL - SX-PYR stock coverage time", + "numerator": "#{f7z0IhHVWBT} + #{GDBHGyXJI2T}", + "numeratorDescription": "usable stock", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "SX-PYR stock coverage time", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ACT_DISCARDED", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of ACT discarded during the reporting period (expired, damaged, etc.)", + "dimensionItem": "wswCPFCyUG8", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "wswCPFCyUG8", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - ACT discarded", + "numerator": "#{THsfR427giB}", + "numeratorDescription": "ACT discarded", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACT discarded", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ACT_OPENING_BALANCE", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of ACT opening balance", + "dimensionItem": "BI6l7Poo65o", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "BI6l7Poo65o", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - ACT opening balance", + "numerator": "#{CBKXL15dSwQ}", + "numeratorDescription": "MAL - ACT opening balance", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACT opening balance", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ACTS_RECV", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of ACTs received in stock", + "dimensionItem": "xIZVZJ7yiAP", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "xIZVZJ7yiAP", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - ACTs received", + "numerator": "#{x4A99GZbg5k}", + "numeratorDescription": "MAL - ACT courses received", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ACTs received", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ARTESUNATE_DISCREPANCY", + "dataSets": [], + "denominator": "#{NFMzN9Up5zQ}", + "denominatorDescription": "stock on hand", + "description": "Percentage of the item's stock discrepancy [Stock on hand - Closing balance] / Stock on hand", + "dimensionItem": "f1XLmFIwlrK", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "f1XLmFIwlrK", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Artesunate stock discrepancy (%)", + "numerator": "#{NFMzN9Up5zQ}-(#{F7BWpIVSEpM}+#{BdRI37FNDJs}-#{twoxyChxlC3}-#{kk2ClooVm41}-#{F7L5jVrWnHi})", + "numeratorDescription": "Artesunate stock discrepancy", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Artesunate stock discrepancy (%)", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_ARTESUNATE_STOCKOUT_DAYS", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of days when the facility was stocked out of Artesunate (at any point during the day) during the reporting period.", + "dimensionItem": "CbvSCPmaz5d", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "CbvSCPmaz5d", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSet": { + "id": "lY1SvO1BnVg" + }, + "legendSets": [ + { + "id": "lY1SvO1BnVg" + } + ], + "name": "MAL - Artesunate stock out days", + "numerator": "#{N6uAJQjkRQl}", + "numeratorDescription": "Artesunate stock out days", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Artesunate stock out days", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_LLIN_REDISTRIBUTED", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of LLIN redistributed", + "dimensionItem": "GNvUj6KNaDM", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "GNvUj6KNaDM", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - LLIN redistributed", + "numerator": "#{zM1vd2VeCss}", + "numeratorDescription": "MAL - LLIN redistributed", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLIN redistributed", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PER_LLINS_AVAILABLE", + "dataSets": [], + "decimals": 1, + "denominator": "OUG{HmsefvrIHE4}", + "denominatorDescription": "Number of Districts", + "dimensionItem": "Yf0KTxLcRPE", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "Yf0KTxLcRPE", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + }, + { + "id": "YKVsWm3b47n" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - LLINs availability (% of health facility with stock)", + "numerator": "OUG{HmsefvrIHE4} - #{yMIgzlV9sES}", + "numeratorDescription": "MAL - Stock-out of LLIN malaria", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "LLINs availability (% of HF with stock)", + "translations": [ + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "Disponibilité des MIILD (% de FS avec un stock)" + }, + { + "locale": "fr", + "property": "NAME", + "value": "PALU - Disponibilité des MIILD (% de l'établissement de santé avec un stock)" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_FUND_DOM", + "dataSets": [], + "denominator": "#{tpz77FcntKx.HllvX50cXC0}+ #{EpyvZBsqMmM.HllvX50cXC0}", + "denominatorDescription": "Domestic + external funding", + "dimensionItem": "dqv9OGG0hzy", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "dqv9OGG0hzy", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Malaria - Domestic Funding % year", + "numerator": "#{EpyvZBsqMmM.HllvX50cXC0}", + "numeratorDescription": "Domestic funding", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "Domestic Funding % year", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_FUND_EXT", + "dataSets": [], + "denominator": "#{EpyvZBsqMmM.HllvX50cXC0}+ #{tpz77FcntKx.HllvX50cXC0}", + "denominatorDescription": "Domestic + external funding", + "dimensionItem": "tgzppnN2DsG", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "tgzppnN2DsG", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Malaria - External funding % year", + "numerator": "#{tpz77FcntKx.HllvX50cXC0}", + "numeratorDescription": "External funding", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "External funding % year", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_FUND_GAP", + "dataSets": [], + "denominator": "#{EpyvZBsqMmM.HllvX50cXC0} + #{tpz77FcntKx.HllvX50cXC0}", + "denominatorDescription": "Total funding", + "dimensionItem": "GCbegvX9iGe", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "GCbegvX9iGe", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + } + ], + "indicatorType": { + "id": "hmSnCXmLYwt" + }, + "legendSets": [], + "name": "MAL - Malaria - funding gap % year", + "numerator": "#{FRbgzTZ74Hh.HllvX50cXC0}", + "numeratorDescription": "Total funding need", + "periodOffset": 0, + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": {}, + "users": {} + }, + "shortName": "funding gap % year", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PRIMAQUINE_DISCARDED", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Primaquine discarded during the reporting period (expired, damaged, etc.)", + "dimensionItem": "f2zrEcfETgL", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "f2zrEcfETgL", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Primaquine discarded", + "numerator": "#{o3fW3Hgo9GO}", + "numeratorDescription": "Primaquine discarded", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Primaquine discarded", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_PRIMAQUINE_STOCK_ON_HAND", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Primaquine stock on hand", + "dimensionItem": "vqO9cXAmYcE", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "vqO9cXAmYcE", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Primaquine stock on hand", + "numerator": "#{jynElcE3gF0}", + "numeratorDescription": "MAL - Primaquine stock on hand", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Primaquine stock on hand", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_RDT_ISSUED", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of RDTs drugs issued from the facility's stock", + "dimensionItem": "IeUbxBdwDTf", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "IeUbxBdwDTf", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - RDT issued", + "numerator": "#{CsJm4IsvXqg}", + "numeratorDescription": "MAL - RDT issued", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "RDT issued", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "MAL_SP_DISCARDED", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "Number of Sulfadoxine-pyrimethamine discarded during the reporting period (expired, damaged, etc.)", + "dimensionItem": "SgRaBPYdJfg", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "SgRaBPYdJfg", + "indicatorGroups": [ + { + "id": "IHFoEstZjfl" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine discarded", + "numerator": "#{SldWQ0uCFA2}", + "numeratorDescription": "Sulfadoxine-pyrimethamine discarded", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "Sulfadoxine-pyrimethamine discarded", + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualized": false, + "attributeValues": [], + "code": "RMNCAH_ANC1", + "dataSets": [], + "denominator": "1", + "denominatorDescription": "1", + "description": "First visit by a pregnant woman to a health facility to primarily receive antenatal care. The first antenatal visit may be referred to as a ‘booking or scheduled visit’ when various processes are done as per the national policy.", + "dimensionItem": "Ec4z30wDGVH", + "dimensionItemType": "INDICATOR", + "externalAccess": false, + "favorite": false, + "id": "Ec4z30wDGVH", + "indicatorGroups": [ + { + "id": "YKVsWm3b47n" + } + ], + "indicatorType": { + "id": "kHy61PbChXr" + }, + "legendSets": [], + "name": "RMNCAH - ANC 1st visit", + "numerator": "#{qqc4NnWVFL9}", + "numeratorDescription": "ANC 1st visit", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "ANC 1st visit", + "translations": [ + { + "locale": "fr", + "property": "DENOMINATOR_DESCRIPTION", + "value": "1" + }, + { + "locale": "es", + "property": "DENOMINATOR_DESCRIPTION", + "value": "1" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "CPN1" + }, + { + "locale": "id", + "property": "DESCRIPTION", + "value": "Kunjungan pertama wanita hamil ke fasilitas kesehatan khusus untuk menerima perawatan antenatal. Kunjungan antenatal pertama dapat disebut sebagai 'booking' atau kunjungan terjadwal' ketika berbagai proses telah dilakukan sesuai kebijakan nasional." + }, + { + "locale": "id", + "property": "SHORT_NAME", + "value": "Kunjungan ANC ke-1" + }, + { + "locale": "cs", + "property": "DENOMINATOR_DESCRIPTION", + "value": "1" + }, + { + "locale": "id", + "property": "NUMERATOR_DESCRIPTION", + "value": "Kunjungan ANC 1" + }, + { + "locale": "pt", + "property": "DESCRIPTION", + "value": "Primeira visita de uma mulher grávida a uma unidade de saúde para receber principalmente cuidados pré-natais. A primeira visita pré-natal pode ser referida como uma \"marcação ou visita agendada\" quando vários processos são realizados de acordo com a política nacional." + }, + { + "locale": "pt", + "property": "NUMERATOR_DESCRIPTION", + "value": "ANC 1ª visita" + }, + { + "locale": "fr", + "property": "DESCRIPTION", + "value": "Première visite d'une femme enceinte dans un établissement de santé pour y recevoir principalement des soins prénatals. La première visite prénatale peut être considérée comme une «visite de rendenz-vous ou programmée» lorsque divers processus sont effectués conformément à la politique nationale." + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "ANC 1ª visita" + }, + { + "locale": "pt", + "property": "NAME", + "value": "RMNCAH - ANC 1ª visita" + }, + { + "locale": "fr", + "property": "NUMERATOR_DESCRIPTION", + "value": "CPN 1ère viste" + }, + { + "locale": "pt", + "property": "DENOMINATOR_DESCRIPTION", + "value": "1" + }, + { + "locale": "id", + "property": "NAME", + "value": "RMNCAH - Kunjungan ANC ke-1" + }, + { + "locale": "fr", + "property": "NAME", + "value": "SSRMNEA - CPN1" + }, + { + "locale": "nb", + "property": "DENOMINATOR_DESCRIPTION", + "value": "1" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "jobConfigurations": [], + "legendSets": [ + { + "attributeValues": [], + "externalAccess": false, + "favorite": false, + "id": "lY1SvO1BnVg", + "legends": [ + { + "attributeValues": [], + "color": "#FF0000", + "endValue": 30.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "TsHFpCbmXxW", + "name": "High", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 7.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#FFA500", + "endValue": 7.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "gPQfY0QJBd3", + "name": "Moderate", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 3.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#049F55", + "endValue": 3.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "MTDFqeggtlk", + "name": "Low", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 0.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "name": "Average stockout days", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "externalAccess": false, + "favorite": false, + "id": "w5nOHQy2NP8", + "legends": [ + { + "attributeValues": [], + "color": "#FF0000", + "endValue": -1.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "PR55FXzZvWa", + "name": "Negative", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": -999999999.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#027E2F", + "endValue": 999999999.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "m8ThRKtM6gf", + "name": "Positive", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": -1.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "name": "Consistency between variables (>=)", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "externalAccess": false, + "favorite": false, + "id": "UKMxIj4iCfO", + "legends": [ + { + "attributeValues": [], + "color": "#FF0000", + "endValue": 0.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "ZBXpxSNdjzG", + "name": "Negative", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": -999999999.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#027E2F", + "endValue": 999999999.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "v6Ah8nBTKzV", + "name": "Positive", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 0.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "name": "Consistency between variables (>)", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "externalAccess": false, + "favorite": false, + "id": "phSksJ6YPO4", + "legends": [ + { + "attributeValues": [], + "color": "#F2EBEB", + "endValue": 100000.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "FBXi3pC4cxa", + "name": "> 20%", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 20.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#EBBFA1", + "endValue": 20.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "akwC7jln8y6", + "name": "10 - 20%", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 10.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#A13300", + "endValue": 10.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "oSfIJvHtVbQ", + "name": "< 10%", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 0.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "name": "Malaria annual blood examination rate", + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "attributeValues": [], + "externalAccess": false, + "favorite": false, + "id": "JUG5nRDqRFl", + "legends": [ + { + "attributeValues": [], + "color": "#EBBFA1", + "endValue": 40.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "YzUpHZ2rmuf", + "name": "20 -40%", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 20.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#EDDBC4", + "endValue": 20.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "BuOTVNarbyt", + "name": "10 - 20%", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 10.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#D18C4D", + "endValue": 60.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "ureY1y63dr5", + "name": "40 - 60%", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 40.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#F2EBEB", + "endValue": 1.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "WgH8MVAZ9p8", + "name": "0 - 1%", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 0.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#A13300", + "endValue": 80.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "LCN14FU1Qg1", + "name": "60 - 80%", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 60.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#400000", + "endValue": 100.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "LOaqcFHJu0y", + "name": "80 - 100%", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 80.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#ffffff", + "endValue": 0.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "htsd14BFeVx", + "name": "0%", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 0.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#F0E0CD", + "endValue": 10.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "NEnzok8vUpf", + "name": "1 - 10%", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 1.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "name": "Malaria confirmed incidence rate", + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "attributeValues": [], + "externalAccess": false, + "favorite": false, + "id": "kZFJ670FpB6", + "legends": [ + { + "attributeValues": [], + "color": "#A13300", + "endValue": 20.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "fyiYXUIOBlK", + "name": "10 - 20%", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 10.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#D18C4D", + "endValue": 40.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "Xa4x6wIQkJh", + "name": "20 - 40%", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 20.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#EBBFA1", + "endValue": 60.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "EYLo7kZXcDQ", + "name": "40 - 60%", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 40.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#400000", + "endValue": 10.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "gRj6Lz4ongf", + "name": "< 10%", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 0.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#F2EBEB", + "endValue": 100.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "tnHZMQMUPRJ", + "name": "80 - 100%", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 80.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#F0E0CD", + "endValue": 80.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "JAvaXarUdH9", + "name": "60 - 80%", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 60.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "name": "Malaria suspected cases tested", + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ] + }, + { + "attributeValues": [], + "code": "STOCK_COVERAGE_TIME", + "externalAccess": false, + "favorite": false, + "id": "f1hWZIYCTzc", + "legends": [ + { + "attributeValues": [], + "color": "#DC00FF", + "endValue": 200.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "wfbGANgbnMR", + "name": "Invalid", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 12.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#0011FF", + "endValue": 12.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "ee8QJxth4ul", + "name": "Overstock", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 3.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#EE391E", + "endValue": 0.0001, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "fFBIEwglorN", + "name": "Stock out", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 0.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#0BFF00", + "endValue": 3.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "mmvDbIcm41d", + "name": "Adequate stock", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 1.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#FEFB08", + "endValue": 1.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "wAdm1fy3Fmk", + "name": "Understock", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 0.0001, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "name": "Stock coverage time", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Temps de couverture du stock" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "maps": [ + { + "attributeValues": [], + "basemap": "bingLight", + "externalAccess": false, + "favorite": false, + "id": "Oj0tAh55DjD", + "interpretations": [], + "mapViews": [ + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "classes": 5, + "colorScale": "#e41a1c,#377eb8,#4daf4a,#984ea3,#ff7f00", + "columnDimensions": [ + "dx" + ], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "TkwXRuRQSYi" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "endDate": "2020-12-20T00:00:00.000", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [ + "pe" + ], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "N7royr4k7Uk", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": false, + "layer": "thematic", + "legendSet": { + "id": "f1hWZIYCTzc" + }, + "method": 1, + "name": "MAL - ACT stock coverage time", + "opacity": 1.0, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 4 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [ + { + "id": "202101" + } + ], + "programIndicatorDimensions": [], + "radiusHigh": 10, + "radiusLow": 10, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "startDate": "2019-12-20T00:00:00.000", + "subscribed": false, + "subscribers": [], + "thematicMapType": "CHOROPLETH", + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + }, + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "columnDimensions": [], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "Bn1ZzZyF6TB", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": true, + "layer": "boundary", + "name": "Bn1ZzZyF6TB", + "opacity": 1.0, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 3, + 2 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [], + "programIndicatorDimensions": [], + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + } + ], + "name": "MAL - ACT stock coverage time by facility", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "subscribed": false, + "subscribers": [], + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "basemap": "bingLight", + "externalAccess": false, + "favorite": false, + "id": "Hl08cF6zvw1", + "interpretations": [], + "mapViews": [ + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "classes": 3, + "colorScale": "#fff7bc,#fec44f,#d95f0e", + "columnDimensions": [ + "dx" + ], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "x4CIsntvniz" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "endDate": "2020-12-20T00:00:00.000", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [ + "pe" + ], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "vUXqZczMzgy", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "layer": "thematic", + "method": 2, + "name": "MAL - ACT stock out days", + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 4 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [ + { + "id": "202101" + } + ], + "programIndicatorDimensions": [], + "radiusHigh": 10, + "radiusLow": 10, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "startDate": "2019-12-20T00:00:00.000", + "subscribed": false, + "subscribers": [], + "thematicMapType": "CHOROPLETH", + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + }, + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "columnDimensions": [], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "Z2lwm6LmHUw", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": true, + "layer": "boundary", + "name": "Z2lwm6LmHUw", + "opacity": 1.0, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 3, + 2 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [], + "programIndicatorDimensions": [], + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + } + ], + "name": "MAL - ACT stockout days by facility", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "subscribed": false, + "subscribers": [], + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "basemap": "bingLight", + "externalAccess": false, + "favorite": false, + "id": "KF5vZLVpYJv", + "interpretations": [], + "mapViews": [ + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "classes": 5, + "colorScale": "#e41a1c,#377eb8,#4daf4a,#984ea3,#ff7f00", + "columnDimensions": [ + "dx" + ], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "Pt9zvTAmuC2" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "endDate": "2020-12-20T00:00:00.000", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [ + "pe" + ], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "rb3x6p6UNho", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": false, + "layer": "thematic", + "legendSet": { + "id": "f1hWZIYCTzc" + }, + "method": 1, + "name": "MAL - ART stock coverage time", + "opacity": 1.0, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 4 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [ + { + "id": "202101" + } + ], + "programIndicatorDimensions": [], + "radiusHigh": 10, + "radiusLow": 10, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "startDate": "2019-12-20T00:00:00.000", + "subscribed": false, + "subscribers": [], + "thematicMapType": "CHOROPLETH", + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + }, + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "columnDimensions": [], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "hp6gWKTILyW", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": true, + "layer": "boundary", + "name": "hp6gWKTILyW", + "opacity": 1.0, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 3, + 2 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [], + "programIndicatorDimensions": [], + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + } + ], + "name": "MAL - ART stock coverage time by facility", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "subscribed": false, + "subscribers": [], + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "basemap": "bingLight", + "externalAccess": false, + "favorite": false, + "id": "uwxMr52SxjE", + "interpretations": [], + "mapViews": [ + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "classes": 3, + "colorScale": "#fff7bc,#fec44f,#d95f0e", + "columnDimensions": [ + "dx" + ], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "CbvSCPmaz5d" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "endDate": "2020-12-20T00:00:00.000", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [ + "pe" + ], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "UzXB7u9PgnU", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "layer": "thematic", + "method": 2, + "name": "MAL - Artesunate stock out days", + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 4 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [ + { + "id": "202101" + } + ], + "programIndicatorDimensions": [], + "radiusHigh": 10, + "radiusLow": 10, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "startDate": "2019-12-20T00:00:00.000", + "subscribed": false, + "subscribers": [], + "thematicMapType": "CHOROPLETH", + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + }, + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "columnDimensions": [], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "WRpcj8ygtqF", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": true, + "layer": "boundary", + "name": "WRpcj8ygtqF", + "opacity": 1.0, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 3, + 2 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [], + "programIndicatorDimensions": [], + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + } + ], + "name": "MAL - ART stockout days by facility", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "subscribed": false, + "subscribers": [], + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "basemap": "osmLight", + "description": "", + "externalAccess": false, + "favorite": false, + "id": "uNj85CCHumE", + "interpretations": [], + "mapViews": [ + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "columnDimensions": [ + "dx" + ], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "YbO5j3XYABU" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [ + "pe" + ], + "filters": [], + "hidden": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "zL25F3MNZ1T", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "layer": "thematic", + "legendSet": { + "id": "JUG5nRDqRFl" + }, + "method": 1, + "name": "MAL - Annual malaria parasite incidence (API)", + "opacity": 0.8, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [], + "programIndicatorDimensions": [], + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "thematicMapType": "CHOROPLETH", + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": true, + "userOrganisationUnitGrandChildren": false + } + ], + "name": "MAL - Incidence of confirmed malaria cases", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "userGroups": {}, + "users": {} + }, + "subscribed": false, + "subscribers": [], + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "basemap": "bingLight", + "externalAccess": false, + "favorite": false, + "id": "A6jfttWWf26", + "interpretations": [], + "mapViews": [ + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "classes": 5, + "colorScale": "#e41a1c,#377eb8,#4daf4a,#984ea3,#ff7f00", + "columnDimensions": [ + "dx" + ], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "QJv5i3fzFBJ" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "endDate": "2020-12-20T00:00:00.000", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [ + "pe" + ], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "wSlX4tKToKQ", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": false, + "layer": "thematic", + "legendSet": { + "id": "f1hWZIYCTzc" + }, + "method": 1, + "name": "MAL - LLIN stock coverage time", + "opacity": 1.0, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 4 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [ + { + "id": "202101" + } + ], + "programIndicatorDimensions": [], + "radiusHigh": 10, + "radiusLow": 10, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "startDate": "2019-12-20T00:00:00.000", + "subscribed": false, + "subscribers": [], + "thematicMapType": "CHOROPLETH", + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + }, + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "columnDimensions": [], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "ipkwT1jEZsJ", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": true, + "layer": "boundary", + "name": "ipkwT1jEZsJ", + "opacity": 1.0, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 3, + 2 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [], + "programIndicatorDimensions": [], + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + } + ], + "name": "MAL - LLIN stock coverage time by facility", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "subscribed": false, + "subscribers": [], + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "basemap": "bingLight", + "externalAccess": false, + "favorite": false, + "id": "hiqBHfHKDsf", + "interpretations": [], + "mapViews": [ + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "classes": 3, + "colorScale": "#fff7bc,#fec44f,#d95f0e", + "columnDimensions": [ + "dx" + ], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "J3UT51fnJjS" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "endDate": "2020-12-20T00:00:00.000", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [ + "pe" + ], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "bl7p2Ri4lvY", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "layer": "thematic", + "method": 2, + "name": "MAL - LLIN stock out days", + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 4 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [ + { + "id": "202101" + } + ], + "programIndicatorDimensions": [], + "radiusHigh": 10, + "radiusLow": 10, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "startDate": "2019-12-20T00:00:00.000", + "subscribed": false, + "subscribers": [], + "thematicMapType": "CHOROPLETH", + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + }, + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "columnDimensions": [], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "lTLRTq0CyqY", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": true, + "layer": "boundary", + "name": "lTLRTq0CyqY", + "opacity": 1.0, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 3, + 2 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [], + "programIndicatorDimensions": [], + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + } + ], + "name": "MAL - LLIN stockout days by facility", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "subscribed": false, + "subscribers": [], + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "basemap": "osmLight", + "description": "", + "externalAccess": false, + "favorite": false, + "id": "ZEBh5DFbW73", + "interpretations": [], + "mapViews": [ + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "columnDimensions": [ + "dx" + ], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "acDxsQjnEof" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [ + "pe" + ], + "filters": [], + "hidden": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "DPEoAEJDnAp", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": false, + "layer": "thematic", + "legendSet": { + "id": "JUG5nRDqRFl" + }, + "method": 1, + "name": "MAL - Malaria test positivity rate (Micr+RDT) (%)", + "opacity": 0.8, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [], + "programIndicatorDimensions": [], + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "thematicMapType": "CHOROPLETH", + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": true, + "userOrganisationUnitGrandChildren": false + } + ], + "name": "MAL - Malaria test positivity rate", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "userGroups": {}, + "users": {} + }, + "subscribed": false, + "subscribers": [], + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "basemap": "osmLight", + "description": "", + "externalAccess": false, + "favorite": false, + "id": "R2aoozdWrnW", + "interpretations": [], + "mapViews": [ + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "columnDimensions": [ + "dx" + ], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "VxAkjvBMvfp" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [ + "pe" + ], + "filters": [], + "hidden": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "IFKH5HBSlY2", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "layer": "thematic", + "legendSet": { + "id": "kZFJ670FpB6" + }, + "method": 1, + "name": "MAL - Suspected malaria cases tested (%)", + "opacity": 0.8, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [], + "programIndicatorDimensions": [], + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "thematicMapType": "CHOROPLETH", + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": true, + "userOrganisationUnitGrandChildren": false + } + ], + "name": "MAL - Percentage of suspected cases tested", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "userGroups": {}, + "users": {} + }, + "subscribed": false, + "subscribers": [], + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "basemap": "bingLight", + "externalAccess": false, + "favorite": false, + "id": "oUX9xgrBW5w", + "interpretations": [], + "mapViews": [ + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "classes": 5, + "colorScale": "#e41a1c,#377eb8,#4daf4a,#984ea3,#ff7f00", + "columnDimensions": [ + "dx" + ], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "hjdbr1rTKff" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "endDate": "2020-12-20T00:00:00.000", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [ + "pe" + ], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "IS0iVfLnMeM", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": false, + "layer": "thematic", + "legendSet": { + "id": "f1hWZIYCTzc" + }, + "method": 1, + "name": "MAL - SX-PYR stock coverage time", + "opacity": 1.0, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 4 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [ + { + "id": "202101" + } + ], + "programIndicatorDimensions": [], + "radiusHigh": 10, + "radiusLow": 10, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "startDate": "2019-12-20T00:00:00.000", + "subscribed": false, + "subscribers": [], + "thematicMapType": "CHOROPLETH", + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + }, + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "columnDimensions": [], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "YzErdlYxJTM", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": true, + "layer": "boundary", + "name": "YzErdlYxJTM", + "opacity": 1.0, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 3, + 2 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [], + "programIndicatorDimensions": [], + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + } + ], + "name": "MAL - PMQ stock coverage time by facility", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "subscribed": false, + "subscribers": [], + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "basemap": "bingLight", + "externalAccess": false, + "favorite": false, + "id": "xp7wFqgHXfa", + "interpretations": [], + "mapViews": [ + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "classes": 3, + "colorScale": "#fff7bc,#fec44f,#d95f0e", + "columnDimensions": [ + "dx" + ], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "DZTSUh1DFyX" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "endDate": "2020-12-20T00:00:00.000", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [ + "pe" + ], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "oELAZB7OOBZ", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "layer": "thematic", + "method": 2, + "name": "MAL - Primaquine stock out days", + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 4 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [ + { + "id": "202101" + } + ], + "programIndicatorDimensions": [], + "radiusHigh": 10, + "radiusLow": 10, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "startDate": "2019-12-20T00:00:00.000", + "subscribed": false, + "subscribers": [], + "thematicMapType": "CHOROPLETH", + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + }, + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "columnDimensions": [], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "nmxBQAPMuDT", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": true, + "layer": "boundary", + "name": "nmxBQAPMuDT", + "opacity": 1.0, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 3, + 2 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [], + "programIndicatorDimensions": [], + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + } + ], + "name": "MAL - PMQ stockout days by facility", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "subscribed": false, + "subscribers": [], + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "basemap": "osmLight", + "description": "", + "externalAccess": false, + "favorite": false, + "id": "XFGdbwY5OA9", + "interpretations": [], + "mapViews": [ + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "classes": 5, + "colorScale": "#a50f15,#de2d26,#fb6a4a,#fcae91,#fee5d9", + "columnDimensions": [ + "dx" + ], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "yobFlvQGbSO" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [ + "pe" + ], + "filters": [], + "hidden": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "lCCvh1Ghh0s", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": false, + "layer": "thematic", + "method": 2, + "name": "MAL - Reporting completeness - OPD (%)", + "opacity": 0.8, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [], + "programIndicatorDimensions": [], + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "thematicMapType": "CHOROPLETH", + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": true, + "userOrganisationUnitGrandChildren": false + } + ], + "name": "MAL - Rate of completeness of reporting by health facilities (OPD)", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "userGroups": {}, + "users": {} + }, + "subscribed": false, + "subscribers": [], + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "basemap": "bingLight", + "externalAccess": false, + "favorite": false, + "id": "Iwk0AIqANFI", + "interpretations": [], + "mapViews": [ + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "classes": 5, + "colorScale": "#e41a1c,#377eb8,#4daf4a,#984ea3,#ff7f00", + "columnDimensions": [ + "dx" + ], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "eiom58iY0UA" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "endDate": "2020-12-20T00:00:00.000", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [ + "pe" + ], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "BKh6aiOxGGX", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": false, + "layer": "thematic", + "legendSet": { + "id": "f1hWZIYCTzc" + }, + "method": 1, + "name": "MAL - RDT stock coverage time", + "opacity": 1.0, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 4 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [ + { + "id": "202101" + } + ], + "programIndicatorDimensions": [], + "radiusHigh": 10, + "radiusLow": 10, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "startDate": "2019-12-20T00:00:00.000", + "subscribed": false, + "subscribers": [], + "thematicMapType": "CHOROPLETH", + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + }, + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "columnDimensions": [], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "cVeWaNHWBd5", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": true, + "layer": "boundary", + "name": "cVeWaNHWBd5", + "opacity": 1.0, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 3, + 2 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [], + "programIndicatorDimensions": [], + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + } + ], + "name": "MAL - RDT stock coverage time by facility", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "subscribed": false, + "subscribers": [], + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "basemap": "bingLight", + "externalAccess": false, + "favorite": false, + "id": "ftdO69wPX7n", + "interpretations": [], + "mapViews": [ + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "classes": 3, + "colorScale": "#fff7bc,#fec44f,#d95f0e", + "columnDimensions": [ + "dx" + ], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "x4CIsntvniz" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "endDate": "2020-12-20T00:00:00.000", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [ + "pe" + ], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "GjtPj6O1P4G", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "layer": "thematic", + "method": 2, + "name": "MAL - ACT stock out days", + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 4 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [ + { + "id": "202101" + } + ], + "programIndicatorDimensions": [], + "radiusHigh": 10, + "radiusLow": 10, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "startDate": "2019-12-20T00:00:00.000", + "subscribed": false, + "subscribers": [], + "thematicMapType": "CHOROPLETH", + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + }, + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "columnDimensions": [], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "QvM4UKqpK2y", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": true, + "layer": "boundary", + "name": "QvM4UKqpK2y", + "opacity": 1.0, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 3, + 2 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [], + "programIndicatorDimensions": [], + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + } + ], + "name": "MAL - RDT stockout days by facility", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "subscribed": false, + "subscribers": [], + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "basemap": "bingLight", + "externalAccess": false, + "favorite": false, + "id": "L2DpofVDPFY", + "interpretations": [], + "mapViews": [ + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "classes": 5, + "colorScale": "#e41a1c,#377eb8,#4daf4a,#984ea3,#ff7f00", + "columnDimensions": [ + "dx" + ], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "hjdbr1rTKff" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "endDate": "2020-12-20T00:00:00.000", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [ + "pe" + ], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "UYGA55JFtlp", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": false, + "layer": "thematic", + "legendSet": { + "id": "f1hWZIYCTzc" + }, + "method": 1, + "name": "MAL - SX-PYR stock coverage time", + "opacity": 1.0, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 4 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [ + { + "id": "202101" + } + ], + "programIndicatorDimensions": [], + "radiusHigh": 10, + "radiusLow": 10, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "startDate": "2019-12-20T00:00:00.000", + "subscribed": false, + "subscribers": [], + "thematicMapType": "CHOROPLETH", + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + }, + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "columnDimensions": [], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "HDPwJOhr3CG", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": true, + "layer": "boundary", + "name": "HDPwJOhr3CG", + "opacity": 1.0, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 3, + 2 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [], + "programIndicatorDimensions": [], + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + } + ], + "name": "MAL - SX-PYR stock coverage time by facility", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "subscribed": false, + "subscribers": [], + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "basemap": "bingLight", + "externalAccess": false, + "favorite": false, + "id": "upKEZrMval4", + "interpretations": [], + "mapViews": [ + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "classes": 3, + "colorScale": "#fff7bc,#fec44f,#d95f0e", + "columnDimensions": [ + "dx" + ], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "e4QSHL8T5Fm" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "endDate": "2020-12-20T00:00:00.000", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [ + "pe" + ], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "QTqS4hzalS4", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "layer": "thematic", + "method": 2, + "name": "MAL - Sulfadoxine-pyrimethamine stock out days", + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 4 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [ + { + "id": "202101" + } + ], + "programIndicatorDimensions": [], + "radiusHigh": 10, + "radiusLow": 10, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "startDate": "2019-12-20T00:00:00.000", + "subscribed": false, + "subscribers": [], + "thematicMapType": "CHOROPLETH", + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + }, + { + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "columnDimensions": [], + "columns": [], + "completedOnly": false, + "dataDimensionItems": [], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "eventClustering": false, + "eventPointRadius": 0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "filterDimensions": [], + "filters": [], + "hideSubtitle": false, + "hideTitle": false, + "id": "vmg5DceGV7e", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "labels": true, + "layer": "boundary", + "name": "vmg5DceGV7e", + "opacity": 1.0, + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [ + 3, + 2 + ], + "organisationUnits": [], + "parentGraphMap": {}, + "parentLevel": 0, + "periods": [], + "programIndicatorDimensions": [], + "renderingStrategy": "SINGLE", + "rows": [], + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false + } + ], + "name": "MAL - SX-PYR stockout days by facility", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "subscribed": false, + "subscribers": [], + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "optionGroups": [], + "optionSets": [], + "options": [], + "organisationUnitGroups": [ + { + "attributeValues": [], + "dimensionItem": "HmsefvrIHE4", + "dimensionItemType": "ORGANISATION_UNIT_GROUP", + "externalAccess": false, + "favorite": false, + "id": "HmsefvrIHE4", + "legendSets": [], + "name": "District", + "periodOffset": 0, + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "shortName": "District", + "translations": [ + { + "locale": "lo", + "property": "NAME", + "value": "ເມືອງ" + }, + { + "locale": "pt", + "property": "NAME", + "value": "Distrito" + }, + { + "locale": "fr", + "property": "NAME", + "value": "District" + }, + { + "locale": "es", + "property": "SHORT_NAME", + "value": "Distrito" + }, + { + "locale": "es", + "property": "NAME", + "value": "Distrito" + }, + { + "locale": "fr", + "property": "SHORT_NAME", + "value": "District" + }, + { + "locale": "pt", + "property": "SHORT_NAME", + "value": "Distrito" + }, + { + "locale": "cs", + "property": "NAME", + "value": "Okres" + }, + { + "locale": "cs", + "property": "SHORT_NAME", + "value": "Okres" + }, + { + "locale": "ar", + "property": "SHORT_NAME", + "value": "مقاطعة" + }, + { + "locale": "ar", + "property": "NAME", + "value": "مقاطعة" + }, + { + "locale": "lo", + "property": "SHORT_NAME", + "value": "ເມືອງ" + } + ], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "package": { + "DHIS2Build": "b8d4ef3", + "DHIS2Version": "2.37.0", + "code": "MLAG00", + "description": "", + "lastUpdated": "20211215T180458", + "locale": "en", + "name": "MLAG00_1.2.1_DHIS2.37", + "type": "AGG", + "version": "1.2.1" + }, + "predictorGroups": [ + { + "attributeValues": [], + "code": "MAL_OTHER", + "externalAccess": false, + "favorite": false, + "id": "IF6vM5fMZ2P", + "name": "Malaria-other", + "predictors": [ + { + "id": "nL09tTW2d6B" + }, + { + "id": "qUSU2OjnKKM" + } + ], + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "code": "MAL_STOCK", + "externalAccess": false, + "favorite": false, + "id": "IHWCsPyt7h2", + "name": "Malaria stock", + "predictors": [ + { + "id": "wmHxmTx2FZK" + }, + { + "id": "pbT96SIj7eF" + }, + { + "id": "diIxP0dpmtd" + }, + { + "id": "BWVDRQUSpXz" + }, + { + "id": "HXvnsUOBbfX" + }, + { + "id": "q0sJHIRzhch" + }, + { + "id": "Zz3axmqcaPT" + }, + { + "id": "Rc77fYcnqTQ" + }, + { + "id": "uE66dpFP10h" + }, + { + "id": "N4EGPe4K2Wm" + }, + { + "id": "Yj3VZ1ByrbZ" + }, + { + "id": "TyMVUAuplj7" + }, + { + "id": "lkmThgijm8K" + }, + { + "id": "e2uM41wsazT" + }, + { + "id": "ADjBGB23mLr" + }, + { + "id": "mAzzLgXMSCO" + }, + { + "id": "P90G92Y1DiK" + }, + { + "id": "DT6MpifpG2l" + }, + { + "id": "TOmKeDnDicG" + }, + { + "id": "rvdcyWeZSTP" + }, + { + "id": "MUraSmIz6TK" + }, + { + "id": "qA4QITVR4M2" + } + ], + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "code": "MAL_OS", + "externalAccess": false, + "favorite": false, + "id": "AQgQ30nClpO", + "name": "[OLD] Malaria stockout", + "predictors": [ + { + "id": "wmHxmTx2FZK" + }, + { + "id": "P90G92Y1DiK" + }, + { + "id": "pbT96SIj7eF" + }, + { + "id": "N4EGPe4K2Wm" + }, + { + "id": "e2uM41wsazT" + }, + { + "id": "q0sJHIRzhch" + }, + { + "id": "ADjBGB23mLr" + }, + { + "id": "mAzzLgXMSCO" + } + ], + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "predictors": [ + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_ACT_OPENING_BALANCE", + "description": "Generates opening balance of ACT from stock on-hand from previous month", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "ACT stock on-hand", + "displayDescription": "ACT stock on-hand", + "expression": "sum(#{mTR90t8ea5x})", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "MUraSmIz6TK", + "name": "MAL - ACT opening balance", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "CBKXL15dSwQ" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + } + ], + "sequentialSampleCount": 1, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 4, + "attributeValues": [], + "code": "MAL_CONFIRMED_MEAN", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "Malaria confirmed MEAN + 2 STD", + "displayDescription": "Malaria confirmed MEAN + 2 STD", + "expression": "avg(#{vTRrNdOOT9g}+#{enVf9I39FRZ})+2*stddevPop(#{vTRrNdOOT9g}+#{enVf9I39FRZ})", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "qUSU2OjnKKM", + "name": "Malaria confirmed MEAN+2 STD", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "LhcXjWs6lm7" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IF6vM5fMZ2P" + } + ], + "sequentialSampleCount": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 4, + "attributeValues": [], + "code": "MAL_CONFIRMED_MEDIAN", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "Malaria confirmed MEDIAN", + "displayDescription": "Malaria confirmed MEDIAN", + "expression": "median(#{vTRrNdOOT9g}+#{enVf9I39FRZ})", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "nL09tTW2d6B", + "name": "Malaria confirmed MEDIAN", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "nwzSeTAxCGV" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IF6vM5fMZ2P" + } + ], + "sequentialSampleCount": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_ARTESUNATE_OPBAL", + "description": "Generates opening balance of Artesunate from stock on-hand from previous month", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "Artesunate stock on-hand", + "displayDescription": "Artesunate stock on-hand", + "expression": "sum(#{NFMzN9Up5zQ})", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "DT6MpifpG2l", + "name": "MAL - Artesunate opening balance", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "BdRI37FNDJs" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + } + ], + "sequentialSampleCount": 1, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_WITH_ACT_SO_DAYS_REPORTED", + "description": "Generates a count of facilities with ACT stockout days reported", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "if(ACT stock out days> 0,1,0)", + "displayDescription": "if(ACT stock out days> 0,1,0)", + "expression": "if(#{pNalmL0t0uk}> 0,1,0)", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "q0sJHIRzhch", + "name": "MAL - Facilities with ACT stockout days reported", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "Pw7sgDi5Pge" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + }, + { + "id": "AQgQ30nClpO" + } + ], + "sequentialSampleCount": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_WITH_ARTESUNATE_SO_DAYS_REPORTED", + "description": "Generates a count of facilities with Artesunate stockout days reported", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "if(Artesunate stock out days> 0,1,0)", + "displayDescription": "if(Artesunate stock out days> 0,1,0)", + "expression": "if(#{N6uAJQjkRQl}> 0,1,0)", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "lkmThgijm8K", + "name": "MAL - Facilities with Artesunate stockout days reported", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "ruRmurEI4yM" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + } + ], + "sequentialSampleCount": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_WITH_LLIN_SO_DAYS_REPORTED", + "description": "Generates a count of facilities with LLIN stockout days reported", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "if(LLIN stock out days> 0,1,0)", + "displayDescription": "if(LLIN stock out days> 0,1,0)", + "expression": "if(#{KQvuAWwOPnE}> 0,1,0)", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "rvdcyWeZSTP", + "name": "MAL - Facilities with LLIN stockout days reported", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "cS2FTLczEz0" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + } + ], + "sequentialSampleCount": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_WITHOUT_ACT_SO_DAYS_REPORTED", + "description": "Generates a count of facilities without ACT stockout days reported", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "if(ACT stock out days== 0,1,0)", + "displayDescription": "if(ACT stock out days== 0,1,0)", + "expression": "if(#{pNalmL0t0uk}== 0,1,0)", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "N4EGPe4K2Wm", + "name": "MAL - Facilities without ACT stockout days reported", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "d9YgyZpkUW4" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + }, + { + "id": "AQgQ30nClpO" + } + ], + "sequentialSampleCount": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_WITHOUT_ARTESUNATE_SO_DAYS_REPORTED", + "description": "Generates a count of facilities without Artesunate stockout days reported", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "if(Artesunate stock out days== 0,1,0)", + "displayDescription": "if(Artesunate stock out days== 0,1,0)", + "expression": "if(#{N6uAJQjkRQl}== 0,1,0)", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "Yj3VZ1ByrbZ", + "name": "MAL - Facilities without Artesunate stockout days reported", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "We2VNUVFxso" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + } + ], + "sequentialSampleCount": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_WITHOUT_LLIN_SO_DAYS_REPORTED", + "description": "Generates a count of facilities without LLIN stockout days reported", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "if(LLIN stock out days== 0,1,0)", + "displayDescription": "if(LLIN stock out days== 0,1,0)", + "expression": "if(#{KQvuAWwOPnE}== 0,1,0)", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "Zz3axmqcaPT", + "name": "MAL - Facilities without LLIN stockout days reported", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "L9wnSDBRClO" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + } + ], + "sequentialSampleCount": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_WITHOUT_PRIMAQUINE_SO_DAYS_REPORTED", + "description": "Generates a count of facilities without Primaquine stockout days reported", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "if(Primaquine stock out days== 0,1,0)", + "displayDescription": "if(Primaquine stock out days== 0,1,0)", + "expression": "if(#{C3vtx1aie2U}== 0,1,0)", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "BWVDRQUSpXz", + "name": "MAL - Facilities without Primaquine stockout days reported", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "bbHPUFANq7c" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + } + ], + "sequentialSampleCount": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_WITHOUT_RDTS_SO_DAYS_REPORTED", + "description": "Generates a count of facilities without RDTs stockout days reported", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "if(RDT stock out days== 0,1,0)", + "displayDescription": "if(RDT stock out days== 0,1,0)", + "expression": "if(#{DEasiq2eO60}== 0,1,0)", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "P90G92Y1DiK", + "name": "MAL - Facilities without RDTs stockout days reported", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "lPXaBt4ToQb" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + }, + { + "id": "AQgQ30nClpO" + } + ], + "sequentialSampleCount": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "description": "Generates a count of facilities without Sulfadoxine-pyrimethamine stockout days reported", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "if(Sulfadoxine-pyrimethamine stock out days== 0,1,0)", + "displayDescription": "if(Sulfadoxine-pyrimethamine stock out days== 0,1,0)", + "expression": "if(#{B3ItBcjVieC}== 0,1,0)", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "TyMVUAuplj7", + "name": "MAL - Facilities without Sulfadoxine-pyrimethamine stockout days reported", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "GHtprEGbFWE" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + } + ], + "sequentialSampleCount": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_WITH_PRIMAQUINE_SO_DAYS_REPORTED", + "description": "Generates a count of facilities with Primaquine stockout days reported", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "if(Primaquine stock out days> 0,1,0)", + "displayDescription": "if(Primaquine stock out days> 0,1,0)", + "expression": "if(#{C3vtx1aie2U}> 0,1,0)", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "HXvnsUOBbfX", + "name": "MAL - Facilities with Primaquine stockout days reported", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "XRIzH1a19DU" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + } + ], + "sequentialSampleCount": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_WITH_RDTS_SO_DAYS_REPORTED", + "description": "Generates a count of facilities with RDTs stockout days reported", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "if(RDT stock out days> 0,1,0)", + "displayDescription": "if(RDT stock out days> 0,1,0)", + "expression": "if(#{DEasiq2eO60}> 0,1,0)", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "e2uM41wsazT", + "name": "MAL - Facilities with RDTs stockout days reported", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "vBAWCLJpF6r" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + }, + { + "id": "AQgQ30nClpO" + } + ], + "sequentialSampleCount": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "description": "Generates a count of facilities with Sulfadoxine-pyrimethamine stockout days reported", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "if(Sulfadoxine-pyrimethamine stock out days> 0,1,0)", + "displayDescription": "if(Sulfadoxine-pyrimethamine stock out days> 0,1,0)", + "expression": "if(#{B3ItBcjVieC}> 0,1,0)", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "diIxP0dpmtd", + "name": "MAL - Facilities with Sulfadoxine-pyrimethamine stockout days reported", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "Rd02CjRNYDD" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + } + ], + "sequentialSampleCount": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_ACT_STOCKOUT", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "if(MAL - ACT stockout days > 0,1,0)", + "displayDescription": "if(MAL - ACT stockout days > 0,1,0)", + "expression": "if(#{pNalmL0t0uk} > 0,1,0)", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "wmHxmTx2FZK", + "name": "MAL - HF ACT Stockout", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "ViRibye0RWo" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + }, + { + "id": "AQgQ30nClpO" + } + ], + "sequentialSampleCount": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_RDT_STOCKOUT", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "if(MAL - ACT stockout days > 0,1,0)", + "displayDescription": "if(MAL - ACT stockout days > 0,1,0)", + "expression": "if(#{DEasiq2eO60} > 0,1,0)", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "ADjBGB23mLr", + "name": "MAL - HF RDT Stockout", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "XXcN7bSRd7f" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + }, + { + "id": "AQgQ30nClpO" + } + ], + "sequentialSampleCount": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_REPORTING_RDT", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "if(MAL - ACT stockout days == 0 && MAL - RDT stockout days == 0,1,0)", + "displayDescription": "if(MAL - ACT stockout days == 0 && MAL - RDT stockout days == 0,1,0)", + "expression": "if(#{pNalmL0t0uk} >= 0 && #{DEasiq2eO60} >= 0,1,0) ", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "mAzzLgXMSCO", + "name": "MAL - HF reporting on anti-malarial or RDTs during the reporting period", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "VKFrxbEMwAw" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + }, + { + "id": "AQgQ30nClpO" + } + ], + "sequentialSampleCount": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_WITHOUT_OS_RDT", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "if(MAL - ACT stockout days == 0 && MAL - RDT stockout days == 0,1,0)", + "displayDescription": "if(MAL - ACT stockout days == 0 && MAL - RDT stockout days == 0,1,0)", + "expression": "if(#{pNalmL0t0uk} == 0 && #{DEasiq2eO60} == 0,1,0) ", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "pbT96SIj7eF", + "name": "MAL - HF without stock-out of anti-malarial or RDTs during the reporting period", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "EUOyugUvYYt" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + }, + { + "id": "AQgQ30nClpO" + } + ], + "sequentialSampleCount": 0, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_LLIN_OPENING_BALANCE", + "description": "Generates opening balance of LLIN from stock on-hand from previous month", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "LLIN stock on-hand", + "displayDescription": "LLIN stock on-hand", + "expression": "sum(#{GIhoITcc0jp})", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "qA4QITVR4M2", + "name": "MAL - LLIN opening balance", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "RRA1O37nLn0" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + } + ], + "sequentialSampleCount": 1, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_PRIMAQUINE_OPENING_BALANCE", + "description": "Generates opening balance of Primaquine from stock on-hand from previous month", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "Primaquine stock on-hand", + "displayDescription": "Primaquine stock on-hand", + "expression": "sum(#{jynElcE3gF0})", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "uE66dpFP10h", + "name": "MAL - Primaquine opening balance", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "CPBuuIiDnn8" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + } + ], + "sequentialSampleCount": 1, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_RDT_OPENING_BALANCE", + "description": "Generates opening balance of RDT from on-hand of previous month", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "RDT stock on-hand", + "displayDescription": "RDT stock on-hand", + "expression": "sum(#{ImjPjbE2rFm})", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "TOmKeDnDicG", + "name": "MAL - RDT opening balance", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "HOEMlLX5SMC" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + } + ], + "sequentialSampleCount": 1, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "annualSampleCount": 0, + "attributeValues": [], + "code": "MAL_SP_OPENING_BALANCE", + "description": "Generates opening balance of SP from on-hand of previous month", + "externalAccess": false, + "favorite": false, + "generator": { + "description": "Sulfadoxine-pyrimethamine stock on-hand", + "displayDescription": "Sulfadoxine-pyrimethamine stock on-hand", + "expression": "sum(#{VTunnWZqQCj})", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "id": "Rc77fYcnqTQ", + "name": "MAL - Sulfadoxine-pyrimethamine opening balance", + "organisationUnitLevels": [ + { + "id": "" + } + ], + "output": { + "id": "f7z0IhHVWBT" + }, + "outputCombo": { + "id": "HllvX50cXC0" + }, + "periodType": "Monthly", + "predictorGroups": [ + { + "id": "IHWCsPyt7h2" + } + ], + "sequentialSampleCount": 1, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "sections": [ + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "Eoc8cDA52c3" + }, + { + "id": "HHpmA3PRXlJ" + } + ], + "dataSet": { + "id": "VEM58nY22sO" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "sraNbe9XsKW", + "indicators": [], + "name": "Active case detection", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 7, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "BwnnrV1AkNj" + }, + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "BjDrgVrkBI3" + }, + { + "id": "VL73cqNHxBJ" + }, + { + "id": "SXGjaEobp6V" + }, + { + "id": "n0tgQ4PjnnT" + } + ], + "dataSet": { + "id": "VEM58nY22sO" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "GgNJp8tHxD7", + "indicators": [], + "name": "All-cause inpatients and outpatients", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 1, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "IvYR8mc6prX" + } + ], + "dataElements": [ + { + "id": "Ppc51eaCPHb" + }, + { + "id": "a4Cw4iPcMrY" + }, + { + "id": "HMUc4RajgaC" + }, + { + "id": "koNkg93tcFv" + }, + { + "id": "DYpakDmCvNG" + }, + { + "id": "EQOuTaSaFOn" + }, + { + "id": "lY309oiMifk" + }, + { + "id": "QFz6w4llj0h" + }, + { + "id": "TMaDgAn60aR" + }, + { + "id": "KNAg6VC23us" + }, + { + "id": "a2hiTowGc0N" + }, + { + "id": "ra1VTaKQK60" + } + ], + "dataSet": { + "id": "VEM58nY22sO" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "tyxjJLlYAyk", + "indicators": [], + "name": "Case Investigation", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 9, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "VkQPxB6VdoG" + }, + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "CxI1FHE4oEh" + }, + { + "id": "UwaQ0MJzXBz" + }, + { + "id": "wAHUeGPbH9A" + } + ], + "dataSet": { + "id": "e8BAh6eGcNE" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "vbBv9VDHA49", + "indicators": [], + "name": "Cross border", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 1, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "THsfR427giB" + }, + { + "id": "twoxyChxlC3" + }, + { + "id": "YnKOG0WVtlq" + }, + { + "id": "o3fW3Hgo9GO" + }, + { + "id": "To2fZcY5oUS" + }, + { + "id": "SldWQ0uCFA2" + } + ], + "dataSet": { + "id": "PRiItBuYx0e" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "bRcyBMNSZx2", + "indicators": [], + "name": "Discarded", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 5, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "JuuvtzLw22M" + } + ], + "dataElements": [ + { + "id": "EHbjdbiKtd8" + }, + { + "id": "Wm0uUlvGfOQ" + }, + { + "id": "oNqsWW6eD3L" + }, + { + "id": "FyouhDzv0bP" + }, + { + "id": "mDCNvNfweci" + }, + { + "id": "Gq9q1I1t60k" + }, + { + "id": "gSlR6YgWw45" + }, + { + "id": "UMD2TSAxtFr" + }, + { + "id": "jKGVvTehpps" + } + ], + "dataSet": { + "id": "VEM58nY22sO" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "mo9KvoElooQ", + "indicators": [], + "name": "Foci classification and response", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 13, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "lZi1cjtvVB6" + }, + { + "id": "kC0lyoKVBqC" + }, + { + "id": "s9FmEvF0r4n" + }, + { + "id": "lz1FE0wvo1m" + }, + { + "id": "Qzfvt1YRb1Y" + }, + { + "id": "LH9FKWl1FfP" + } + ], + "dataSet": { + "id": "VEM58nY22sO" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "JsUsBIvCpX7", + "indicators": [], + "name": "Foci investigation", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 12, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "EpyvZBsqMmM" + }, + { + "id": "tpz77FcntKx" + }, + { + "id": "FRbgzTZ74Hh" + } + ], + "dataSet": { + "id": "qNtxTrp56wV" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "wr5g5bAdb92", + "indicators": [], + "name": "Funding", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 1, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "vCwegNjEuxN" + }, + { + "id": "t4FqHKzAyEn" + }, + { + "id": "SPhiBDEbG0o" + }, + { + "id": "GEgULJaUkyQ" + } + ], + "dataSet": { + "id": "O34y2Kyxx6P" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "lLRmTfxH1r9", + "indicators": [], + "name": "Intermittent preventive treatment in pregnancy (IPTp)", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 11, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "MJFRkoiH4KQ" + }, + { + "id": "UH47dKFqTRK" + }, + { + "id": "NywGy6uMS5r" + } + ], + "dataSet": { + "id": "qNtxTrp56wV" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "EU6lSY2Polw", + "indicators": [], + "name": "Interventions", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 3, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "xysDfJ6oPMh" + }, + { + "id": "kk2ClooVm41" + }, + { + "id": "OpiuZiAzEwQ" + }, + { + "id": "oIi0Ybn06e2" + }, + { + "id": "CsJm4IsvXqg" + }, + { + "id": "U4kmpM14xhJ" + } + ], + "dataSet": { + "id": "PRiItBuYx0e" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "nMzryrLgK43", + "indicators": [], + "name": "Issued", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 3, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "IvYR8mc6prX" + } + ], + "dataElements": [ + { + "id": "DPNsg3wjxGm" + }, + { + "id": "enVf9I39FRZ" + }, + { + "id": "jvjJ901K56K" + }, + { + "id": "yHS1RqIFeD7" + }, + { + "id": "lgDGha7OO9o" + }, + { + "id": "iMcQ1MedqGo" + }, + { + "id": "WNcIBqTodHr" + }, + { + "id": "QJUcVI1zY5y" + }, + { + "id": "jtyuEfbNbkb" + }, + { + "id": "pmRn0GsUfr6" + }, + { + "id": "vTRrNdOOT9g" + }, + { + "id": "IUrl6HtHVQI" + }, + { + "id": "yVGY0DGVPor" + }, + { + "id": "llpG8qA0SvG" + } + ], + "dataSet": { + "id": "VEM58nY22sO" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "hiRm5bvfM2i", + "indicators": [], + "name": "Laboratory", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 5, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "IvYR8mc6prX" + } + ], + "dataElements": [ + { + "id": "DPNsg3wjxGm" + }, + { + "id": "enVf9I39FRZ" + }, + { + "id": "jvjJ901K56K" + }, + { + "id": "yHS1RqIFeD7" + }, + { + "id": "lgDGha7OO9o" + }, + { + "id": "iMcQ1MedqGo" + }, + { + "id": "WNcIBqTodHr" + }, + { + "id": "QJUcVI1zY5y" + }, + { + "id": "jtyuEfbNbkb" + }, + { + "id": "pmRn0GsUfr6" + }, + { + "id": "vTRrNdOOT9g" + }, + { + "id": "IUrl6HtHVQI" + }, + { + "id": "yVGY0DGVPor" + }, + { + "id": "llpG8qA0SvG" + } + ], + "dataSet": { + "id": "O34y2Kyxx6P" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "uvJxbOVALVi", + "indicators": [], + "name": "Laboratory", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 5, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "IvYR8mc6prX" + } + ], + "dataElements": [ + { + "id": "tuOTgWfDO6m" + }, + { + "id": "IIU1O0Z4l49" + }, + { + "id": "pUC8tgzn0lV" + }, + { + "id": "TNTW2ruEVEu" + }, + { + "id": "JkOyLRb3dpX" + }, + { + "id": "X0luAFiy268" + } + ], + "dataSet": { + "id": "F7OVox4TtLP" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "Ms74sn15vUt", + "indicators": [], + "name": "Malaria Cases", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": true, + "sortOrder": 1, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "BwnnrV1AkNj" + }, + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "cE8SDxizo5s" + }, + { + "id": "kRasaq1REFp" + }, + { + "id": "v0WZQQ6gKAX" + }, + { + "id": "S9nIxTMWplW" + }, + { + "id": "GxlrIgMyEf4" + }, + { + "id": "lYsfXxCw6Qi" + }, + { + "id": "LhcXjWs6lm7" + }, + { + "id": "nwzSeTAxCGV" + } + ], + "dataSet": { + "id": "VEM58nY22sO" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "RBu2r5nMyBI", + "indicators": [], + "name": "Malaria cases and deaths", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 3, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "kdMT3AuDzj1" + }, + { + "id": "CWHBMa4nC9J" + }, + { + "id": "S3AqkeU4DET" + } + ], + "dataSet": { + "id": "e8BAh6eGcNE" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "NbOUEGwlcFz", + "indicators": [], + "name": "Migrant and mobile population", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 2, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "CBKXL15dSwQ" + }, + { + "id": "BdRI37FNDJs" + }, + { + "id": "RRA1O37nLn0" + }, + { + "id": "CPBuuIiDnn8" + }, + { + "id": "HOEMlLX5SMC" + }, + { + "id": "f7z0IhHVWBT" + } + ], + "dataSet": { + "id": "PRiItBuYx0e" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "kDdKnSo5LCM", + "indicators": [], + "name": "Opening balance", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 1, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "BwnnrV1AkNj" + }, + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "VL73cqNHxBJ" + }, + { + "id": "BjDrgVrkBI3" + }, + { + "id": "SXGjaEobp6V" + }, + { + "id": "cE8SDxizo5s" + }, + { + "id": "kRasaq1REFp" + }, + { + "id": "v0WZQQ6gKAX" + }, + { + "id": "GxlrIgMyEf4" + }, + { + "id": "lYsfXxCw6Qi" + }, + { + "id": "LhcXjWs6lm7" + }, + { + "id": "nwzSeTAxCGV" + } + ], + "dataSet": { + "id": "O34y2Kyxx6P" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "iwiTbzS3JBh", + "indicators": [], + "name": "Outpatients", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 1, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "BwnnrV1AkNj" + }, + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "cOVhTyW8zN6" + }, + { + "id": "WBmvvafUwT8" + }, + { + "id": "dFaBg0HpoIL" + } + ], + "dataSet": { + "id": "qNtxTrp56wV" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "hzzKgrpKvLJ", + "indicators": [], + "name": "Population at risk", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 2, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "n0tgQ4PjnnT" + }, + { + "id": "d7vgVlFnviU" + }, + { + "id": "rY7FJXnqwkM" + }, + { + "id": "S9nIxTMWplW" + }, + { + "id": "qokS11KT7gD" + } + ], + "dataSet": { + "id": "O34y2Kyxx6P" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "szfx1ygvXLg", + "indicators": [], + "name": "Pregnant women", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 12, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "x4A99GZbg5k" + }, + { + "id": "F7BWpIVSEpM" + }, + { + "id": "eCKSKNgHJqe" + }, + { + "id": "uFwkuqBgI29" + }, + { + "id": "iaQuylCoH3u" + }, + { + "id": "GDBHGyXJI2T" + } + ], + "dataSet": { + "id": "PRiItBuYx0e" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "VK8YuFIeOYD", + "indicators": [], + "name": "Received", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 2, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "ZnifKT2U88N" + }, + { + "id": "F7L5jVrWnHi" + }, + { + "id": "zM1vd2VeCss" + }, + { + "id": "RJkNUMqVTRC" + }, + { + "id": "ZRUpLZ2HVEH" + }, + { + "id": "Qv9b5QAOO0F" + } + ], + "dataSet": { + "id": "PRiItBuYx0e" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "EslNQtEovqx", + "indicators": [], + "name": "Redistributed", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 4, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "mTR90t8ea5x" + }, + { + "id": "NFMzN9Up5zQ" + }, + { + "id": "GIhoITcc0jp" + }, + { + "id": "jynElcE3gF0" + }, + { + "id": "ImjPjbE2rFm" + }, + { + "id": "VTunnWZqQCj" + } + ], + "dataSet": { + "id": "PRiItBuYx0e" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "Es3XInUjtO2", + "indicators": [], + "name": "Stock on hand", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 6, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "ENIbHvgpaQR" + }, + { + "id": "mIefFUftPpa" + }, + { + "id": "kc07jdV2C3B" + }, + { + "id": "vfIbhthFgHT" + }, + { + "id": "hEQeamIKO5z" + }, + { + "id": "CHM9i82Xvid" + }, + { + "id": "Md3xk3vlABx" + }, + { + "id": "g6T1sC2ZSFD" + }, + { + "id": "yMIgzlV9sES" + } + ], + "dataSet": { + "id": "VEM58nY22sO" + }, + "description": "Malaria - Stock", + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "XQVQlpdtMFQ", + "indicators": [], + "name": "Stock-out", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 14, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "pNalmL0t0uk" + }, + { + "id": "N6uAJQjkRQl" + }, + { + "id": "KQvuAWwOPnE" + }, + { + "id": "C3vtx1aie2U" + }, + { + "id": "DEasiq2eO60" + }, + { + "id": "B3ItBcjVieC" + } + ], + "dataSet": { + "id": "PRiItBuYx0e" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "PBEjcCjyuVN", + "indicators": [], + "name": "Stock out days", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 7, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "YcZAfNmFuje" + }, + { + "id": "OCuA0tI3BCi" + }, + { + "id": "l7gcisIvTBN" + }, + { + "id": "QUk2XwhVL7n" + }, + { + "id": "M91K9z70dl4" + }, + { + "id": "rbqe6Td5rNI" + }, + { + "id": "GVkqWp9gP5b" + }, + { + "id": "WoVoIProU89" + }, + { + "id": "h9DNhuHHgkH" + } + ], + "dataSet": { + "id": "VEM58nY22sO" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "aJoFuCT5ZvC", + "indicators": [], + "name": "Treatment", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 11, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "categoryCombos": [ + { + "id": "bjDvmb4bfuf" + } + ], + "dataElements": [ + { + "id": "OCuA0tI3BCi" + }, + { + "id": "YG5uCKZRilL" + }, + { + "id": "Ae0TUkWm1wo" + }, + { + "id": "l7gcisIvTBN" + }, + { + "id": "YcZAfNmFuje" + }, + { + "id": "QUk2XwhVL7n" + }, + { + "id": "M91K9z70dl4" + }, + { + "id": "rbqe6Td5rNI" + }, + { + "id": "GVkqWp9gP5b" + }, + { + "id": "WoVoIProU89" + }, + { + "id": "h9DNhuHHgkH" + } + ], + "dataSet": { + "id": "O34y2Kyxx6P" + }, + "disableDataElementAutoGroup": false, + "externalAccess": false, + "favorite": false, + "greyedFields": [], + "id": "wmZb0JjszLK", + "indicators": [], + "name": "Treatment", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "showColumnTotals": false, + "showRowTotals": false, + "sortOrder": 9, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "userGroups": [ + { + "attributeValues": [], + "code": "MAL_ACCESS", + "externalAccess": false, + "favorite": false, + "id": "ZXEVDM9XRea", + "managedByGroups": [ + { + "id": "dO0Z6jb54LZ" + } + ], + "managedGroups": [], + "name": "Malaria access", + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "users": [] + }, + { + "attributeValues": [], + "code": "MAL_ADMIN", + "externalAccess": false, + "favorite": false, + "id": "suMb19wGXPR", + "managedByGroups": [ + { + "id": "pYKORibPZEp" + } + ], + "managedGroups": [], + "name": "Malaria admin", + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "users": [] + }, + { + "attributeValues": [], + "code": "MAL_CAPTURE", + "externalAccess": false, + "favorite": false, + "id": "fRSrUJ6SMGH", + "managedByGroups": [], + "managedGroups": [], + "name": "Malaria data capture", + "publicAccess": "--------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "users": [] + }, + { + "attributeValues": [], + "code": "MAL_STOCK_CAPTURE", + "externalAccess": false, + "favorite": false, + "id": "s5MVdN5Ehkz", + "managedByGroups": [], + "managedGroups": [], + "name": "Malaria stock data capture", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "users": [] + } + ], + "users": [ + { + "attributeValues": [], + "dataViewOrganisationUnits": [], + "externalAccess": false, + "favorite": false, + "firstName": "Admin", + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "surname": "WHO", + "teiSearchOrganisationUnits": [], + "translations": [], + "userAccesses": [], + "userCredentials": { + "attributeValues": [], + "catDimensionConstraints": [], + "cogsDimensionConstraints": [], + "disabled": true, + "externalAccess": false, + "externalAuth": false, + "favorite": false, + "favorites": [], + "id": "MMRO6oP1HQg", + "invitation": false, + "lastLogin": "2018-07-13T12:28:39.168", + "name": "Admin WHO", + "passwordLastUpdated": "2018-07-13T12:28:39.168", + "selfRegistered": false, + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "translations": [], + "twoFA": false, + "user": { + "displayName": "Olav Poppe", + "id": "jB4WJmaNuGT", + "name": "Olav Poppe", + "username": "olavpo" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userInfo": { + "id": "vUeLeQMSwhN" + }, + "userRoles": [], + "username": "who" + } + } + ], + "validationRuleGroups": [ + { + "attributeValues": [], + "code": "MAL_BR", + "externalAccess": false, + "favorite": false, + "id": "rNYeFmJm04s", + "name": "Malaria burden reduction", + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRules": [ + { + "id": "Rv0j1oszqz0" + }, + { + "id": "Kfu21V8eGYz" + }, + { + "id": "w4eiMkqdRF7" + }, + { + "id": "s7pJpP0oejw" + }, + { + "id": "qiImoieVL9z" + }, + { + "id": "uMJw8l6oqbB" + }, + { + "id": "m4U0WSUJxu0" + }, + { + "id": "Kejj3gJ2GD0" + }, + { + "id": "GwKVzvwzVeD" + }, + { + "id": "dMIBcBjZ7A9" + }, + { + "id": "wuTietFyjIc" + }, + { + "id": "VPgf5jXAgnV" + }, + { + "id": "JAgEnK284YP" + }, + { + "id": "pjDDfSTgiAG" + }, + { + "id": "EqRsTyz3SYF" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_EL", + "externalAccess": false, + "favorite": false, + "id": "y4UWjeyKIwS", + "name": "Malaria elimination", + "publicAccess": "r-------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRules": [ + { + "id": "FpKUc2oBEsL" + }, + { + "id": "Rv0j1oszqz0" + }, + { + "id": "CUh5R5llms0" + }, + { + "id": "w4eiMkqdRF7" + }, + { + "id": "s7pJpP0oejw" + }, + { + "id": "D1WPu8y1Aag" + }, + { + "id": "e5u13ywRYSN" + }, + { + "id": "ohyQDfDlUGD" + }, + { + "id": "Kejj3gJ2GD0" + }, + { + "id": "p5591gkdyU4" + }, + { + "id": "wuTietFyjIc" + }, + { + "id": "VPgf5jXAgnV" + }, + { + "id": "bUi38Jyql60" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_STOCK", + "externalAccess": false, + "favorite": false, + "id": "XJsWwoDMpAj", + "name": "Malaria stock", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRules": [ + { + "id": "Qpm2opm7PDs" + }, + { + "id": "zJPN4OUVHbI" + }, + { + "id": "j5v2UNhYuk6" + }, + { + "id": "GnEuqzSpfRB" + }, + { + "id": "vedFOTBB9GX" + }, + { + "id": "qBLvzadOdnq" + }, + { + "id": "dNrjfYYWLL6" + }, + { + "id": "npLfQBZjsmO" + }, + { + "id": "htNzNo1sX2D" + }, + { + "id": "vGgLI7fa8qY" + }, + { + "id": "KGlM5TnVQnQ" + }, + { + "id": "O8OySVaXeoP" + }, + { + "id": "Vpg5PP6ymLP" + }, + { + "id": "GLmurc83gkw" + }, + { + "id": "vYw6CMkgkc0" + }, + { + "id": "xIiJDuTOeAl" + }, + { + "id": "kQFA2i60IGU" + }, + { + "id": "Q1x1AuQfQF7" + }, + { + "id": "DW1atgBthwz" + }, + { + "id": "ZPrnXtEIxUx" + }, + { + "id": "bi7JlAsuEuW" + }, + { + "id": "ewyI4lz9uj9" + }, + { + "id": "FX84CXAaYBN" + }, + { + "id": "qACo3nL5P0i" + }, + { + "id": "IVZFu3qWtAp" + }, + { + "id": "Ltdw2fx74Ya" + }, + { + "id": "xsxH5YsIxJc" + }, + { + "id": "kepvZ72XvbN" + }, + { + "id": "vkfpjyEln9S" + }, + { + "id": "u5v67q1yGrv" + } + ] + } + ], + "validationRules": [ + { + "attributeValues": [], + "code": "MAL_ACT_DISCARDED_VS_IN", + "dimensionItem": "npLfQBZjsmO", + "displayInstruction": "ACT discarded should be less than or equal to ACT opening balance + ACTs courses received", + "externalAccess": false, + "favorite": false, + "id": "npLfQBZjsmO", + "importance": "MEDIUM", + "instruction": "ACT discarded should be less than or equal to ACT opening balance + ACTs courses received", + "leftSide": { + "description": "ACT discarded", + "displayDescription": "ACT discarded", + "expression": "#{THsfR427giB}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - ACT discarded<=ACT opening balance + ACTs courses received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "ACT opening balance + ACTs courses received", + "displayDescription": "ACT opening balance + ACTs courses received", + "expression": "#{l7gcisIvTBN}+#{CBKXL15dSwQ}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_ACT_DISTRIBUTED_VS_IN", + "dimensionItem": "vedFOTBB9GX", + "displayInstruction": "ACTs distributed should be less than or equal to ACT opening balance + ACTs courses received", + "externalAccess": false, + "favorite": false, + "id": "vedFOTBB9GX", + "importance": "MEDIUM", + "instruction": "ACTs distributed should be less than or equal to ACT opening balance + ACTs courses received", + "leftSide": { + "description": "ACTs distributed", + "displayDescription": "ACTs distributed", + "expression": "#{xysDfJ6oPMh}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - ACTs distributed<=ACT opening balance + ACTs courses received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "ACT opening balance + ACTs courses received", + "displayDescription": "ACT opening balance + ACTs courses received", + "expression": "#{l7gcisIvTBN}+#{CBKXL15dSwQ}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_ACT_REDISTRIBUTED_VS_IN", + "dimensionItem": "ewyI4lz9uj9", + "displayInstruction": "ACTs redistributed should be less than or equal to ACT opening balance + ACTs courses received", + "externalAccess": false, + "favorite": false, + "id": "ewyI4lz9uj9", + "importance": "MEDIUM", + "instruction": "ACTs redistributed should be less than or equal to ACT opening balance + ACTs courses received", + "leftSide": { + "description": "ACTs redistributed", + "displayDescription": "ACTs redistributed", + "expression": "#{ZnifKT2U88N}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - ACTs redistributed<=ACT opening balance + ACTs courses received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "ACT opening balance + ACTs courses received", + "displayDescription": "ACT opening balance + ACTs courses received", + "expression": "#{CBKXL15dSwQ} + #{x4A99GZbg5k}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_ACT_ONHAND_VS_IN", + "dimensionItem": "xIiJDuTOeAl", + "displayInstruction": "ACT stock on hand should be less than or equal to ACT opening balance + ACTs courses received", + "externalAccess": false, + "favorite": false, + "id": "xIiJDuTOeAl", + "importance": "MEDIUM", + "instruction": "ACT stock on hand should be less than or equal to ACT opening balance + ACTs courses received", + "leftSide": { + "description": "ACT stock on hand", + "displayDescription": "ACT stock on hand", + "expression": "#{mTR90t8ea5x}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - ACT stock on hand<=ACT opening balance + ACTs courses received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "ACT opening balance + ACTs courses received", + "displayDescription": "ACT opening balance + ACTs courses received", + "expression": "#{l7gcisIvTBN}+#{CBKXL15dSwQ}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_ACT_STOCKOUT_LESS_30D", + "dimensionItem": "GLmurc83gkw", + "displayInstruction": "ACT stock out days should be less than or equal to 30 days", + "externalAccess": false, + "favorite": false, + "id": "GLmurc83gkw", + "importance": "MEDIUM", + "instruction": "ACT stock out days should be less than or equal to 30 days", + "leftSide": { + "description": " Stock out days", + "displayDescription": "Stock out days", + "expression": "#{pNalmL0t0uk}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - ACT stock out days<=30 days", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "30 days", + "displayDescription": "30 days", + "expression": "30", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_DRUG_RECEIVED_VS_FIRSTLINE_RECEIVED", + "dimensionItem": "s7pJpP0oejw", + "displayInstruction": "[Number of ACT treatment courses receive] should be less than or equal to the number of [Number 1st-line treatment courses received (incl. ACTs)]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "s7pJpP0oejw", + "importance": "MEDIUM", + "instruction": "[Number of ACT treatment courses receive] should be less than or equal to the number of [Number 1st-line treatment courses received (incl. ACTs)]. Both numbers can be zeros.", + "leftSide": { + "description": "Number of ACT treatment courses receive", + "displayDescription": "Number of ACT treatment courses receive", + "expression": "#{l7gcisIvTBN}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - ACT treatment courses receive <=1st-line treatment courses received (incl. ACTs)", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "Number 1st-line treatment courses received (inlc. ACTs)", + "displayDescription": "Number 1st-line treatment courses received (inlc. ACTs)", + "expression": "#{OCuA0tI3BCi}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "rNYeFmJm04s" + }, + { + "id": "y4UWjeyKIwS" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_ADMISSIONS_ALLCAUSES_VS_OPD", + "dimensionItem": "uMJw8l6oqbB", + "displayInstruction": "[all-cause admission] should be less than or equal to the number of [all-cause outpatient]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "uMJw8l6oqbB", + "importance": "MEDIUM", + "instruction": "[all-cause admission] should be less than or equal to the number of [all-cause outpatient]. Both numbers can be zeros.", + "leftSide": { + "description": "all-cause admission", + "displayDescription": "all-cause admission", + "expression": "#{BjDrgVrkBI3}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - all-cause admission <= all-cause outpatient", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "all-cause outpatient", + "displayDescription": "all-cause outpatient", + "expression": "#{VL73cqNHxBJ}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "rNYeFmJm04s" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_DEATHS_VS_ADMISSIONS", + "dimensionItem": "JAgEnK284YP", + "displayInstruction": "[all-cause deaths] should be less than or equal to the number of [all-cause admission]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "JAgEnK284YP", + "importance": "MEDIUM", + "instruction": "[all-cause deaths] should be less than or equal to the number of [all-cause admission]. Both numbers can be zeros.", + "leftSide": { + "description": "all-cause deaths", + "displayDescription": "all-cause deaths", + "expression": "#{SXGjaEobp6V}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - all-cause deaths <= all-cause admission", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "all-cause admission", + "displayDescription": "all-cause admission", + "expression": "#{BjDrgVrkBI3}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "rNYeFmJm04s" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_ANC_VISITS_VS_IPTCOURSES", + "dimensionItem": "GwKVzvwzVeD", + "displayInstruction": "[Number of ANC visits] should be greater than or equal to the number of [Number of SP course received for IPTp]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "GwKVzvwzVeD", + "importance": "MEDIUM", + "instruction": "[Number of ANC visits] should be greater than or equal to the number of [Number of SP course received for IPTp]. Both numbers can be zeros.", + "leftSide": { + "description": "Number of ANC visits", + "displayDescription": "Number of ANC visits", + "expression": "#{n0tgQ4PjnnT}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - ANC visits >= Number of SP course received for IPTp", + "notificationTemplates": [], + "operator": "greater_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "Number of SP course received for IPTp", + "displayDescription": "Number of SP course received for IPTp", + "expression": "#{vCwegNjEuxN}+#{t4FqHKzAyEn}+#{SPhiBDEbG0o}+#{GEgULJaUkyQ}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "rNYeFmJm04s" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_AS_DISCARDED_VS_IN", + "dimensionItem": "Ltdw2fx74Ya", + "displayInstruction": "Artesunate discarded should be less than or equal to Artesunate opening balance + Artesunate received", + "externalAccess": false, + "favorite": false, + "id": "Ltdw2fx74Ya", + "importance": "MEDIUM", + "instruction": "Artesunate discarded should be less than or equal to Artesunate opening balance + Artesunate received", + "leftSide": { + "description": "Artesunate discarded", + "displayDescription": "Artesunate discarded", + "expression": "#{twoxyChxlC3}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Artesunate discarded<=Artesunate opening balance + Artesunate received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "Artesunate opening balance + Artesunate received", + "displayDescription": "Artesunate opening balance + Artesunate received", + "expression": "#{F7BWpIVSEpM}+#{BdRI37FNDJs}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_AS_DISTRIBUTED_VS_IN", + "dimensionItem": "DW1atgBthwz", + "displayInstruction": "Artesunate distributed should be less than or equal to Artesunate opening balance + Artesunate received", + "externalAccess": false, + "favorite": false, + "id": "DW1atgBthwz", + "importance": "MEDIUM", + "instruction": "Artesunate distributed should be less than or equal to Artesunate opening balance + Artesunate received", + "leftSide": { + "description": "Artesunate distributed", + "displayDescription": "Artesunate distributed", + "expression": "#{kk2ClooVm41}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Artesunate distributed<=Artesunate opening balance + Artesunate received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "Artesunate opening balance + Artesunate received", + "displayDescription": "Artesunate opening balance + Artesunate received", + "expression": "#{F7BWpIVSEpM}+#{BdRI37FNDJs}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_AS_REDISTRIBUTED_VS_IN", + "dimensionItem": "u5v67q1yGrv", + "displayInstruction": "Artesunate redistributed should be less than or equal to Artesunate opening balance + Artesunate received", + "externalAccess": false, + "favorite": false, + "id": "u5v67q1yGrv", + "importance": "MEDIUM", + "instruction": "Artesunate redistributed should be less than or equal to Artesunate opening balance + Artesunate received", + "leftSide": { + "description": "Artesunate redistributed", + "displayDescription": "Artesunate redistributed", + "expression": "#{F7L5jVrWnHi}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Artesunate redistributed<=Artesunate opening balance + Artesunate received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "Artesunate opening balance + Artesunate received", + "displayDescription": "Artesunate opening balance + Artesunate received", + "expression": "#{F7BWpIVSEpM}+#{BdRI37FNDJs}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_AS_ONHAND_VS_IN", + "dimensionItem": "bi7JlAsuEuW", + "displayInstruction": "Artesunate stock on hand should be less than or equal to Artesunate opening balance + Artesunate received", + "externalAccess": false, + "favorite": false, + "id": "bi7JlAsuEuW", + "importance": "MEDIUM", + "instruction": "Artesunate stock on hand should be less than or equal to Artesunate opening balance + Artesunate received", + "leftSide": { + "description": "Artesunate stock on hand", + "displayDescription": "Artesunate stock on hand", + "expression": "#{NFMzN9Up5zQ}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Artesunate stock on hand<=Artesunate opening balance + Artesunate received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "Artesunate opening balance + Artesunate received", + "displayDescription": "Artesunate opening balance + Artesunate received", + "expression": "#{F7BWpIVSEpM}+#{BdRI37FNDJs}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_AS_STOCKOUT_LESS_30D", + "dimensionItem": "htNzNo1sX2D", + "displayInstruction": "Artesunate stock out days should be less than or equal to 30 days", + "externalAccess": false, + "favorite": false, + "id": "htNzNo1sX2D", + "importance": "MEDIUM", + "instruction": "Artesunate stock out days should be less than or equal to 30 days", + "leftSide": { + "description": " Stock out days", + "displayDescription": "Stock out days", + "expression": "#{N6uAJQjkRQl}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Artesunate stock out days <= 30 days", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "30 days", + "displayDescription": "30 days", + "expression": "30", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_TREATED_VS_SUSPECTED", + "dimensionItem": "qiImoieVL9z", + "displayInstruction": "[Cases treated] should be less than or equal to the number of [Suspected malaria cases]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "qiImoieVL9z", + "importance": "MEDIUM", + "instruction": "[Cases treated] should be less than or equal to the number of [Suspected malaria cases]. Both numbers can be zeros.", + "leftSide": { + "description": "Cases treated", + "displayDescription": "Cases treated", + "expression": "#{YcZAfNmFuje}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Cases treated <= Suspected malaria cases", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "Suspected malaria cases", + "displayDescription": "Suspected malaria cases", + "expression": "#{cE8SDxizo5s}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "rNYeFmJm04s" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_FOCI_RESPONSE_VS_ALL_RESPONSE", + "dimensionItem": "p5591gkdyU4", + "displayInstruction": "Foci with response = Sum of Foci responded with MDA, Foci responded with IRS, Foci responded with LLIN/hummock and Foci responded with larviciding", + "externalAccess": false, + "favorite": false, + "id": "p5591gkdyU4", + "importance": "MEDIUM", + "instruction": "Foci with response = Sum of Foci responded with MDA, Foci responded with IRS, Foci responded with LLIN/hummock and Foci responded with larviciding", + "leftSide": { + "description": "Foci with response", + "displayDescription": "Foci with response", + "expression": "#{oNqsWW6eD3L}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Foci with response = Sum of Foci responses (MDA, IRS, LLIN, larviciding)", + "notificationTemplates": [], + "operator": "equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "Foci responded with MDA", + "displayDescription": "Foci responded with MDA", + "expression": "#{FyouhDzv0bP}+ #{mDCNvNfweci}+ #{Gq9q1I1t60k} + #{gSlR6YgWw45}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "y4UWjeyKIwS" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_LLIN_DISCARDED_VS_IN", + "dimensionItem": "vYw6CMkgkc0", + "displayInstruction": "LLIN discarded should be less than or equal to LLIN opening balance + LLIN received", + "externalAccess": false, + "favorite": false, + "id": "vYw6CMkgkc0", + "importance": "MEDIUM", + "instruction": "LLIN discarded should be less than or equal to LLIN opening balance + LLIN received", + "leftSide": { + "description": "LLIN discarded", + "displayDescription": "LLIN discarded", + "expression": "#{YnKOG0WVtlq}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - LLIN discarded<=LLIN opening balance + LLIN received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "LLIN opening balance + LLIN received", + "displayDescription": "LLIN opening balance + LLIN received", + "expression": "#{eCKSKNgHJqe}+#{RRA1O37nLn0}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_LLIN_DISTRIBUTED_VS_IN", + "dimensionItem": "KGlM5TnVQnQ", + "displayInstruction": "LLIN distributed should be less than or equal to LLIN opening balance + LLIN received", + "externalAccess": false, + "favorite": false, + "id": "KGlM5TnVQnQ", + "importance": "MEDIUM", + "instruction": "LLIN distributed should be less than or equal to LLIN opening balance + LLIN received", + "leftSide": { + "description": "LLIN distributed", + "displayDescription": "LLIN distributed", + "expression": "#{OpiuZiAzEwQ}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - LLIN distributed<=LLIN opening balance + LLIN received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "LLIN opening balance + LLIN received", + "displayDescription": "LLIN opening balance + LLIN received", + "expression": "#{eCKSKNgHJqe}+#{RRA1O37nLn0}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_LLIN_REDISTRIBUTED_VS_IN", + "dimensionItem": "dNrjfYYWLL6", + "displayInstruction": "LLIN redistributed should be less than or equal to LLIN opening balance + LLIN received", + "externalAccess": false, + "favorite": false, + "id": "dNrjfYYWLL6", + "importance": "MEDIUM", + "instruction": "LLIN redistributed should be less than or equal to LLIN opening balance + LLIN received", + "leftSide": { + "description": "LLIN redistributed", + "displayDescription": "LLIN redistributed", + "expression": "#{zM1vd2VeCss}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - LLIN redistributed<=LLIN opening balance + LLIN received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "LLIN opening balance + LLIN received", + "displayDescription": "LLIN opening balance + LLIN received", + "expression": "#{eCKSKNgHJqe}+#{RRA1O37nLn0}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_LLIN_ONHAND_VS_IN", + "dimensionItem": "qACo3nL5P0i", + "displayInstruction": "LLIN stock on hand should be less than or equal to LLIN opening balance + LLIN received", + "externalAccess": false, + "favorite": false, + "id": "qACo3nL5P0i", + "importance": "MEDIUM", + "instruction": "LLIN stock on hand should be less than or equal to LLIN opening balance + LLIN received", + "leftSide": { + "description": "LLIN stock on hand", + "displayDescription": "LLIN stock on hand", + "expression": "#{GIhoITcc0jp}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - LLIN stock on hand<=LLIN opening balance + LLIN received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "LLIN opening balance + LLIN received", + "displayDescription": "LLIN opening balance + LLIN received", + "expression": "#{eCKSKNgHJqe}+#{RRA1O37nLn0}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_LLIN_STOCKOUT_LESS_30D", + "dimensionItem": "Vpg5PP6ymLP", + "displayInstruction": "LLIN stock out days should be less than or equal to 30 days", + "externalAccess": false, + "favorite": false, + "id": "Vpg5PP6ymLP", + "importance": "MEDIUM", + "instruction": "LLIN stock out days should be less than or equal to 30 days", + "leftSide": { + "description": " Stock out days", + "displayDescription": "Stock out days", + "expression": "#{KQvuAWwOPnE}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - LLIN stock out days <= 30 days", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "30 days", + "displayDescription": "30 days", + "expression": "30", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_LOCAL_VS_INVESIGATED", + "dimensionItem": "FpKUc2oBEsL", + "displayInstruction": "[Malaria cases classified as local] should be less than or equal to the number of [Malaria cases investigated]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "FpKUc2oBEsL", + "importance": "MEDIUM", + "instruction": "[Malaria cases classified as local] should be less than or equal to the number of [Malaria cases investigated]. Both numbers can be zeros.", + "leftSide": { + "description": "Malaria cases classified as local", + "displayDescription": "Malaria cases classified as local", + "expression": "#{HMUc4RajgaC}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Malaria cases classified as local <= Malaria cases investigated", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "Malaria cases investigated", + "displayDescription": "Malaria cases investigated", + "expression": "#{Ppc51eaCPHb}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "y4UWjeyKIwS" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_CLASSIFIED_VS_INVESTIGATED", + "dimensionItem": "ohyQDfDlUGD", + "displayInstruction": "[Malaria cases classified] should be less than or equal to the number of [Malaria cases investigated]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "ohyQDfDlUGD", + "importance": "MEDIUM", + "instruction": "[Malaria cases classified] should be less than or equal to the number of [Malaria cases investigated]. Both numbers can be zeros.", + "leftSide": { + "description": "Malaria cases classified", + "displayDescription": "Malaria cases classified", + "expression": "#{a4Cw4iPcMrY}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Malaria cases classified <= Malaria cases investigated", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "Malaria cases investigated", + "displayDescription": "Malaria cases investigated", + "expression": "#{Ppc51eaCPHb}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "y4UWjeyKIwS" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_INVESTIGATED_VS_CLASSIFIED", + "dimensionItem": "e5u13ywRYSN", + "displayInstruction": "[Malaria cases investigated] should be less than or equal to the number of [Malaria cases classified]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "e5u13ywRYSN", + "importance": "MEDIUM", + "instruction": "[Malaria cases investigated] should be less than or equal to the number of [Malaria cases classified]. Both numbers can be zeros.", + "leftSide": { + "description": "Malaria cases investigated", + "displayDescription": "Malaria cases investigated", + "expression": "#{Ppc51eaCPHb}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Malaria cases investigated <= Malaria cases classified", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "Malaria cases classified", + "displayDescription": "Malaria cases classified", + "expression": "#{a4Cw4iPcMrY}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "y4UWjeyKIwS" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_DEATHS_VS_ALLCAUSE_DEATHS", + "dimensionItem": "dMIBcBjZ7A9", + "displayInstruction": "[Malaria deaths] should be less than or equal to the number of [all-cause deaths]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "dMIBcBjZ7A9", + "importance": "MEDIUM", + "instruction": "[Malaria deaths] should be less than or equal to the number of [all-cause deaths]. Both numbers can be zeros.", + "leftSide": { + "description": "Malaria deaths", + "displayDescription": "Malaria deaths", + "expression": "#{GxlrIgMyEf4}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Malaria deaths <= all-cause deaths", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "all-cause deaths", + "displayDescription": "all-cause deaths", + "expression": "#{SXGjaEobp6V}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "rNYeFmJm04s" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_DEATHS_VS_IPD", + "dimensionItem": "w4eiMkqdRF7", + "displayInstruction": "[Malaria deaths] should be less than or equal to the number of [Malaria inpatients]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "w4eiMkqdRF7", + "importance": "MEDIUM", + "instruction": "[Malaria deaths] should be less than or equal to the number of [Malaria inpatients]. Both numbers can be zeros.", + "leftSide": { + "description": "Malaria deaths", + "displayDescription": "Malaria deaths", + "expression": "#{GxlrIgMyEf4}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Malaria deaths <= Malaria inpatients", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "Malaria inpatients", + "displayDescription": "Malaria inpatients", + "expression": "#{v0WZQQ6gKAX}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "rNYeFmJm04s" + }, + { + "id": "y4UWjeyKIwS" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_FOCI_CLASSIFIED_VS_INVESTIGATED", + "dimensionItem": "D1WPu8y1Aag", + "displayInstruction": "[Malaria foci classified] should be less than or equal to the number of [Malaria foci investigated]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "D1WPu8y1Aag", + "importance": "MEDIUM", + "instruction": "[Malaria foci classified] should be less than or equal to the number of [Malaria foci investigated]. Both numbers can be zeros.", + "leftSide": { + "description": "Malaria foci classified", + "displayDescription": "Malaria foci classified", + "expression": "#{EHbjdbiKtd8}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Malaria foci classified <= Malaria foci investigated", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "Malaria foci investigated", + "displayDescription": "Malaria foci investigated", + "expression": "#{s9FmEvF0r4n}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "y4UWjeyKIwS" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_FOCI_CLASSIFIED_SUM_TOT", + "dimensionItem": "bUi38Jyql60", + "displayInstruction": "Malaria foci classified should be equal to the sum of (Active, Residual (non-active) and cleared-up)", + "externalAccess": false, + "favorite": false, + "id": "bUi38Jyql60", + "importance": "MEDIUM", + "instruction": "Malaria foci classified should be equal to the sum of (Active, Residual (non-active) and cleared-up)", + "leftSide": { + "description": "Malaria foci classified", + "displayDescription": "Malaria foci classified", + "expression": "#{EHbjdbiKtd8}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Malaria foci classified = Sum of (Active, Residual (non-active) and cleared-up)", + "notificationTemplates": [], + "operator": "equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "Malaria foci classified as active", + "displayDescription": "Malaria foci classified as active", + "expression": "#{lz1FE0wvo1m}+ #{Qzfvt1YRb1Y}+ #{LH9FKWl1FfP}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "y4UWjeyKIwS" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_FOCI_INVESTIGATED_VS_NEW_IDENTIFIED", + "dimensionItem": "CUh5R5llms0", + "displayInstruction": "[Malaria foci investigated] should be less than or equal to the number of [Malaria foci identified (new)]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "CUh5R5llms0", + "importance": "MEDIUM", + "instruction": "[Malaria foci investigated] should be less than or equal to the number of [Malaria foci identified (new)]. Both numbers can be zeros.", + "leftSide": { + "description": "Malaria foci investigated", + "displayDescription": "Malaria foci investigated", + "expression": "#{s9FmEvF0r4n}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Malaria foci investigated <= Malaria foci identified (new)", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "Malaria foci identified (new)", + "displayDescription": "Malaria foci identified (new)", + "expression": "#{lZi1cjtvVB6}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "y4UWjeyKIwS" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_IPD_VS_OPD", + "dimensionItem": "pjDDfSTgiAG", + "displayInstruction": "[Malaria inpatients] should be less than or equal to the number of [all-cause outpatient]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "pjDDfSTgiAG", + "importance": "MEDIUM", + "instruction": "[Malaria inpatients] should be less than or equal to the number of [all-cause outpatient]. Both numbers can be zeros.", + "leftSide": { + "description": "Malaria inpatients", + "displayDescription": "Malaria inpatients", + "expression": "#{v0WZQQ6gKAX}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Malaria inpatients <= all-cause outpatient", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "all-cause outpatient", + "displayDescription": "all-cause outpatient", + "expression": "#{VL73cqNHxBJ}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "rNYeFmJm04s" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_OPD_CASES_VS_IPD", + "dimensionItem": "m4U0WSUJxu0", + "displayInstruction": "[Outpatient malaria cases (confirmed + presumed)] should be less than or equal to the number of [all-cause outpatient]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "m4U0WSUJxu0", + "importance": "MEDIUM", + "instruction": "[Outpatient malaria cases (confirmed + presumed)] should be less than or equal to the number of [all-cause outpatient]. Both numbers can be zeros.", + "leftSide": { + "description": "Outpatient malaria cases (confirmed + presumed)", + "displayDescription": "Outpatient malaria cases (confirmed + presumed)", + "expression": "#{kRasaq1REFp}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Outpatient malaria cases (confirmed + presumed) <= all-cause outpatient", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "all-cause outpatient", + "displayDescription": "all-cause outpatient", + "expression": "#{VL73cqNHxBJ}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "rNYeFmJm04s" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_OPD_CASES_VS_POSITIVE_MICRO", + "dimensionItem": "Kfu21V8eGYz", + "displayInstruction": "[Outpatient malaria cases (confirmed + presumed)] should be greater than or equal to the number of [Positive (Micr)] + [Positive (RDT)]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "Kfu21V8eGYz", + "importance": "MEDIUM", + "instruction": "[Outpatient malaria cases (confirmed + presumed)] should be greater than or equal to the number of [Positive (Micr)] + [Positive (RDT)]. Both numbers can be zeros.", + "leftSide": { + "description": "Outpatient malaria cases (confirmed + presumed)", + "displayDescription": "Outpatient malaria cases (confirmed + presumed)", + "expression": "#{kRasaq1REFp}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Outpatient malaria cases (confirmed + presumed) >= Positive (Micr)", + "notificationTemplates": [], + "operator": "greater_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "Positive (Micr)", + "displayDescription": "Positive (Micr)", + "expression": "#{enVf9I39FRZ}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "rNYeFmJm04s" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_OPD_CASES_VS_SUSPECTED", + "dimensionItem": "EqRsTyz3SYF", + "displayInstruction": "[Outpatient malaria cases (confirmed + presumed)] should be less than or equal to the number of [Suspected malaria cases]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "EqRsTyz3SYF", + "importance": "MEDIUM", + "instruction": "[Outpatient malaria cases (confirmed + presumed)] should be less than or equal to the number of [Suspected malaria cases]. Both numbers can be zeros.", + "leftSide": { + "description": "Outpatient malaria cases (confirmed + presumed)", + "displayDescription": "Outpatient malaria cases (confirmed + presumed)", + "expression": "#{kRasaq1REFp}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Outpatient malaria cases (confirmed + presumed) <= Suspected malaria cases", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "Suspected malaria cases", + "displayDescription": "Suspected malaria cases", + "expression": "#{cE8SDxizo5s}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "rNYeFmJm04s" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_POSITIVE_MICRO_VS_SUM_SPP", + "description": "[Positive (Micr)] should be equal the sum of [P. falciparum (Micr)] + [P. vivax (Micr)] + [Mixed (Micr)] +[Other (Micr)]", + "dimensionItem": "Kejj3gJ2GD0", + "displayInstruction": "[Positive (Micr)] should be equal the sum of [P. falciparum (Micr)] + [P. vivax (Micr)] + [Mixed (Micr)] +[Other (Micr)]", + "externalAccess": false, + "favorite": false, + "id": "Kejj3gJ2GD0", + "importance": "MEDIUM", + "instruction": "[Positive (Micr)] should be equal the sum of [P. falciparum (Micr)] + [P. vivax (Micr)] + [Mixed (Micr)] +[Other (Micr)]", + "leftSide": { + "description": "Positive (Micr)", + "displayDescription": "Positive (Micr)", + "expression": "#{enVf9I39FRZ.b449dBrOSFK} + #{enVf9I39FRZ.t5FrQ0GTvGf} + #{enVf9I39FRZ.j21YQgQ9GzP} + #{enVf9I39FRZ.bWFxj7MF1qR} + #{enVf9I39FRZ.AroSt3y4ir0} + #{enVf9I39FRZ.kQBGXKMwoqR}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Positive (Micr) = Sum of species (Pf, Pv, Mixed, Other species)", + "notificationTemplates": [], + "operator": "equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "P. falciparum (Micr)", + "displayDescription": "P. falciparum (Micr)", + "expression": "#{jvjJ901K56K}+ #{yHS1RqIFeD7}+ #{lgDGha7OO9o}+ #{jtyuEfbNbkb}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "rNYeFmJm04s" + }, + { + "id": "y4UWjeyKIwS" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_POS_MICRO_VS_TESTED_MICRO", + "dimensionItem": "wuTietFyjIc", + "displayInstruction": "[Positive (Micr)] should be less than or equal to the number of [Tested (Micr)]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "wuTietFyjIc", + "importance": "MEDIUM", + "instruction": "[Positive (Micr)] should be less than or equal to the number of [Tested (Micr)]. Both numbers can be zeros.", + "leftSide": { + "description": "Positive (Micr)", + "displayDescription": "Positive (Micr)", + "expression": "#{enVf9I39FRZ}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Positive (Micr) <= Tested (Micr)", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "Tested (Micr)", + "displayDescription": "Tested (Micr)", + "expression": "#{DPNsg3wjxGm}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "rNYeFmJm04s" + }, + { + "id": "y4UWjeyKIwS" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_POS_RTD_VS_SPP", + "dimensionItem": "Rv0j1oszqz0", + "displayInstruction": "[Positive (RDT)] should be equal the number of [P. falciparum (RDT)]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "Rv0j1oszqz0", + "importance": "MEDIUM", + "instruction": "[Positive (RDT)] should be equal the number of [P. falciparum (RDT)]. Both numbers can be zeros.", + "leftSide": { + "description": "Positive (RDT)", + "displayDescription": "Positive (RDT)", + "expression": "#{vTRrNdOOT9g}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Positive (RDT) = Sum of species (RDT)", + "notificationTemplates": [], + "operator": "equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "P. falciparum (RDT)", + "displayDescription": "P. falciparum (RDT)", + "expression": "#{IUrl6HtHVQI}+ #{yVGY0DGVPor}+ #{llpG8qA0SvG}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "rNYeFmJm04s" + }, + { + "id": "y4UWjeyKIwS" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_POS_RTD_TESTED_RTD", + "dimensionItem": "VPgf5jXAgnV", + "displayInstruction": "[Positive (RDT)] should be less than or equal to the number of [Tested (RDT)]. Both numbers can be zeros.", + "externalAccess": false, + "favorite": false, + "id": "VPgf5jXAgnV", + "importance": "MEDIUM", + "instruction": "[Positive (RDT)] should be less than or equal to the number of [Tested (RDT)]. Both numbers can be zeros.", + "leftSide": { + "description": "Positive (RDT)", + "displayDescription": "Positive (RDT)", + "expression": "#{vTRrNdOOT9g}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Positive (RDT) <= Tested (RDT)", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "r-------", + "rightSide": { + "description": "Tested (RDT)", + "displayDescription": "Tested (RDT)", + "expression": "#{pmRn0GsUfr6}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "validationRuleGroups": [ + { + "id": "rNYeFmJm04s" + }, + { + "id": "y4UWjeyKIwS" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_PMQ_DISCARDED_VS_IN", + "dimensionItem": "GnEuqzSpfRB", + "displayInstruction": "Primaquine discarded should be less than or equal to Primaquine opening balance + Primaquine received", + "externalAccess": false, + "favorite": false, + "id": "GnEuqzSpfRB", + "importance": "MEDIUM", + "instruction": "Primaquine discarded should be less than or equal to Primaquine opening balance + Primaquine received", + "leftSide": { + "description": "Primaquine discarded", + "displayDescription": "Primaquine discarded", + "expression": "#{o3fW3Hgo9GO}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Primaquine discarded<=Primaquine opening balance + Primaquine received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "Primaquine opening balance + Primaquine received", + "displayDescription": "Primaquine opening balance + Primaquine received", + "expression": "#{uFwkuqBgI29}+#{CPBuuIiDnn8}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_PMQ_DISTRIBUTED_VS_IN", + "dimensionItem": "xsxH5YsIxJc", + "displayInstruction": "Primaquine distributed should be less than or equal to Primaquine opening balance + Primaquine received", + "externalAccess": false, + "favorite": false, + "id": "xsxH5YsIxJc", + "importance": "MEDIUM", + "instruction": "Primaquine distributed should be less than or equal to Primaquine opening balance + Primaquine received", + "leftSide": { + "description": "Primaquine distributed", + "displayDescription": "Primaquine distributed", + "expression": "#{oIi0Ybn06e2}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Primaquine distributed<=Primaquine opening balance + Primaquine received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "Primaquine opening balance + Primaquine received", + "displayDescription": "Primaquine opening balance + Primaquine received", + "expression": "#{uFwkuqBgI29}+#{CPBuuIiDnn8}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_PMQ_REDISTRIBUTED_VS_IN", + "dimensionItem": "IVZFu3qWtAp", + "displayInstruction": "Primaquine redistributed should be less than or equal to Primaquine opening balance + Primaquine received", + "externalAccess": false, + "favorite": false, + "id": "IVZFu3qWtAp", + "importance": "MEDIUM", + "instruction": "Primaquine redistributed should be less than or equal to Primaquine opening balance + Primaquine received", + "leftSide": { + "description": "Primaquine redistributed", + "displayDescription": "Primaquine redistributed", + "expression": "#{RJkNUMqVTRC}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Primaquine redistributed<=Primaquine opening balance + Primaquine received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "Primaquine opening balance + Primaquine received", + "displayDescription": "Primaquine opening balance + Primaquine received", + "expression": "#{uFwkuqBgI29}+#{CPBuuIiDnn8}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_PMQ_ONHAND_VS_IN", + "dimensionItem": "kQFA2i60IGU", + "displayInstruction": "Primaquine stock on hand should be less than or equal to Primaquine opening balance + Primaquine received", + "externalAccess": false, + "favorite": false, + "id": "kQFA2i60IGU", + "importance": "MEDIUM", + "instruction": "Primaquine stock on hand should be less than or equal to Primaquine opening balance + Primaquine received", + "leftSide": { + "description": "Primaquine stock on hand", + "displayDescription": "Primaquine stock on hand", + "expression": "#{jynElcE3gF0}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Primaquine stock on hand<=Primaquine opening balance + Primaquine received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "Primaquine opening balance + Primaquine received", + "displayDescription": "Primaquine opening balance + Primaquine received", + "expression": "#{uFwkuqBgI29}+#{CPBuuIiDnn8}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_PMQ_STOCKOUT_LESS_30D", + "dimensionItem": "vkfpjyEln9S", + "displayInstruction": "Primaquine stock out days should be less than or equal to 30 days", + "externalAccess": false, + "favorite": false, + "id": "vkfpjyEln9S", + "importance": "MEDIUM", + "instruction": "Primaquine stock out days should be less than or equal to 30 days", + "leftSide": { + "description": " Stock out days", + "displayDescription": "Stock out days", + "expression": "#{C3vtx1aie2U}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Primaquine stock out days <= 30 days", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "30 days", + "displayDescription": "30 days", + "expression": "30", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_RDT_DISCARDED_VS_IN", + "dimensionItem": "j5v2UNhYuk6", + "displayInstruction": "RDTs discarded should be less than or equal to RDT opening balance + RDTs received", + "externalAccess": false, + "favorite": false, + "id": "j5v2UNhYuk6", + "importance": "MEDIUM", + "instruction": "RDTs discarded should be less than or equal to RDT opening balance + RDTs received", + "leftSide": { + "description": "RDTs discarded", + "displayDescription": "RDTs discarded", + "expression": "#{To2fZcY5oUS}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - RDTs discarded<=RDT opening balance + RDTs received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "RDT opening balance + RDTs received", + "displayDescription": "RDT opening balance + RDTs received", + "expression": "#{iaQuylCoH3u}+#{HOEMlLX5SMC}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_RDT_DISTRIBUTED_VS_IN", + "dimensionItem": "Q1x1AuQfQF7", + "displayInstruction": "RDTs drugs distributed should be less than or equal to RDT opening balance + RDTs received", + "externalAccess": false, + "favorite": false, + "id": "Q1x1AuQfQF7", + "importance": "MEDIUM", + "instruction": "RDTs drugs distributed should be less than or equal to RDT opening balance + RDTs received", + "leftSide": { + "description": "RDTs drugs distributed", + "displayDescription": "RDTs drugs distributed", + "expression": "#{CsJm4IsvXqg}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - RDTs drugs distributed<=RDT opening balance + RDTs received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "RDT opening balance + RDTs received", + "displayDescription": "RDT opening balance + RDTs received", + "expression": "#{iaQuylCoH3u}+#{HOEMlLX5SMC}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_RDT_REDISTRIBUTED_VS_IN", + "dimensionItem": "O8OySVaXeoP", + "displayInstruction": "RDTs redistributed should be less than or equal to RDT opening balance + RDTs received", + "externalAccess": false, + "favorite": false, + "id": "O8OySVaXeoP", + "importance": "MEDIUM", + "instruction": "RDTs redistributed should be less than or equal to RDT opening balance + RDTs received", + "leftSide": { + "description": "RDTs redistributed", + "displayDescription": "RDTs redistributed", + "expression": "#{ZRUpLZ2HVEH}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - RDTs redistributed<=RDT opening balance + RDTs received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "RDT opening balance + RDTs received", + "displayDescription": "RDT opening balance + RDTs received", + "expression": "#{iaQuylCoH3u}+#{HOEMlLX5SMC}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_RDT_ONHAND_VS_IN", + "dimensionItem": "qBLvzadOdnq", + "displayInstruction": "RDT stock on hand should be less than or equal to RDT opening balance + RDTs received", + "externalAccess": false, + "favorite": false, + "id": "qBLvzadOdnq", + "importance": "MEDIUM", + "instruction": "RDT stock on hand should be less than or equal to RDT opening balance + RDTs received", + "leftSide": { + "description": "RDT stock on hand", + "displayDescription": "RDT stock on hand", + "expression": "#{ImjPjbE2rFm}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - RDT stock on hand<=RDT opening balance + RDTs received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "RDT opening balance + RDTs received", + "displayDescription": "RDT opening balance + RDTs received", + "expression": "#{iaQuylCoH3u}+#{HOEMlLX5SMC}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_RDT_STOCKOUT_LESS_30D", + "dimensionItem": "kepvZ72XvbN", + "displayInstruction": "RDT stock out days should be less than or equal to 30 days", + "externalAccess": false, + "favorite": false, + "id": "kepvZ72XvbN", + "importance": "MEDIUM", + "instruction": "RDT stock out days should be less than or equal to 30 days", + "leftSide": { + "description": "Stock out days", + "displayDescription": "Stock out days", + "expression": "#{DEasiq2eO60}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - RDT stock out days <=30 days", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "30 days", + "displayDescription": "30 days", + "expression": "30", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_SP_DISCARDED_VS_IN", + "dimensionItem": "FX84CXAaYBN", + "displayInstruction": "Sulfadoxine-pyrimethamine discarded should be less than or equal to Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "externalAccess": false, + "favorite": false, + "id": "FX84CXAaYBN", + "importance": "MEDIUM", + "instruction": "Sulfadoxine-pyrimethamine discarded should be less than or equal to Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "leftSide": { + "description": "Sulfadoxine-pyrimethamine discarded", + "displayDescription": "Sulfadoxine-pyrimethamine discarded", + "expression": "#{SldWQ0uCFA2}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine discarded<=Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "displayDescription": "Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "expression": "#{GDBHGyXJI2T}+#{f7z0IhHVWBT}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_SP_DISTRIBUTED_VS_IN", + "dimensionItem": "Qpm2opm7PDs", + "displayInstruction": "Sulfadoxine-pyrimethamine distributed should be less than or equal to Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "externalAccess": false, + "favorite": false, + "id": "Qpm2opm7PDs", + "importance": "MEDIUM", + "instruction": "Sulfadoxine-pyrimethamine distributed should be less than or equal to Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "leftSide": { + "description": "Sulfadoxine-pyrimethamine distributed", + "displayDescription": "Sulfadoxine-pyrimethamine distributed", + "expression": "#{U4kmpM14xhJ}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine distributed<=Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "displayDescription": "Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "expression": "#{GDBHGyXJI2T}+#{f7z0IhHVWBT}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_SP_REDISTRIBUTED_VS_IN", + "dimensionItem": "ZPrnXtEIxUx", + "displayInstruction": "Sulfadoxine-pyrimethamine redistributed should be less than or equal to Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "externalAccess": false, + "favorite": false, + "id": "ZPrnXtEIxUx", + "importance": "MEDIUM", + "instruction": "Sulfadoxine-pyrimethamine redistributed should be less than or equal to Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "leftSide": { + "description": "Sulfadoxine-pyrimethamine redistributed", + "displayDescription": "Sulfadoxine-pyrimethamine redistributed", + "expression": "#{Qv9b5QAOO0F}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine redistributed<=Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "displayDescription": "Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "expression": "#{GDBHGyXJI2T}+#{f7z0IhHVWBT}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_SP_ONHAND_VS_IN", + "dimensionItem": "zJPN4OUVHbI", + "displayInstruction": "Sulfadoxine-pyrimethamine stock on hand should be less than or equal to Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "externalAccess": false, + "favorite": false, + "id": "zJPN4OUVHbI", + "importance": "MEDIUM", + "instruction": "Sulfadoxine-pyrimethamine stock on hand should be less than or equal to Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "leftSide": { + "description": "Sulfadoxine-pyrimethamine stock on hand", + "displayDescription": "Sulfadoxine-pyrimethamine stock on hand", + "expression": "#{VTunnWZqQCj}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine stock on hand<=Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "displayDescription": "Sulfadoxine-pyrimethamine opening balance + Sulfadoxine-pyrimethamine received", + "expression": "#{GDBHGyXJI2T}+#{f7z0IhHVWBT}", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + }, + { + "attributeValues": [], + "code": "MAL_SP_STOCKOUT_LESS_30D", + "dimensionItem": "vGgLI7fa8qY", + "displayInstruction": "Sulfadoxine-pyrimethamine stock out days should be less than or equal to 30 days", + "externalAccess": false, + "favorite": false, + "id": "vGgLI7fa8qY", + "importance": "MEDIUM", + "instruction": "Sulfadoxine-pyrimethamine stock out days should be less than or equal to 30 days", + "leftSide": { + "description": " Stock out days", + "displayDescription": "Stock out days", + "expression": "#{B3ItBcjVieC}", + "missingValueStrategy": "SKIP_IF_ALL_VALUES_MISSING", + "slidingWindow": false, + "translations": [] + }, + "legendSets": [], + "name": "MAL - Sulfadoxine-pyrimethamine stock out days <=30 days", + "notificationTemplates": [], + "operator": "less_than_or_equal_to", + "organisationUnitLevels": [], + "periodOffset": 0, + "periodType": "Monthly", + "publicAccess": "rw------", + "rightSide": { + "description": "30 days", + "displayDescription": "30 days", + "expression": "30", + "missingValueStrategy": "NEVER_SKIP", + "slidingWindow": false, + "translations": [] + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "skipFormValidation": false, + "translations": [], + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "validationRuleGroups": [ + { + "id": "XJsWwoDMpAj" + } + ] + } + ], + "visualizations": [ + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "foz7nuOFMNR" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "fqkymAhfnbg" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "IeUbxBdwDTf" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "ClIrLxTeQgG" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "xi2S1d7LJBc" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "o3FTGfWDUpz" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "q4lZvYKBohV", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - RDT stock status", + "noSpaceBetweenColumns": false, + "numberType": "VALUE", + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "vBNyVNLGZ5D" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "PNoYjlfeAfD", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "set": { + "attributeValues": [], + "code": "STOCK DISCREPANCY", + "created": "2021-04-29T12:35:33.784", + "createdBy": { + "code": null, + "displayName": "Vittoria Crispino", + "id": "FIsdZWDPbr2", + "name": "Vittoria Crispino", + "username": "Vitto" + }, + "displayName": "Stock discrepancy", + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "pxeFezcPnQl", + "lastUpdated": "2021-11-19T16:12:14.033", + "lastUpdatedBy": { + "code": null, + "displayName": "Admin Translation", + "id": "NGcM4110lU7", + "name": "Admin Translation", + "username": "translation_admin" + }, + "legends": [ + { + "attributeValues": [], + "color": "#FF2000", + "created": "2021-05-11T08:47:50.678", + "displayName": "Positive", + "endValue": 10000000.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "IdLVcKSBYPP", + "lastUpdated": "2021-05-11T08:47:50.678", + "name": "Positive", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 9.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#87220D", + "created": "2021-05-11T08:47:50.679", + "displayName": "Negative", + "endValue": 1.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "EcNjRnWM0Yw", + "lastUpdated": "2021-05-11T08:47:50.679", + "name": "Negative", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": -10000000.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#68FE4C", + "created": "2021-05-11T08:47:50.679", + "displayName": "Correct stock", + "endValue": 9.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "bW5lmAtDMhX", + "lastUpdated": "2021-05-11T08:47:50.679", + "name": "Correct stock", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 1.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "name": "Stock discrepancy", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "FIsdZWDPbr2", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Ecart de stock " + } + ], + "user": { + "code": null, + "displayName": "Vittoria Crispino", + "id": "FIsdZWDPbr2", + "name": "Vittoria Crispino", + "username": "Vitto" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - RDT stock discrepancy", + "noSpaceBetweenColumns": false, + "numberType": "VALUE", + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "oXCc5MR3LLi" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "wBjmnGxpBhy", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Proportion of facilities with stockout days for RDT", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "--------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": {}, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "STACKED_AREA", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "l0TE4LdzE8j" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "IeUbxBdwDTf" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Cases tested with RDT vs. RDTs issued from stock", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "u5O5Io0rtav", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - RDT used for diagnosis vs RDT distributed from stock", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "--------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": {}, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "title": "Cases tested with RDT vs. RDTs issued from stock", + "topLimit": 0, + "translations": [], + "type": "COLUMN", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "BI6l7Poo65o" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "xIZVZJ7yiAP" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "I5XKoyarjKG" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "HESD7pkLakc" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "wswCPFCyUG8" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "zKXBN1jGXIu" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "SjXESP7zKb2" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "UIgM3wfpuDv", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - ACT stock status", + "noSpaceBetweenColumns": false, + "numberType": "VALUE", + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "zCXWGi6fEsw" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "WdMfLZwEGih", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "set": { + "attributeValues": [], + "code": "STOCK DISCREPANCY", + "created": "2021-04-29T12:35:33.784", + "createdBy": { + "code": null, + "displayName": "Vittoria Crispino", + "id": "FIsdZWDPbr2", + "name": "Vittoria Crispino", + "username": "Vitto" + }, + "displayName": "Stock discrepancy", + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "pxeFezcPnQl", + "lastUpdated": "2021-11-19T16:12:14.033", + "lastUpdatedBy": { + "code": null, + "displayName": "Admin Translation", + "id": "NGcM4110lU7", + "name": "Admin Translation", + "username": "translation_admin" + }, + "legends": [ + { + "attributeValues": [], + "color": "#FF2000", + "created": "2021-05-11T08:47:50.678", + "displayName": "Positive", + "endValue": 10000000.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "IdLVcKSBYPP", + "lastUpdated": "2021-05-11T08:47:50.678", + "name": "Positive", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 9.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#87220D", + "created": "2021-05-11T08:47:50.679", + "displayName": "Negative", + "endValue": 1.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "EcNjRnWM0Yw", + "lastUpdated": "2021-05-11T08:47:50.679", + "name": "Negative", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": -10000000.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#68FE4C", + "created": "2021-05-11T08:47:50.679", + "displayName": "Correct stock", + "endValue": 9.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "bW5lmAtDMhX", + "lastUpdated": "2021-05-11T08:47:50.679", + "name": "Correct stock", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 1.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "name": "Stock discrepancy", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "FIsdZWDPbr2", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Ecart de stock " + } + ], + "user": { + "code": null, + "displayName": "Vittoria Crispino", + "id": "FIsdZWDPbr2", + "name": "Vittoria Crispino", + "username": "Vitto" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - ACT stock discrepancy", + "noSpaceBetweenColumns": false, + "numberType": "VALUE", + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "tS54JH4t0KS" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "U78hxMa95Zb", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Proportion of facilities with stockout days for ACT", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "--------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": {}, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "STACKED_AREA", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "SLOVMJHssO0" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "I5XKoyarjKG" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Cases receiving ACTs vs. ACTs issued from stock", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "DxEj12FUBH7", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Cases treated with ACT vs ACT distributed from stock", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "--------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": {}, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "title": "Cases receiving ACTs vs. ACTs issued from stock", + "topLimit": 0, + "translations": [], + "type": "COLUMN", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "iEUye81vR8U" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "sUuIRRJgHDl" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "tCFll2clsVs" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "RoeRc4k513l" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "xiI6aQRNUVX" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "vRfTmlOxzFa" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "h0iRcZhDsLe" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "rhDXNWkNwBS", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - ART stock status", + "noSpaceBetweenColumns": false, + "numberType": "VALUE", + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "f1XLmFIwlrK" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "oODq4oDEcBU", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "set": { + "attributeValues": [], + "code": "STOCK DISCREPANCY", + "created": "2021-04-29T12:35:33.784", + "createdBy": { + "code": null, + "displayName": "Vittoria Crispino", + "id": "FIsdZWDPbr2", + "name": "Vittoria Crispino", + "username": "Vitto" + }, + "displayName": "Stock discrepancy", + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "pxeFezcPnQl", + "lastUpdated": "2021-11-19T16:12:14.033", + "lastUpdatedBy": { + "code": null, + "displayName": "Admin Translation", + "id": "NGcM4110lU7", + "name": "Admin Translation", + "username": "translation_admin" + }, + "legends": [ + { + "attributeValues": [], + "color": "#FF2000", + "created": "2021-05-11T08:47:50.678", + "displayName": "Positive", + "endValue": 10000000.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "IdLVcKSBYPP", + "lastUpdated": "2021-05-11T08:47:50.678", + "name": "Positive", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 9.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#87220D", + "created": "2021-05-11T08:47:50.679", + "displayName": "Negative", + "endValue": 1.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "EcNjRnWM0Yw", + "lastUpdated": "2021-05-11T08:47:50.679", + "name": "Negative", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": -10000000.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#68FE4C", + "created": "2021-05-11T08:47:50.679", + "displayName": "Correct stock", + "endValue": 9.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "bW5lmAtDMhX", + "lastUpdated": "2021-05-11T08:47:50.679", + "name": "Correct stock", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 1.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "name": "Stock discrepancy", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "FIsdZWDPbr2", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Ecart de stock " + } + ], + "user": { + "code": null, + "displayName": "Vittoria Crispino", + "id": "FIsdZWDPbr2", + "name": "Vittoria Crispino", + "username": "Vitto" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - ART stock discrepancy", + "noSpaceBetweenColumns": false, + "numberType": "VALUE", + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "WxXtpE1zdeJ" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "crtJKEjULHN", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Proportion of facilities with stockout days for ART", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "--------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": {}, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "STACKED_AREA", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "BU9sYJVOslw" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "LboUZfKr9EP" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "fkSnzZMYE4F" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "b3yNPcHGMNN" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "SgRaBPYdJfg" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "u6rtNvz2C98" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "bmjvOFB90Se" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "J2wuAUXZeYw", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - SX-PYR stock status", + "noSpaceBetweenColumns": false, + "numberType": "VALUE", + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "sj3URzajB3C" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "hxigEHxwMss", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "set": { + "attributeValues": [], + "code": "STOCK DISCREPANCY", + "created": "2021-04-29T12:35:33.784", + "createdBy": { + "code": null, + "displayName": "Vittoria Crispino", + "id": "FIsdZWDPbr2", + "name": "Vittoria Crispino", + "username": "Vitto" + }, + "displayName": "Stock discrepancy", + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "pxeFezcPnQl", + "lastUpdated": "2021-11-19T16:12:14.033", + "lastUpdatedBy": { + "code": null, + "displayName": "Admin Translation", + "id": "NGcM4110lU7", + "name": "Admin Translation", + "username": "translation_admin" + }, + "legends": [ + { + "attributeValues": [], + "color": "#FF2000", + "created": "2021-05-11T08:47:50.678", + "displayName": "Positive", + "endValue": 10000000.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "IdLVcKSBYPP", + "lastUpdated": "2021-05-11T08:47:50.678", + "name": "Positive", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 9.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#87220D", + "created": "2021-05-11T08:47:50.679", + "displayName": "Negative", + "endValue": 1.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "EcNjRnWM0Yw", + "lastUpdated": "2021-05-11T08:47:50.679", + "name": "Negative", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": -10000000.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#68FE4C", + "created": "2021-05-11T08:47:50.679", + "displayName": "Correct stock", + "endValue": 9.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "bW5lmAtDMhX", + "lastUpdated": "2021-05-11T08:47:50.679", + "name": "Correct stock", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 1.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "name": "Stock discrepancy", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "FIsdZWDPbr2", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Ecart de stock " + } + ], + "user": { + "code": null, + "displayName": "Vittoria Crispino", + "id": "FIsdZWDPbr2", + "name": "Vittoria Crispino", + "username": "Vitto" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - SX-PYR stock discrepancy", + "noSpaceBetweenColumns": false, + "numberType": "VALUE", + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "OzpsrdzqZXp" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "dGDFOvzgkdw", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Proportion of facilities with stockout days for SX-PYR", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "--------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": {}, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "STACKED_AREA", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "psJy41rJsiE" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "Dh4kab2L39R" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "YX7dJbo7uTA" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "ajmJXVocM7a" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "f2zrEcfETgL" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "rL482g0s5JL" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "vqO9cXAmYcE" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "vBv9CkukHXr", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - PMQ stock status", + "noSpaceBetweenColumns": false, + "numberType": "VALUE", + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "Eqy5Nnb0Rpz" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "uDKGtAjZyQn", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "set": { + "attributeValues": [], + "code": "STOCK DISCREPANCY", + "created": "2021-04-29T12:35:33.784", + "createdBy": { + "code": null, + "displayName": "Vittoria Crispino", + "id": "FIsdZWDPbr2", + "name": "Vittoria Crispino", + "username": "Vitto" + }, + "displayName": "Stock discrepancy", + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "pxeFezcPnQl", + "lastUpdated": "2021-11-19T16:12:14.033", + "lastUpdatedBy": { + "code": null, + "displayName": "Admin Translation", + "id": "NGcM4110lU7", + "name": "Admin Translation", + "username": "translation_admin" + }, + "legends": [ + { + "attributeValues": [], + "color": "#FF2000", + "created": "2021-05-11T08:47:50.678", + "displayName": "Positive", + "endValue": 10000000.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "IdLVcKSBYPP", + "lastUpdated": "2021-05-11T08:47:50.678", + "name": "Positive", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 9.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#87220D", + "created": "2021-05-11T08:47:50.679", + "displayName": "Negative", + "endValue": 1.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "EcNjRnWM0Yw", + "lastUpdated": "2021-05-11T08:47:50.679", + "name": "Negative", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": -10000000.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#68FE4C", + "created": "2021-05-11T08:47:50.679", + "displayName": "Correct stock", + "endValue": 9.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "bW5lmAtDMhX", + "lastUpdated": "2021-05-11T08:47:50.679", + "name": "Correct stock", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 1.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "name": "Stock discrepancy", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "FIsdZWDPbr2", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Ecart de stock " + } + ], + "user": { + "code": null, + "displayName": "Vittoria Crispino", + "id": "FIsdZWDPbr2", + "name": "Vittoria Crispino", + "username": "Vitto" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - PMQ stock discrepancy", + "noSpaceBetweenColumns": false, + "numberType": "VALUE", + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "ePye02livLt" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "I6ItxljZV76", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Proportion of facilities with stockout days for PMQ", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "--------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": {}, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "STACKED_AREA", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "s4n3zSyciLw" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "DEURBGqN6fO" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "uihjx61H8ai" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "GNvUj6KNaDM" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "mm9hChdAyl3" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "ket0CCCIHKs" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "UdyTo2oqzZO" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "hg3TLfpnmMK", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - LLIN stock status", + "noSpaceBetweenColumns": false, + "numberType": "VALUE", + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "lCUNJpZTDQJ" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "KJ6MBCbC77f", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "set": { + "attributeValues": [], + "code": "STOCK DISCREPANCY", + "created": "2021-04-29T12:35:33.784", + "createdBy": { + "code": null, + "displayName": "Vittoria Crispino", + "id": "FIsdZWDPbr2", + "name": "Vittoria Crispino", + "username": "Vitto" + }, + "displayName": "Stock discrepancy", + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "pxeFezcPnQl", + "lastUpdated": "2021-11-19T16:12:14.033", + "lastUpdatedBy": { + "code": null, + "displayName": "Admin Translation", + "id": "NGcM4110lU7", + "name": "Admin Translation", + "username": "translation_admin" + }, + "legends": [ + { + "attributeValues": [], + "color": "#FF2000", + "created": "2021-05-11T08:47:50.678", + "displayName": "Positive", + "endValue": 10000000.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "IdLVcKSBYPP", + "lastUpdated": "2021-05-11T08:47:50.678", + "name": "Positive", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 9.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#87220D", + "created": "2021-05-11T08:47:50.679", + "displayName": "Negative", + "endValue": 1.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "EcNjRnWM0Yw", + "lastUpdated": "2021-05-11T08:47:50.679", + "name": "Negative", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": -10000000.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#68FE4C", + "created": "2021-05-11T08:47:50.679", + "displayName": "Correct stock", + "endValue": 9.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "bW5lmAtDMhX", + "lastUpdated": "2021-05-11T08:47:50.679", + "name": "Correct stock", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 1.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "name": "Stock discrepancy", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "FIsdZWDPbr2", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "Ecart de stock " + } + ], + "user": { + "code": null, + "displayName": "Vittoria Crispino", + "id": "FIsdZWDPbr2", + "name": "Vittoria Crispino", + "username": "Vitto" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - LLIN stock discrepancy", + "noSpaceBetweenColumns": false, + "numberType": "VALUE", + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "hCj9BqpyMvT" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "Y50TU1bYMgG", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Proportion of facilities with stockout days for LLIN", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "--------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": {}, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "STACKED_AREA", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "blS3OjRXn0c" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "VoN285Q7FQG" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "vK4qNvAtZsG" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Malaria Testing", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "yJNAGE2iN7e", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Trend in coverages: ANC1, ITNs to pregnant women and infants", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "title": "Malaria Testing", + "topLimit": 0, + "translations": [], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "Ec4z30wDGVH" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "rd71eVlLezw" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "Ffi38WOC65w" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Malaria Testing", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "odF8xIAXyzh", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Trend in coverages: ANC1, IPTp1 and IPTp3", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "title": "Malaria Testing", + "topLimit": 0, + "translations": [], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "blS3OjRXn0c" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "VoN285Q7FQG" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "MAL - Trend in MAL - Percentage of estimated pregnancies benefiting from ANC visit and receipt of an", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "iSZUMq4XZyd", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Trend in MAL - Percentage of estimated pregnancies benefiting from ANC visit and receipt of an ITN", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "title": "MAL - Trend in MAL - Percentage of estimated pregnancies benefiting from ANC visit and receipt of an", + "topLimit": 0, + "translations": [], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "blS3OjRXn0c" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "PHKTIO5iFgA" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "lRBSFNlbk3D" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "MAL - Trend in MAL - Percentage of estimated pregnancies benefiting from ANC visit and receipt of 1,", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "Xx6WI5IfnoQ", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Trend in MAL - Percentage of estimated pregnancies benefiting from ANC visit and receipt of 1,2 and 3 doses of IPTp", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "title": "MAL - Trend in MAL - Percentage of estimated pregnancies benefiting from ANC visit and receipt of 1,", + "topLimit": 0, + "translations": [], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "rPYLomUceL4" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "tIWGvDkU6lb" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "bA6kgEyRkg0" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Malaria surveillance", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "bIwPfcT9JVN", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Surveillance (cases and threshold) - last 12 months", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "title": "Malaria surveillance", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Surveillance du paludisme" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "KnoBf1YCOe2" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "l0TE4LdzE8j" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Microscopy and RDT Testing", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "QqZNdTABzsZ", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Testing", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "title": "Microscopy and RDT Testing", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Test microscopie et TDR" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "FdfpxYmcsC3" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "FHm610XVh02" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Malaria and Non-malaria deaths", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "tq6l6xuECZo", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Deaths", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "title": "Malaria and Non-malaria deaths", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Décès de paludisme" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [ + { + "categoryOptionGroupSet": { + "id": "AzDcxg4bW1N" + }, + "categoryOptionGroups": [ + { + "id": "yuathFHLjNe" + }, + { + "id": "V9t81g7Wspa" + }, + { + "id": "SqvDE9fTeGl" + }, + { + "id": "YXE2HxNf3YB" + } + ] + } + ], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "AzDcxg4bW1N" + ], + "columns": [ + { + "id": "AzDcxg4bW1N" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "FdfpxYmcsC3" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Malaria deaths by Age", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou", + "dx" + ], + "filters": [ + { + "id": "ou" + }, + { + "id": "dx" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "Q0H2GvXlpYB", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Deaths", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "title": "Malaria deaths by Age", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Décès de paludisme par âge" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "lL9BxL5FSNv" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "BhoZ0XenErj" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Malaria and non-malaria IPD", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "mmdI4h7KdLL", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - IPD", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "title": "Malaria and non-malaria IPD", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Hospitalisations de paludisme" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "EiWBxnS9wmk" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "AF99VXqV5Fe" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "JzWUCTqpITC" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Proportions (OPD,IPD, Deaths)", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "pnEMZYfUAZt", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Proportion", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "title": "Proportions (OPD,IPD, Deaths)", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Pourcentage (ambulatoires, hospitalisations, décès)" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "oAJpTsMsRxv" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "QHcjn7FHI2w" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Test Positivity", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "SKJkOTlS8vN", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Positivity", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "title": "Test Positivity", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Positivité des tests" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "rPYLomUceL4" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "SqFthnK8FJY" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "VxAkjvBMvfp" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "% Suspected Tested, Confirmed cases and ABER", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "XG7LBCz7nQn", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Conf cases & ABER", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "title": "% Suspected Tested, Confirmed cases and ABER", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Cas confirmés et ABER" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "yobFlvQGbSO" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "xZPfJVUrSsm" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "x2piMpdUU68" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Reporting completeness", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "eqbjzgCFSFs", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Reporting Comp", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "title": "Reporting completeness", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Taux de complétude" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "rOt4BctnRqS" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "J06o672aumY" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "OPD malaria vs Non-malaria OPD", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "wSudey0Yc2R", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - OPD", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "title": "OPD malaria vs Non-malaria OPD", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Cas paludiques et non paludiques ambulatoires" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": true, + "colTotals": true, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "KnoBf1YCOe2" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "w44M511O2yp" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "qo7xD7OTGcF", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - Microscopy", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": true, + "rowTotals": true, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": true, + "colTotals": true, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "FdfpxYmcsC3" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "Cyy6FR0wEGe", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - Deaths", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": true, + "rowTotals": true, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": true, + "colTotals": true, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "BhoZ0XenErj" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "GmqjzU8Crmi", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - IPD", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": true, + "rowTotals": true, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": true, + "colTotals": true, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "EiWBxnS9wmk" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "AF99VXqV5Fe" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "JzWUCTqpITC" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "uZ03Z5GgJJ0", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - Proportion", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": true, + "rowTotals": true, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": true, + "colTotals": true, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "oAJpTsMsRxv" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "QHcjn7FHI2w" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "wleqcZVkF9U", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - Positivity", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": true, + "rowTotals": true, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": true, + "colTotals": true, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "rPYLomUceL4" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "SqFthnK8FJY" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "T4eg1e5rjXE", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - Conf cases & ABER", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": true, + "rowTotals": true, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": true, + "colTotals": true, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "yobFlvQGbSO" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "xZPfJVUrSsm" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "x2piMpdUU68" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "d1RmmimorCK", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - Reporting completeness", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": true, + "rowTotals": true, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": true, + "colTotals": false, + "columnDimensions": [ + "dx", + "pe" + ], + "columns": [ + { + "id": "dx" + }, + { + "id": "pe" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "LCSjdxqMz7U" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [], + "filters": [], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": true, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "sgTE8MwRu38", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "set": { + "attributeValues": [], + "created": "2020-05-06T08:15:03.944", + "createdBy": { + "code": "admin", + "displayName": "admin admin", + "id": "M5zQapPyTZI", + "name": "admin admin", + "username": "admin" + }, + "displayName": "Completeness and timeliness of reporting", + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "kqfOfmaaMVl", + "lastUpdated": "2021-06-21T20:19:39.728", + "lastUpdatedBy": { + "code": null, + "displayName": "Patrick Omiel", + "id": "KpUvqwyAqx8", + "name": "Patrick Omiel", + "username": "patrick" + }, + "legends": [ + { + "attributeValues": [], + "color": "#1a9641", + "created": "2021-06-21T20:19:39.728", + "displayName": "80 - 100", + "endValue": 100.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "FjujfNYokCd", + "lastUpdated": "2021-06-21T20:19:39.728", + "name": "80 - 100", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 80.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#fdae61", + "created": "2021-06-21T20:19:39.729", + "displayName": "20 - 40", + "endValue": 40.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "kjjM7FWzhBS", + "lastUpdated": "2021-06-21T20:19:39.729", + "name": "20 - 40", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 20.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#ffffbf", + "created": "2021-06-21T20:19:39.728", + "displayName": "40 - 60", + "endValue": 60.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "zAL9tOoVD88", + "lastUpdated": "2021-06-21T20:19:39.728", + "name": "40 - 60", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 40.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#a6d96a", + "created": "2021-06-21T20:19:39.728", + "displayName": "60 - 80", + "endValue": 80.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "W0n5LCjmcSu", + "lastUpdated": "2021-06-21T20:19:39.728", + "name": "60 - 80", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 60.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#d7191c", + "created": "2021-06-21T20:19:39.729", + "displayName": "0 - 20", + "endValue": 20.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "dF6vsiZO223", + "lastUpdated": "2021-06-21T20:19:39.729", + "name": "0 - 20", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 0.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "name": "Completeness and timeliness of reporting", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "M5zQapPyTZI", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [], + "user": { + "code": "admin", + "displayName": "admin admin", + "id": "M5zQapPyTZI", + "name": "admin admin", + "username": "admin" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - DQ - Reporting timeliness in public and private sector", + "noSpaceBetweenColumns": false, + "numberType": "VALUE", + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [ + { + "organisationUnitGroupSet": { + "id": "DJGoXYJGidL" + }, + "organisationUnitGroups": [ + { + "id": "ltOchiGMdfn" + }, + { + "id": "pubdYxdPL8f" + } + ] + } + ], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": true, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "ou", + "DJGoXYJGidL" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "ou" + }, + { + "id": "DJGoXYJGidL" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": true, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": true, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": true, + "colTotals": false, + "columnDimensions": [ + "dx", + "pe" + ], + "columns": [ + { + "id": "dx" + }, + { + "id": "pe" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "kRM758TS6p7" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [], + "filters": [], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": true, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "g6am8vrCpkm", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "set": { + "attributeValues": [], + "created": "2020-05-06T08:15:03.944", + "createdBy": { + "code": "admin", + "displayName": "admin admin", + "id": "M5zQapPyTZI", + "name": "admin admin", + "username": "admin" + }, + "displayName": "Completeness and timeliness of reporting", + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "kqfOfmaaMVl", + "lastUpdated": "2021-06-21T20:19:39.728", + "lastUpdatedBy": { + "code": null, + "displayName": "Patrick Omiel", + "id": "KpUvqwyAqx8", + "name": "Patrick Omiel", + "username": "patrick" + }, + "legends": [ + { + "attributeValues": [], + "color": "#1a9641", + "created": "2021-06-21T20:19:39.728", + "displayName": "80 - 100", + "endValue": 100.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "FjujfNYokCd", + "lastUpdated": "2021-06-21T20:19:39.728", + "name": "80 - 100", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 80.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#fdae61", + "created": "2021-06-21T20:19:39.729", + "displayName": "20 - 40", + "endValue": 40.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "kjjM7FWzhBS", + "lastUpdated": "2021-06-21T20:19:39.729", + "name": "20 - 40", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 20.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#ffffbf", + "created": "2021-06-21T20:19:39.728", + "displayName": "40 - 60", + "endValue": 60.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "zAL9tOoVD88", + "lastUpdated": "2021-06-21T20:19:39.728", + "name": "40 - 60", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 40.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#a6d96a", + "created": "2021-06-21T20:19:39.728", + "displayName": "60 - 80", + "endValue": 80.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "W0n5LCjmcSu", + "lastUpdated": "2021-06-21T20:19:39.728", + "name": "60 - 80", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 60.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#d7191c", + "created": "2021-06-21T20:19:39.729", + "displayName": "0 - 20", + "endValue": 20.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "dF6vsiZO223", + "lastUpdated": "2021-06-21T20:19:39.729", + "name": "0 - 20", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 0.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "name": "Completeness and timeliness of reporting", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "M5zQapPyTZI", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [], + "user": { + "code": "admin", + "displayName": "admin admin", + "id": "M5zQapPyTZI", + "name": "admin admin", + "username": "admin" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - DQ - Reporting completeness in public and private sector", + "noSpaceBetweenColumns": false, + "numberType": "VALUE", + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [ + { + "organisationUnitGroupSet": { + "id": "DJGoXYJGidL" + }, + "organisationUnitGroups": [ + { + "id": "ltOchiGMdfn" + }, + { + "id": "pubdYxdPL8f" + } + ] + } + ], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": true, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "ou", + "DJGoXYJGidL" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "ou" + }, + { + "id": "DJGoXYJGidL" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": true, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": true, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "ou" + ], + "columns": [ + { + "id": "ou" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "acDxsQjnEof" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "dx" + ], + "filters": [ + { + "id": "dx" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "Nd1Vpv1eWuy", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - DQ - Test positivity rate", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "--------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": {}, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": true, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "ou" + ], + "columns": [ + { + "id": "ou" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "oAJpTsMsRxv" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "dx" + ], + "filters": [ + { + "id": "dx" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "uvzNDbkmNEp", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - DQ - Slide positivity rate", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "--------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": {}, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": true, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "ou" + ], + "columns": [ + { + "id": "ou" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "QHcjn7FHI2w" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "dx" + ], + "filters": [ + { + "id": "dx" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "bmGtBDNFQUQ", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - DQ - RDT positivity rate", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "--------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": {}, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": true, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "ou" + ], + "columns": [ + { + "id": "ou" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "AAFrGj6qxF9" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "description": "", + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "dx" + ], + "filters": [ + { + "id": "dx" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "j8AshcRp31c", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - DQ - Proportion of inpatient deaths", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "--------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": {}, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": true, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "ou" + ], + "columns": [ + { + "id": "ou" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "yeQBWgHr3Wf" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "dx" + ], + "filters": [ + { + "id": "dx" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "wyHtEhO9WJx", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - DQ - Proportion of outpatient malaria cases", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "--------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": {}, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": true, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "ou" + ], + "columns": [ + { + "id": "ou" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "LCSjdxqMz7U" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "description": "Reporting timeliness in private and public sector", + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "dx" + ], + "filters": [ + { + "id": "dx" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "MqF4vunDaSH", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - DQ - Reporting timeliness", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "--------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "--------", + "userGroups": {}, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": true, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "COUNT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "f2dqukJgSxy" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "KThZ4t55Q0A" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "CgIjjRIEx9y" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "OCRFvqr1UkZ" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "ZlpqQCFLo2i" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "MwpGLM7V7vn" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "bBtpTPIvpNz" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "DGfysK6msvW" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "fr1H0xM09uP" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "RgRkvZiQaSt" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "uPuVP7vVv75" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [], + "filters": [], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": true, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "XHJUbmzHSK0", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "set": { + "attributeValues": [], + "created": "2020-05-06T08:15:03.944", + "createdBy": { + "code": "admin", + "displayName": "admin admin", + "id": "M5zQapPyTZI", + "name": "admin admin", + "username": "admin" + }, + "displayName": "Completeness and timeliness of reporting", + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "kqfOfmaaMVl", + "lastUpdated": "2021-06-21T20:19:39.728", + "lastUpdatedBy": { + "code": null, + "displayName": "Patrick Omiel", + "id": "KpUvqwyAqx8", + "name": "Patrick Omiel", + "username": "patrick" + }, + "legends": [ + { + "attributeValues": [], + "color": "#1a9641", + "created": "2021-06-21T20:19:39.728", + "displayName": "80 - 100", + "endValue": 100.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "FjujfNYokCd", + "lastUpdated": "2021-06-21T20:19:39.728", + "name": "80 - 100", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 80.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#fdae61", + "created": "2021-06-21T20:19:39.729", + "displayName": "20 - 40", + "endValue": 40.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "kjjM7FWzhBS", + "lastUpdated": "2021-06-21T20:19:39.729", + "name": "20 - 40", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 20.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#ffffbf", + "created": "2021-06-21T20:19:39.728", + "displayName": "40 - 60", + "endValue": 60.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "zAL9tOoVD88", + "lastUpdated": "2021-06-21T20:19:39.728", + "name": "40 - 60", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 40.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#a6d96a", + "created": "2021-06-21T20:19:39.728", + "displayName": "60 - 80", + "endValue": 80.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "W0n5LCjmcSu", + "lastUpdated": "2021-06-21T20:19:39.728", + "name": "60 - 80", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 60.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#d7191c", + "created": "2021-06-21T20:19:39.729", + "displayName": "0 - 20", + "endValue": 20.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "dF6vsiZO223", + "lastUpdated": "2021-06-21T20:19:39.729", + "name": "0 - 20", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": 0.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "name": "Completeness and timeliness of reporting", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "M5zQapPyTZI", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [], + "user": { + "code": "admin", + "displayName": "admin admin", + "id": "M5zQapPyTZI", + "name": "admin admin", + "username": "admin" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - DQ - Completeness of variable in actual reports", + "noSpaceBetweenColumns": false, + "numberType": "VALUE", + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "ou", + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "ou" + }, + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": true, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "B0HiDb6gBa1" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "C4MxCbqDJFy" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "APlaSyVyMqx" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "avidQanPyxp" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "CHUBTqdiCeO" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "OS3CLHlk3HS" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [], + "filters": [], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": true, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "uGfyrJEQAWx", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "set": { + "attributeValues": [], + "created": "2021-06-04T11:20:43.924", + "createdBy": { + "code": null, + "displayName": "Patrick Omiel", + "id": "KpUvqwyAqx8", + "name": "Patrick Omiel", + "username": "patrick" + }, + "displayName": "Consistency between variables (>=)", + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "w5nOHQy2NP8", + "lastUpdated": "2021-06-18T08:03:10.639", + "lastUpdatedBy": { + "code": null, + "displayName": "Patrick Omiel", + "id": "KpUvqwyAqx8", + "name": "Patrick Omiel", + "username": "patrick" + }, + "legends": [ + { + "attributeValues": [], + "color": "#FF0000", + "created": "2021-06-18T08:03:10.639", + "displayName": "Negative", + "endValue": -1.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "PR55FXzZvWa", + "lastUpdated": "2021-06-18T08:03:10.639", + "name": "Negative", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": -999999999.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + }, + { + "attributeValues": [], + "color": "#027E2F", + "created": "2021-06-18T08:03:10.639", + "displayName": "Positive", + "endValue": 999999999.0, + "externalAccess": false, + "favorite": false, + "favorites": [], + "id": "m8ThRKtM6gf", + "lastUpdated": "2021-06-18T08:03:10.639", + "name": "Positive", + "sharing": { + "external": false, + "userGroups": {}, + "users": {} + }, + "startValue": -1.0, + "translations": [], + "userAccesses": [], + "userGroupAccesses": [] + } + ], + "name": "Consistency between variables (>=)", + "publicAccess": "rw------", + "sharing": { + "external": false, + "owner": "KpUvqwyAqx8", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "translations": [], + "user": { + "code": null, + "displayName": "Patrick Omiel", + "id": "KpUvqwyAqx8", + "name": "Patrick Omiel", + "username": "patrick" + }, + "userAccesses": [], + "userGroupAccesses": [] + }, + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - Consistency between variables", + "noSpaceBetweenColumns": false, + "numberType": "VALUE", + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": false, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": true, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "ou", + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "ou" + }, + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": false, + "userOrganisationUnitChildren": true, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "ou" + ], + "columns": [ + { + "id": "ou" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "zItDfNaCDcR" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "description": "", + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "dx" + ], + "filters": [ + { + "id": "dx" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "L6B1ookZQMW", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - DQ - Proportion of inpatient malaria cases", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": true, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "ou" + ], + "columns": [ + { + "id": "ou" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "VxAkjvBMvfp" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "dx" + ], + "filters": [ + { + "id": "dx" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "UCT3c9PPCQZ", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - DQ - Proportion of suspected individuals tested", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": true, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "ou" + ], + "columns": [ + { + "id": "ou" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "kRM758TS6p7" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "dx" + ], + "filters": [ + { + "id": "dx" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "p29zcNGL0Aj", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - DQ - Reporting completeness", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "rw------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "rw------", + "userGroups": {}, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": true, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "Uzmk0S9IwWn" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "EEuvMCljxc9" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Percent P.F and P.v", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "PvxM8Xg87Nj", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Percent P.F and P.v", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "title": "Percent P.F and P.v", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Pourcentage P.F et P.v" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "sl7EVPFXps8" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "bZojnzkbvrZ" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Proportion of cases investigated and classified", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "sV93XsyzYKh", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Proportion of cases investigated and classified", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "title": "Proportion of cases investigated and classified", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Pourcentage de cas investigués et classés" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "AdyubP1OaxP" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "dKbHt6OB5x1" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Proportion of foci investigated and classified", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "E0Ct7kfn7ah", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Proportion of foci investigated and classified", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "title": "Proportion of foci investigated and classified", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Pourcentage de foyers investigués et classés" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "N8S7Vnntced" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "npqu6fhBVpe" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Proportion of foci with zero local cases", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "uE5LUxEM6sT", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Proportion of foci with zero local cases", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "title": "Proportion of foci with zero local cases", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Pourcentage de foyers avec zéro cas local" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "yobFlvQGbSO" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "xZPfJVUrSsm" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "x2piMpdUU68" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "NONE", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "hQwk2byL539", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Report completeness", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Taux de complétude" + } + ], + "type": "COLUMN", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": true, + "colTotals": true, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "RLxhxT7sO0R" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": true, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "teaDKAvi59w", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - Confirmed cases and Foci", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": true, + "rowTotals": true, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "RLxhxT7sO0R" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Confirmed cases and Foci", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "aBCOG3NeVon", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Confirmed cases and Foci", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "title": "Confirmed cases and Foci", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Cas confirmés et foyers" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": true, + "colTotals": true, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "Uzmk0S9IwWn" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "EEuvMCljxc9" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "V5hgP357C9f", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - Percent P.F and P.v", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": true, + "rowTotals": true, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "sl7EVPFXps8" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "bZojnzkbvrZ" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "jsaymgD3TfZ", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - Proportion of cases investigated and classified", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "AdyubP1OaxP" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "dKbHt6OB5x1" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "oRXnqWYlWP5", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - Proportion of foci investigated and classified", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "N8S7Vnntced" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "npqu6fhBVpe" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "SxiXWx4gFQN", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - Proportion of foci with zero local cases", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "yobFlvQGbSO" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "lFI58Q1aW8Q", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - Report completeness for malaria", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "KnoBf1YCOe2" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "l0TE4LdzE8j" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Malaria Testing", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "Mbgcb9pdFR1", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Testing (QL)", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "title": "Malaria Testing", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Dépistage du paludisme" + } + ], + "type": "STACKED_AREA", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "SqFthnK8FJY" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Case Confirmation", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "uX3m5YW9cuM", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Case Confirmation (QL)", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "title": "Case Confirmation", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Confirmation de cas" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "VxAkjvBMvfp" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "K1DkT2kokjD" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Percent Tested", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "zbZhaW2GXQV", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Percent Tested (QL)", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "title": "Percent Tested", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Pourcentage testé" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "cDyuNvxtBQn" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "yxl57MQlamu" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Malaria - % of All Deaths and Admissions", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "zt23Bi5f3F3", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - % of All Deaths and Admissions (QL)", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "title": "Malaria - % of All Deaths and Admissions", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - % de tous les décès et hospitalisations" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "rJT9jsfSplB" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "qsOjtTbXJgJ" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Ratio Consultancy and Admissions", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "v5tVurZ9vUf", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Ratio Consultancy and Admissions (QL)", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "title": "Ratio Consultancy and Admissions", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Ratio de consultations ambulatoires et hospitalisations" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": false, + "colTotals": false, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "V3ddhQv64m9" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "KYMYmQUL7zN" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "displayTitle": "Malaria Case Fatality - OPD and Admissions", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRowItems": "ALL", + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "tU3rJIp9STm", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false + }, + "name": "MAL - Case Fatality - OPD and Admissions (QL)", + "noSpaceBetweenColumns": false, + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "regressionType": "NONE", + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": false, + "rowTotals": false, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": true, + "showDimensionLabels": false, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "title": "Malaria Case Fatality - OPD and Admissions", + "topLimit": 0, + "translations": [ + { + "locale": "fr", + "property": "NAME", + "value": "MAL - Taux de mortalité palustre (ambulatoires et hospitalisations)" + } + ], + "type": "LINE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + }, + { + "aggregationType": "DEFAULT", + "attributeDimensions": [], + "attributeValues": [], + "categoryDimensions": [], + "categoryOptionGroupSetDimensions": [], + "colSubTotals": true, + "colTotals": true, + "columnDimensions": [ + "dx" + ], + "columns": [ + { + "id": "dx" + } + ], + "completedOnly": false, + "cumulativeValues": false, + "dataDimensionItems": [ + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "rPYLomUceL4" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "SqFthnK8FJY" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "VxAkjvBMvfp" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "K1DkT2kokjD" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "cDyuNvxtBQn" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "yxl57MQlamu" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "rJT9jsfSplB" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "qsOjtTbXJgJ" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "V3ddhQv64m9" + } + }, + { + "dataDimensionItemType": "INDICATOR", + "indicator": { + "id": "KYMYmQUL7zN" + } + } + ], + "dataElementDimensions": [], + "dataElementGroupSetDimensions": [], + "digitGroupSeparator": "SPACE", + "displayDensity": "NORMAL", + "externalAccess": false, + "favorite": false, + "filterDimensions": [ + "ou" + ], + "filters": [ + { + "id": "ou" + } + ], + "fixColumnHeaders": false, + "fixRowHeaders": false, + "fontSize": "NORMAL", + "hideEmptyColumns": false, + "hideEmptyRows": false, + "hideLegend": false, + "hideSubtitle": false, + "hideTitle": false, + "id": "yieNDIkKEu2", + "interpretations": [], + "itemOrganisationUnitGroups": [], + "legend": { + "showKey": false, + "strategy": "FIXED", + "style": "FILL" + }, + "name": "MAL - QL Surveillance - 01", + "noSpaceBetweenColumns": false, + "numberType": "VALUE", + "optionalAxes": [], + "organisationUnitGroupSetDimensions": [], + "organisationUnitLevels": [], + "organisationUnits": [], + "parentGraphMap": {}, + "percentStackedValues": false, + "periods": [], + "programIndicatorDimensions": [], + "publicAccess": "r-------", + "regression": false, + "relativePeriods": { + "biMonthsThisYear": false, + "last10FinancialYears": false, + "last10Years": false, + "last12Months": true, + "last12Weeks": false, + "last14Days": false, + "last180Days": false, + "last2SixMonths": false, + "last30Days": false, + "last3Days": false, + "last3Months": false, + "last4BiWeeks": false, + "last4Quarters": false, + "last4Weeks": false, + "last52Weeks": false, + "last5FinancialYears": false, + "last5Years": false, + "last60Days": false, + "last6BiMonths": false, + "last6Months": false, + "last7Days": false, + "last90Days": false, + "lastBiWeek": false, + "lastBimonth": false, + "lastFinancialYear": false, + "lastMonth": false, + "lastQuarter": false, + "lastSixMonth": false, + "lastWeek": false, + "lastYear": false, + "monthsLastYear": false, + "monthsThisYear": false, + "quartersLastYear": false, + "quartersThisYear": false, + "thisBiWeek": false, + "thisBimonth": false, + "thisDay": false, + "thisFinancialYear": false, + "thisMonth": false, + "thisQuarter": false, + "thisSixMonth": false, + "thisWeek": false, + "thisYear": false, + "weeksThisYear": false, + "yesterday": false + }, + "reportingParams": { + "grandParentOrganisationUnit": false, + "organisationUnit": false, + "parentOrganisationUnit": false, + "reportingPeriod": false + }, + "rowDimensions": [ + "pe" + ], + "rowSubTotals": true, + "rowTotals": true, + "rows": [ + { + "id": "pe" + } + ], + "seriesKey": { + "hidden": false + }, + "sharing": { + "external": false, + "owner": "vUeLeQMSwhN", + "public": "r-------", + "userGroups": { + "ZXEVDM9XRea": { + "access": "r-------", + "id": "ZXEVDM9XRea" + }, + "suMb19wGXPR": { + "access": "rw------", + "id": "suMb19wGXPR" + } + }, + "users": {} + }, + "showData": false, + "showDimensionLabels": true, + "showHierarchy": false, + "skipRounding": false, + "sortOrder": 0, + "subscribed": false, + "subscribers": [], + "topLimit": 0, + "translations": [], + "type": "PIVOT_TABLE", + "user": { + "id": "vUeLeQMSwhN", + "name": "Admin WHO", + "username": "who" + }, + "userAccesses": [], + "userGroupAccesses": [ + { + "access": "rw------", + "id": "suMb19wGXPR", + "userGroupUid": "suMb19wGXPR" + }, + { + "access": "r-------", + "id": "ZXEVDM9XRea", + "userGroupUid": "ZXEVDM9XRea" + } + ], + "userOrganisationUnit": true, + "userOrganisationUnitChildren": false, + "userOrganisationUnitGrandChildren": false, + "yearlySeries": [] + } + ] +} \ No newline at end of file diff --git a/src/test/resources/dhis.conf b/src/test/resources/dhis.conf new file mode 100644 index 0000000..ea8adf1 --- /dev/null +++ b/src/test/resources/dhis.conf @@ -0,0 +1,5 @@ +connection.dialect = org.hibernate.dialect.PostgreSQLDialect +connection.driver_class = org.postgresql.Driver +connection.url = jdbc:postgresql://db:5432/dhis2 +connection.username = dhis +connection.password = dhis \ No newline at end of file diff --git a/src/test/resources/log4j2-test.xml b/src/test/resources/log4j2-test.xml new file mode 100644 index 0000000..4b8b855 --- /dev/null +++ b/src/test/resources/log4j2-test.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + +