I have an object called jsonJobsOpen
and when I dump it the output shows the value for this Object as shown below.
[{
"APPLICATIONCOUNT":0,
"JOBNAME":"Candidate Migration Job ",
"JOBID":"15433AAE-8631-FA8B-AEA7-49E116EF60E1 ",
"JOBCLOSEDATE":" ",
"JOBSTATUSLABELVALUE":"Incomplete",
"ENCRYPTEDURLAPPCOUNT":"event=cms.listApplicantsPersistVars&JobID=15433AAE-8631-FA8B-AEA7-49E116EF60E1&JobAppStatusID=DCA85CD5-A134-7A4B-30E8-49E116F0D702",
"JOBOPENDATE":" ",
"APPLIEDAPPCOUNT":0,
"JOBSTATUSLABELCOLOUR":"D8605F",
"REFERENCE":"Candidate Migration Job ",
"ENCRYPTEDURL":"event=jm.gotoJCW&JobID=15433AAE-8631-FA8B-AEA7-49E116EF60E1",
"ENCRYPTEDURLCANDIDATEASSESSMENT":"event=jm.gotoJCW&JobID=15433AAE-8631-FA8B-AEA7-49E116EF60E1",
"ENCRYPTEDURLAPPLICANTLIST":"event=cms.listApplicantsPersistVars&JobID=15433AAE-8631-FA8B-AEA7-49E116EF60E1"
}]
If there is no value associated with Object then the dump looks like this:
[{
"JOBID":"",
"JOBOPENDATE":"",
"JOBCLOSEDATE":"",
"JOBNAME":"",
"REFERENCE":"",
"ENCRYPTEDURL":"",
"APPLICATIONCOUNT":"",
"ENCRYPTEDURLAPPLICANTLIST":"",
"ENCRYPTEDURLCANDIDATEASSESSMENT":"",
"JOBSTATUSLABELVALUE":"",
"JOBSTATUSLABELCOLOUR":"",
"APPLIEDAPPCOUNT":"",
"ENCRYPTEDURLAPPCOUNT":""
}]
My question here is what condition can I use to check if the value is there or not with this object in ColdFusion?