can someone enlighten me why my LogicApps "Switch" unable to see "Type" value?
My parsing schema is working fine:
{
"properties" : {
"count" : {
"type" : "integer"
},
"next" : {},
"previous" : {},
"results" : {
"items" : {
"properties" : {
"content" : {
"type" : [
"string" ,
"null"
]
},
"description" : {
"type" : [
"string" ,
"null"
]
},
"id" : {
"type" : [
"integer" ,
"null"
]
},
"indicator" : {
"type" : [
"string" ,
"null"
]
},
"title" : {
"type" : [
"string" ,
"null"
]
},
"type" : {
"type" : [
"string"
]
}
},
"required" : [
"id" ,
"indicator" ,
"type" ,
"title" ,
"description" ,
"content"
],
"type" : "object"
},
"type" : "array"
}
},
"type" : "object"
}
The parsed result:
{
"results" : [
{
"id" : 302823502 ,
"indicator" : "103.85.24.121" ,
"type" : "IPv4" ,
"title" : null ,
"description" : null ,
"content" : ""
},
{
"id" : 770206482 ,
"indicator" : "103.78.242.62" ,
"type" : "IPv4" ,
"title" : null ,
"description" : null ,
"content" : ""
},
{
"id" : 1843551844 ,
"indicator" : "92.38.176.47" ,
"type" : "IPv4" ,
"title" : null ,
"description" : null ,
"content" : ""
},
{
"id" : 2285315518 ,
"indicator" : "149.28.16.63" ,
"type" : "IPv4" ,
"title" : null ,
"description" : "CC=JP ASN=AS20473 AS-CHOOPA" ,
"content" : ""
},