Â
Â
I am new to using FME. The goal I am trying to achieve is to read in JSON data and write it to a File Geodatabase. I have watched the webinar:Â http://www.safe.com/webinar/fme-and-json/ and found it to be very helpful. I was even able to read in one JSON file and write it successfully to a Excel file.ÂÂ
Â
I am now using a different JSON file and I was trying to use the same steps as with the one before that worked but it's not working the same with this one.Â
Â
Here is a snapshot showing the translation that worked:Â
Â
Here is a snapshot showing the translation that is not working:Â
Â
On the first one that works I was able to find in the log file the proper attribute names to use in the AttributeExposer but when i try doing the same with the one that doesn't work I can't seem to find anything in the log that shows the attribute names.Â
Â
Here is what the JSON looks like in the translation that is not working:Â
Â
{Â
  "Data" : {Â
   "crs" : {Â
     "properties" : {Â
      "name" : "urn:ogc:def:crs:EPSG::4326"Â
     },Â
     "type" : "name"Â
   },Â
   "features" : <Â
     {Â
      "geometry" : {Â
        "coordinates" : tÂ
         -113.971122645723,Â
         51.0556601452916Â
        ],Â
        "type" : "Point"Â
      },Â
      "id" : 0,Â
      "properties" : {Â
        "Address" : "1836 3 ST SE",Â
        "Community" : "FOREST",Â
        "CompletionDate" : "2010/12/22",Â
        "ExternalFilenum" : "BP2010-11111",Â
        "StickerNumber" : "10",Â
        "URL" : "#",Â
        "Ward" : "10"Â
      },Â
      "type" : "Feature"Â
     },Â
     {Â
      "geometry" : {Â
        "coordinates" :Â
         -114.041387596826,Â
         51.0365724925218Â
        ],Â
        "type" : "Point"Â
      },Â
      "id" : 1,Â
      "properties" : {Â
        "Address" : "4 8 ST NE",Â
        "Community" : "BRIDGESIDE",Â
        "CompletionDate" : "2006/12/09",Â
        "ExternalFilenum" : "BP2006-22222",Â
        "StickerNumber" : "5",Â
        "URL" : "#",Â
        "Ward" : "09"Â
      },Â
      "type" : "Feature"Â
     },Â
     {Â
      "geometry" : {Â
        "coordinates" : eÂ
         -114.00531425851,Â
         51.0513769479828Â
        ],Â
        "type" : "Point"Â
      },Â
      "id" : 2,Â
      "properties" : {Â
        "Address" : "1 LEN DR SE",Â
        "Community" : "END",Â
        "CompletionDate" : "2002/10/11",Â
        "ExternalFilenum" : "BP2002-33333",Â
        "StickerNumber" : "1",Â
        "URL" : "#",Â
        "Ward" : "09"Â
      },Â
      "type" : "Feature"Â
     },Â
     {Â
      "geometry" : {Â
        "coordinates" : tÂ
         -114.138878544584,Â
         50.9761875223377Â
        ],Â
        "type" : "Point"Â
      },Â
      "type" : "Feature"Â
     }Â
   ],Â
   "type" : "FeatureCollection"Â
  }Â
}Â
Â
Thanks for any help,Â
Chris