GeoJson with object?

I noticed “GeoJSON Datasource” requires a url. If I have a javascript object that already is a GeoJSON like: {“type”:“FeatureCollection”, “features”:[…]}
How do I add this “GeoJSON” formatted object to the map as entites? Examples appear to all come from a specific URL.

If the is not possible, let me know.

This feature has always been available via the GeoJsonDataSouce.load method, which takes an object (unlike loadUrl). In Cesium 1.7, which was released earlier today, we simplified this further by having the load method be able to load both a url or object and we deprecated the loadUrl method. See the latest reference documentation for details: http://cesiumjs.org/Cesium/Build/Documentation/GeoJsonDataSource.html

Thanks Matt.