Please Update Coding API

It looks like none of the new features editor have been documented in the coding API.

For example, is the phoneme strength attribute available to the end user?

I’d hate to have to start rewriting the JSON files to get to the new attributes. :frowning:

「いいね!」 1

The phoneme strength attribute is available, attributes.strength
I found this by using following code.

function getFields(obj) {
    var result = [];
    for (var id in obj) {
        result.push(id + ": " + obj[id].toString());
    }
    return result;
}
「いいね!」 2