static ExpressionColumn create(String expressionDefinition, JsonObject options) {
   return new ExpressionColumnImpl(
       expressionDefinition,
       null,
       options.get("label"),
       FormatterRegistry.getFormatter(options.getString("format")),
       null,
       options);
 }
 static ExpressionColumn create(JsonObject json) {
   return create(json.getString("expression"), json);
 }