Description remove properties from Infobox

Hello,

I have a JSON file with all the data that I need. I would like after this to able to pull data from the Database. After putting a description of my entity it removes properties and others without descriptions are showing them as they should. What am I missing?

{

“type”: “FeatureCollection”,

“features”: [

{ “type”: “Feature”,

“geometry”: {“type”: “Point”,“coordinates”: [80.2066734649931, 13.0187039189613]}, “color”:{

“rgba”:[0,0,255,95]},

“properties”: {

“Name”: “Mika”,

“Age”: 17,

“Type”: “Policeman”,

“description”:“PICTURE:

}

},

{ “type”: “Feature”,

“geometry”: {“type”: “Point”,“coordinates”: [ 120.2072495864164, 34.0191043036246]},

“properties”: {

“Name”: “Zika”,

“Age”: “Worker”

}

},

{ “type”: “Feature”,

“geometry”: { “type”: “Point”,“coordinates”: [ 140.2067574402883, 84.0191983952581]},

“properties”: {

“Name”: “Pera”,

“Age”: 23,

“Type”: “Student”

}

}

]

}

I already made a form that users can fill with name, age, and image that will go to the Database and place a pin on the map.

I’m using Cesium 1.58.1 on Windows 10

I think the problem here is that “description” is a Simple Style identifier (see https://github.com/mapbox/simplestyle-spec/tree/master/1.0.0) so it overrides the other properties you have.

Here’s a Sandcastle where I changed it to an uppercase “Description” to get around that. You should be able to see all the properties now. Hope that helps!