Also bei mir klappt auch das folgende Statement:
Code:
Select *
  from JSON_TABLE('{ "numeric": { "value.common.machine.hours.operation.total": 
                                    { "time": 1584353295000, "value": 1019.1 }}}', 
           'lax $'
           Columns(BH_Zeit   Decimal(13, 0) path 'lax $.numeric."value.common.machine.hours.operation.total".time',
                   BH_Gesamt Decimal(11, 2) path 'lax $.numeric."value.common.machine.hours.operation.total".value')) x;
Was mir bei Deinem Beispiel auffällt, du hast zumindest bei BH_Gesamt einen Punkt nach dem ersten Anfürhrungszeichen zuviel.

Birgitta