Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Fix CSV template - LocationTags name was missing quotation marks

...

Code Block
languagejson
{lb}
     "{h1}":"{f1}" , 
     "type" :"Feature"  ,
      "properties": {
               "{h2}":"{f2}",
               "{h3}":"{(f3)==""?"null":f3}",
               "{h4}":"{f4}",
               "{h5}":{(f5)==""?"null":f5},    
               "{h6}":{(f6)==""?"null":f6}   
},
 "locationTags":[ { 
                 "{h7}":"{f7}"    ,
                 "{h8}":"{(f8)==""?"null":f8}"   
    }]
 {rb}


Download the JSON and POST to the location batch save endpoint `rest/location/add?is_jurisdiction=true`. The body should be JSON array of locations

...