I'm building a custom behavior. Call it MyBehaviors.MySpecialBehavior.
But I need to get data that's stored locally in a JSON file called my-data.json.
How can I do this inside my behavior? I'm trying to import iron-ajax but I can't think of how to access its methods or properties.
<link rel="import" href="../../bower_components/polymer/polymer.html">
<link rel="import" href="../../bower_components/iron-ajax/iron-ajax.html">
<script>
  var MyBehaviors = MyBehaviors || {};
  MyBehaviors.MySpecialBehaviorImpl = {
    // Methods go here that rely on data at my-data.json
  };
  MyBehaviors.MySpecialBehavior = [
    MyBehaviors.MySpecialBehaviorImpl,
  ];
</script>
my-data.json
{
  "important": "data",
  "j": 5,
  "o": "N",
  "goes": "here"
}