Displaying differences for changeset
 
display as  

nbproject/build-impl.xml

@@ -50,36 +50,6 @@
     </target>
     <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" if="dist.ear.dir" name="-do-ear-init"/>
     <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" name="-do-init">
-        <webproject1:property name="platform.home" value="platforms.${platform.active}.home"/>
-        <webproject1:property name="platform.bootcp" value="platforms.${platform.active}.bootclasspath"/>
-        <webproject1:property name="platform.compiler" value="platforms.${platform.active}.compile"/>
-        <webproject1:property name="platform.javac.tmp" value="platforms.${platform.active}.javac"/>
-        <condition property="platform.javac" value="${platform.home}/bin/javac">
-            <equals arg1="${platform.javac.tmp}" arg2="$${platforms.${platform.active}.javac}"/>
-        </condition>
-        <property name="platform.javac" value="${platform.javac.tmp}"/>
-        <webproject1:property name="platform.java.tmp" value="platforms.${platform.active}.java"/>
-        <condition property="platform.java" value="${platform.home}/bin/java">
-            <equals arg1="${platform.java.tmp}" arg2="$${platforms.${platform.active}.java}"/>
-        </condition>
-        <property name="platform.java" value="${platform.java.tmp}"/>
-        <webproject1:property name="platform.javadoc.tmp" value="platforms.${platform.active}.javadoc"/>
-        <condition property="platform.javadoc" value="${platform.home}/bin/javadoc">
-            <equals arg1="${platform.javadoc.tmp}" arg2="$${platforms.${platform.active}.javadoc}"/>
-        </condition>
-        <property name="platform.javadoc" value="${platform.javadoc.tmp}"/>
-        <fail unless="platform.home">Must set platform.home</fail>
-        <fail unless="platform.bootcp">Must set platform.bootcp</fail>
-        <fail unless="platform.java">Must set platform.java</fail>
-        <fail unless="platform.javac">Must set platform.javac</fail>
-        <fail if="platform.invalid">
- The J2SE Platform is not correctly set up.
- Your active platform is: ${platform.active}, but the corresponding property "platforms.${platform.active}.home" is not found in the project's properties files. 
- Either open the project in the IDE and setup the Platform with the same name or add it manually.
- For example like this:
-     ant -Duser.properties.file=&lt;path_to_property_file&gt; jar (where you put the property "platforms.${platform.active}.home" in a .properties file)
-  or ant -Dplatforms.${platform.active}.home=&lt;path_to_JDK_home&gt; jar (where no properties file is used) 
-  </fail>
         <condition property="have.tests">
             <or>
                 <available file="${test.src.dir}"/>
@@ -221,6 +191,15 @@
                 <length length="0" string="${endorsed.classpath}" when="greater"/>
             </and>
         </condition>
+        <condition else="false" property="jdkBug6558476">
+            <and>
+                <matches pattern="1\.[56]" string="${java.specification.version}"/>
+                <not>
+                    <os family="unix"/>
+                </not>
+            </and>
+        </condition>
+        <property name="javac.fork" value="${jdkBug6558476}"/>
         <condition property="junit.available">
             <or>
                 <available classname="org.junit.Test" classpath="${run.test.classpath}"/>
@@ -315,7 +294,7 @@
                 <property location="${build.dir}/empty" name="empty.dir"/>
                 <mkdir dir="${empty.dir}"/>
                 <mkdir dir="@{apgeneratedsrcdir}"/>
-                <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" executable="${platform.javac}" fork="yes" includeantruntime="false" includes="@{includes}" source="${javac.source}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}">
+                <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" fork="${javac.fork}" includeantruntime="false" includes="@{includes}" source="${javac.source}" srcdir="@{srcdir}" target="${javac.target}">
                     <src>
                         <dirset dir="@{gensrcdir}" erroronmissingdir="false">
                             <include name="*"/>
@@ -352,7 +331,7 @@
             <sequential>
                 <property location="${build.dir}/empty" name="empty.dir"/>
                 <mkdir dir="${empty.dir}"/>
-                <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" executable="${platform.javac}" fork="yes" includeantruntime="false" includes="@{includes}" source="${javac.source}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}">
+                <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" includeantruntime="false" includes="@{includes}" source="${javac.source}" srcdir="@{srcdir}" target="${javac.target}">
                     <src>
                         <dirset dir="@{gensrcdir}" erroronmissingdir="false">
                             <include name="*"/>
@@ -429,7 +408,7 @@
             <attribute default="" name="testmethods"/>
             <element name="customize" optional="true"/>
             <sequential>
-                <junit dir="${basedir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" jvm="${platform.java}" showoutput="true" tempdir="${java.io.tmpdir}">
+                <junit dir="${basedir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true" tempdir="${java.io.tmpdir}">
                     <test methods="@{testmethods}" name="@{testincludes}" todir="${build.test.results.dir}"/>
                     <syspropertyset>
                         <propertyref prefix="test-sys-prop."/>
@@ -452,7 +431,7 @@
             <element name="customize" optional="true"/>
             <sequential>
                 <property name="run.jvmargs.ide" value=""/>
-                <junit dir="${basedir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" jvm="${platform.java}" showoutput="true" tempdir="${build.dir}">
+                <junit dir="${basedir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true" tempdir="${build.dir}">
                     <batchtest todir="${build.test.results.dir}">
                         <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
                             <filename name="@{testincludes}"/>
@@ -492,7 +471,7 @@
                     </fileset>
                 </union>
                 <taskdef classname="org.testng.TestNGAntTask" classpath="${run.test.classpath}" name="testng"/>
-                <testng classfilesetref="test.set" failureProperty="tests.failed" jvm="${platform.java}" listeners="org.testng.reporters.VerboseReporter" methods="${testng.methods.arg}" mode="${testng.mode}" outputdir="${build.test.results.dir}" suitename="csip-wqm" testname="TestNG tests" workingDir="${basedir}">
+                <testng classfilesetref="test.set" failureProperty="tests.failed" listeners="org.testng.reporters.VerboseReporter" methods="${testng.methods.arg}" mode="${testng.mode}" outputdir="${build.test.results.dir}" suitename="csip-wqm" testname="TestNG tests" workingDir="${basedir}">
                     <xmlfileset dir="${build.test.classes.dir}" includes="@{testincludes}"/>
                     <propertyset>
                         <propertyref prefix="test-sys-prop."/>
@@ -570,7 +549,7 @@
             <attribute default="" name="testmethods"/>
             <element name="customize" optional="true"/>
             <sequential>
-                <junit dir="${basedir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" jvm="${platform.java}" showoutput="true" tempdir="${java.io.tmpdir}">
+                <junit dir="${basedir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true" tempdir="${java.io.tmpdir}">
                     <test methods="@{testmethods}" name="@{testincludes}" todir="${build.test.results.dir}"/>
                     <syspropertyset>
                         <propertyref prefix="test-sys-prop."/>
@@ -595,7 +574,7 @@
             <element name="customize" optional="true"/>
             <sequential>
                 <property name="run.jvmargs.ide" value=""/>
-                <junit dir="${basedir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" jvm="${platform.java}" showoutput="true" tempdir="${build.dir}">
+                <junit dir="${basedir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true" tempdir="${build.dir}">
                     <batchtest todir="${build.test.results.dir}">
                         <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
                             <filename name="@{testincludes}"/>
@@ -719,7 +698,7 @@
             <attribute default="${debug.classpath}" name="classpath"/>
             <element name="customize" optional="true"/>
             <sequential>
-                <java classname="@{classname}" fork="true" jvm="${platform.java}">
+                <java classname="@{classname}" fork="true">
                     <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
                     <jvmarg line="${runmain.jvmargs}"/>
                     <classpath>
@@ -751,9 +730,6 @@
                     <classpath>
                         <path path="@{classpath}"/>
                     </classpath>
-                    <bootclasspath>
-                        <path path="${platform.bootcp}"/>
-                    </bootclasspath>
                 </nbjpdastart>
             </sequential>
         </macrodef>
@@ -774,9 +750,7 @@
         </macrodef>
     </target>
     <target name="-init-debug-args">
-        <exec executable="${platform.java}" outputproperty="version-output">
-            <arg value="-version"/>
-        </exec>
+        <property name="version-output" value="java version &quot;${ant.java.version}"/>
         <condition property="have-jdk-older-than-1.4">
             <or>
                 <contains string="${version-output}" substring="java version &quot;1.0"/>
@@ -802,7 +776,7 @@
             <attribute default="${application.args.param}" name="args"/>
             <element name="customize" optional="true"/>
             <sequential>
-                <java classname="@{classname}" fork="true" jvm="${platform.java}">
+                <java classname="@{classname}" fork="true">
                     <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
                     <jvmarg line="${debug-args-line}"/>
                     <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
@@ -1032,16 +1006,16 @@
     </target>
     <target depends="init,compile,compile-jsps,-pre-dist,-do-dist-with-manifest,-do-dist-without-manifest" name="do-dist"/>
     <target depends="init" if="dist.ear.dir" name="library-inclusion-in-manifest">
-        <copyfiles files="${libs.CSIP-Jersey-2.16.classpath}" iftldtodir="${build.web.dir}/WEB-INF" todir="${dist.ear.dir}/lib"/>
+        <copyfiles files="${libs.PostgreSQLDriver.classpath}" iftldtodir="${build.web.dir}/WEB-INF" todir="${dist.ear.dir}/lib"/>
+        <copyfiles files="${libs.csip-jersey.classpath}" iftldtodir="${build.web.dir}/WEB-INF" todir="${dist.ear.dir}/lib"/>
         <copyfiles files="${reference.csip-core.jar}" iftldtodir="${build.web.dir}/WEB-INF" todir="${dist.ear.dir}/lib"/>
-        <copyfiles files="${libs.PostgreSQLDriver.classpath}" iftldtodir="${build.web.dir}/WEB-INF" todir="${dist.ear.dir}/lib"/>
         <mkdir dir="${build.web.dir}/META-INF"/>
         <manifest file="${build.web.dir}/META-INF/MANIFEST.MF" mode="update"/>
     </target>
     <target depends="init" name="library-inclusion-in-archive" unless="dist.ear.dir">
-        <copyfiles files="${libs.CSIP-Jersey-2.16.classpath}" todir="${build.web.dir}/WEB-INF/lib"/>
+        <copyfiles files="${libs.PostgreSQLDriver.classpath}" todir="${build.web.dir}/WEB-INF/lib"/>
+        <copyfiles files="${libs.csip-jersey.classpath}" todir="${build.web.dir}/WEB-INF/lib"/>
         <copyfiles files="${reference.csip-core.jar}" todir="${build.web.dir}/WEB-INF/lib"/>
-        <copyfiles files="${libs.PostgreSQLDriver.classpath}" todir="${build.web.dir}/WEB-INF/lib"/>
     </target>
     <target depends="init" if="dist.ear.dir" name="-clean-webinf-lib">
         <delete dir="${build.web.dir}/WEB-INF/lib"/>
@@ -1207,9 +1181,6 @@
             <sourcepath>
                 <path path="${web.docbase.dir}"/>
             </sourcepath>
-            <bootclasspath>
-                <path path="${platform.bootcp}"/>
-            </bootclasspath>
         </nbjpdaconnect>
     </target>
     <target if="do.display.browser.debug.old" name="debug-display-browser-old">
@@ -1332,7 +1303,7 @@
             -->
     <target depends="init" if="have.sources" name="javadoc-build">
         <mkdir dir="${dist.javadoc.dir}"/>
-        <javadoc additionalparam="${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" executable="${platform.javadoc}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}">
+        <javadoc additionalparam="${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}">
             <classpath>
                 <path path="${javac.classpath}:${j2ee.platform.classpath}"/>
             </classpath>

nbproject/genfiles.properties

@@ -3,8 +3,8 @@
 build.xml.stylesheet.CRC32=651128d4@1.65.1.1
 # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
 # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
-nbproject/build-impl.xml.data.CRC32=2ecdb2c8
-nbproject/build-impl.xml.script.CRC32=b2871c30
+nbproject/build-impl.xml.data.CRC32=7993dde3
+nbproject/build-impl.xml.script.CRC32=174605a6
 nbproject/build-impl.xml.stylesheet.CRC32=99ea4b56@1.68.1.1
 nbproject/rest-build.xml.data.CRC32=bff4a8fe
 nbproject/rest-build.xml.script.CRC32=4734534b

nbproject/project.properties

@@ -42,8 +42,8 @@
 j2ee.server.type=Tomcat
 jar.compress=false
 javac.classpath=\
-    ${libs.CSIP-Jersey-2.16.classpath}:\
     ${libs.PostgreSQLDriver.classpath}:\
+    ${libs.csip-jersey.classpath}:\
     ${reference.csip-core.jar}
 # Space-separated list of extra javac options
 javac.compilerargs=
@@ -51,8 +51,8 @@
 javac.deprecation=false
 javac.processorpath=\
     ${javac.classpath}
-javac.source=1.7
-javac.target=1.7
+javac.source=1.8
+javac.target=1.8
 javac.test.classpath=\
     ${javac.classpath}:\
     ${build.classes.dir}:\
@@ -73,8 +73,8 @@
 javadoc.windowtitle=
 lib.dir=${web.docbase.dir}/WEB-INF/lib
 persistence.xml.dir=${conf.dir}
-platform.active=JDK_1.7
-project.csip-core=../csip
+platform.active=default_platform
+project.csip-core=../csip-core
 reference.csip-core.jar=${project.csip-core}/dist/csip-core.jar
 resource.dir=setup
 rest.config.type=ide

nbproject/project.xml

@@ -10,14 +10,13 @@
         <data xmlns="http://www.netbeans.org/ns/web-project/3">
             <name>csip-wqm</name>
             <minimum-ant-version>1.6.5</minimum-ant-version>
-            <explicit-platform explicit-source-supported="true"/>
             <web-module-libraries>
                 <library dirs="200">
-                    <file>${libs.CSIP-Jersey-2.16.classpath}</file>
+                    <file>${libs.PostgreSQLDriver.classpath}</file>
                     <path-in-war>WEB-INF/lib</path-in-war>
                 </library>
                 <library dirs="200">
-                    <file>${libs.PostgreSQLDriver.classpath}</file>
+                    <file>${libs.csip-jersey.classpath}</file>
                     <path-in-war>WEB-INF/lib</path-in-war>
                 </library>
                 <library dirs="200">

src/java/m/wqm/ApplicationConfig.java

@@ -37,6 +37,7 @@
         resources.add(csip.QueryService.class);
         resources.add(csip.ReportService.class);
         resources.add(m.wqm.NutrientSLP.V1_0.class);
+        resources.add(m.wqm.nutappmgtscores.V1_0.class);
         resources.add(m.wqm.nuttechscores.V1_0.class);
         resources.add(m.wqm.pesthazrating.V1_0.class);
         resources.add(m.wqm.pesticide.attributes.V1_0.class);
@@ -46,9 +47,11 @@
         resources.add(m.wqm.pestlosspot.V1_0.class);
         resources.add(m.wqm.pestpractscores.V1_0.class);
         resources.add(m.wqm.pesttechnscores.V1_0.class);
+        resources.add(m.wqm.scorebar.V1_0.class);
         resources.add(m.wqm.scpestslp.V1_0.class);
         resources.add(m.wqm.scsednutsrp.V1_0.class);
         resources.add(m.wqm.sednutpractscores.V1_0.class);
+        resources.add(m.wqm.soilpestlosspot.V1_0.class);
         resources.add(m.wqm.thresholdscores.V1_0.class);
     }
 }

src/java/m/wqm/nutappmgtscores/V1_0.json

@@ -1,127 +1,193 @@
 {
- "metainfo": {
- },
- "parameter": [
-  {
-   "name": "soilcomponents",
-   "value": [
-    [
-     {
-      "name": "AoAId",
-      "value": 1,
-      "Description":"Areo Of Analysis Identifier"
-      
-     },
-     {
-      "name": "mgt_crop_id",
-      "value":121,
-      "Description":"one or more in the request, Crop Identifier,"
-     },
-     {
-      "name": "from_lmod",
-      "value": false,
-      "Description":"LMOD Source Indicator, True means the source of the mgt_crop_id is from LMOD"
-     },
-     {
-      "name": "crop_plant_date",
-      "value": "2015-09-10",
-      "Description":"crop_plant_date … date (yyyy-mm-dd), Crop Planting Date (Year-Month-Day), null if fallow “crop” period"
-     },
-     {
-      "name": "crop_yield",
-      "value": 65,
-      "Description":"Crop Yield, null if fallow “crop” period"
-     },
-     {
-      "name": "crop_yield_units",
-      "value": "bu/ac",
-      "Description":"Crop Yield Units, accepted values are tons/ac, bu/ac, lbs/ac, or cwt; null if fallow “crop” period; units must match units for the crop in the wqm_crop table"
-     },
-     {
-      "name": "nutrient_application_date",
-      "value": "2015-09-20",
-      "Description":"nutrient_application_date … date (yyyy-mm-dd), none to many associated to crop (can be null), Nutrient Application Date (Year-Month-Day)"
-     },
-     {
-       "name":"incorporated",
-       "value":true,
-       "Description":"Nutrient Incorporated Into Soil"
-     },
-     {
-         "name":"nutrient_applied",
-         "value":"Nitrogen",
-         "Description":"one or two, Nutrient Applied, values are nitrogen or phosphorus"
-     },
-     {
-         "name":"application_rate",
-         "value":30,
-         "Description":"Nutrient Application Rate in Lbs/Ac"
-     },
-     {
-         "name":"p_soil_test_result",
-         "value":"Medium",
-         "Description":"Soil Test Result for Phosphorus, values are High, Medium, Low, None"
-     }
-    ],
-    [
-     {
-      "name": "AoAId",
-      "value": 1,
-      "Description":"Areo Of Analysis Identifier"
-      
-     },
-     {
-      "name": "mgt_crop_id",
-      "value":121,
-      "Description":"one or more in the request, Crop Identifier,"
-     },
-     {
-      "name": "from_lmod",
-      "value": false,
-      "Description":"LMOD Source Indicator, True means the source of the mgt_crop_id is from LMOD"
-     },
-     {
-      "name": "crop_plant_date",
-      "value": "2015-09-10",
-      "Description":"crop_plant_date … date (yyyy-mm-dd), Crop Planting Date (Year-Month-Day), null if fallow “crop” period"
-     },
-     {
-      "name": "crop_yield",
-      "value": 65,
-      "Description":"Crop Yield, null if fallow “crop” period"
-     },
-     {
-      "name": "crop_yield_units",
-      "value": "bu/ac",
-      "Description":"Crop Yield Units, accepted values are tons/ac, bu/ac, lbs/ac, or cwt; null if fallow “crop” period; units must match units for the crop in the wqm_crop table"
-     },
-     {
-      "name": "nutrient_application_date",
-      "value": "2015-09-20",
-      "Description":"nutrient_application_date … date (yyyy-mm-dd), none to many associated to crop (can be null), Nutrient Application Date (Year-Month-Day)"
-     },
-     {
-       "name":"incorporated",
-       "value":true,
-       "Description":"Nutrient Incorporated Into Soil"
-     },
-     {
-         "name":"nutrient_applied",
-         "value":"Nitrogen",
-         "Description":"one or two, Nutrient Applied, values are nitrogen or phosphorus"
-     },
-     {
-         "name":"application_rate",
-         "value":30,
-         "Description":"Nutrient Application Rate in Lbs/Ac"
-     },
-     {
-         "name":"p_soil_test_result",
-         "value":"Medium",
-         "Description":"Soil Test Result for Phosphorus, values are High, Medium, Low, None"
-     }
+    "metainfo": {
+    },
+    "parameter": [
+        {
+            "name": "aoa_id",
+            "description": "AoA Identifier",
+            "value": 1
+        },
+        {
+            "name": "p_soil_test_result",
+            "value": "Medium",
+            "Description": "Soil Test Result for Phosphorus, values are High, Medium, Low, None"
+        },
+        {
+            "name": "mgtCropIds",
+            "description": "List of mgt crop id",
+            "value": [
+                [
+                    {
+                        "name": "mgt_crop_id",
+                        "description": "Crop Identifier, a crop can be a fallow period",
+                        "value": 1
+                    },
+                    {
+                        "name": "from_lmod",
+                        "value": false,
+                        "Description": "LMOD Source Indicator, True means the source of the mgt_crop_id is from LMOD"
+                    },
+                    {
+                        "name": "crop_plant_date",
+                        "value": "2015-09-10",
+                        "Description": "Crop Planting Date (Year-Month-Day), null if fallow “crop” period"
+                    },
+                    {
+                        "name": "crop_yield",
+                        "value": 65,
+                        "Description": "Crop Yield, null if fallow “crop” period"
+                    },
+                    {
+                        "name": "crop_yield_units",
+                        "value": "bu/ac",
+                        "Description": "Crop Yield Units, accepted values are tons/ac, bu/ac, lbs/ac, or cwt; null if fallow “crop” period; units must match units for the crop in the wqm_crop table"
+                    },
+                    {
+                        "name": "applicationList",
+                        "value": [
+                            [
+                                {
+                                    "name": "nutrient_application_date",
+                                    "description": "Nutrient Application Date (Year-Month-Day)",
+                                    "value": "2015-09-20"
+                                },
+                                {
+                                    "name": "incorporated",
+                                    "value": true,
+                                    "Description": "Nutrient Incorporated Into Soil"
+                                },
+                                {
+                                    "name": "application",
+                                    "value": [
+                                        [
+                                            {
+                                                "name": "nutrient_applied",
+                                                "value": "Nitrogen",
+                                                "Description": "Nutrient Applied, values are nitrogen or phosphorus"
+                                            },
+                                            {
+                                                "name": "application_rate",
+                                                "value": 30,
+                                                "Description": "Nutrient Application Rate in Lbs/Ac"
+                                            }
+                                        ]
+                                    ]
+                                }
+                            ], [
+                                {
+                                    "name": "nutrient_application_date",
+                                    "description": "Nutrient Application Date (Year-Month-Day)",
+                                    "value": "2016-02-15"
+                                },
+                                {
+                                    "name": "incorporated",
+                                    "value": false,
+                                    "Description": "Nutrient Incorporated Into Soil"
+                                },
+                                {
+                                    "name": "application",
+                                    "value": [
+                                        [
+                                            {
+                                                "name": "nutrient_applied",
+                                                "value": "Nitrogen",
+                                                "Description": "Nutrient Applied, values are nitrogen or phosphorus"
+                                            },
+                                            {
+                                                "name": "application_rate",
+                                                "value": 20,
+                                                "Description": "Nutrient Application Rate in Lbs/Ac"
+                                            }
+                                        ], [
+                                            {
+                                                "name": "nutrient_applied",
+                                                "value": "Phosphorus",
+                                                "Description": "Nutrient Applied, values are nitrogen or phosphorus"
+                                            },
+                                            {
+                                                "name": "application_rate",
+                                                "value": 20,
+                                                "Description": "Nutrient Application Rate in Lbs/Ac"
+                                            }
+                                        ]
+                                    ]
+                                }
+                            ]
+                        ]
+                    }
+                ], [
+                    {
+                        "name": "mgt_crop_id",
+                        "description": "Crop Identifier, a crop can be a fallow period",
+                        "value": 89
+                    },
+                    {
+                        "name": "from_lmod",
+                        "value": false,
+                        "Description": "LMOD Source Indicator, True means the source of the mgt_crop_id is from LMOD"
+                    },
+                    {
+                        "name": "crop_plant_date",
+                        "value": "2017-05-25",
+                        "Description": "Crop Planting Date (Year-Month-Day), null if fallow “crop” period"
+                    },
+                    {
+                        "name": "crop_yield",
+                        "value": 50,
+                        "Description": "Crop Yield, null if fallow “crop” period"
+                    },
+                    {
+                        "name": "crop_yield_units",
+                        "value": "bu/ac",
+                        "Description": "Crop Yield Units, accepted values are tons/ac, bu/ac, lbs/ac, or cwt; null if fallow “crop” period; units must match units for the crop in the wqm_crop table"
+                    },
+                    {
+                        "name": "applicationList",
+                        "value": [
+                            [
+                                {
+                                    "name": "nutrient_application_date",
+                                    "description": "Nutrient Application Date (Year-Month-Day)",
+                                    "value": "2017-05-21"
+                                },
+                                {
+                                    "name": "incorporated",
+                                    "value": true,
+                                    "Description": "Nutrient Incorporated Into Soil"
+                                },
+                                {
+                                    "name": "application",
+                                    "value": [
+                                        [
+                                            {
+                                                "name": "nutrient_applied",
+                                                "value": "Nitrogen",
+                                                "Description": "Nutrient Applied, values are nitrogen or phosphorus"
+                                            },
+                                            {
+                                                "name": "application_rate",
+                                                "value": 40,
+                                                "Description": "Nutrient Application Rate in Lbs/Ac"
+                                            }
+                                        ], [
+                                            {
+                                                "name": "nutrient_applied",
+                                                "value": "Phosphorus",
+                                                "Description": "Nutrient Applied, values are nitrogen or phosphorus"
+                                            },
+                                            {
+                                                "name": "application_rate",
+                                                "value": 20,
+                                                "Description": "Nutrient Application Rate in Lbs/Ac"
+                                            }
+                                        ]
+                                    ]
+                                }
+                            ]
+                        ]
+                    }
+                ]
+            ]
+        }
     ]
-   ]
-  }
- ]
-}
+}
\ No newline at end of file