Component_CommandBlockComponent: {
    type: "compound";
    value: {
        CurrentTickCount: { type: "int"; value: number };
        Ticking: { type: "byte"; value: number };
    };
}

This component may be not accessable with Behavior Pack. But it is used by activated [Minecart with Command Block](https://minecraft.wiki/w/Minecart with Command Block)

Type declaration

  • type: "compound"
  • value: {
        CurrentTickCount: { type: "int"; value: number };
        Ticking: { type: "byte"; value: number };
    }
    • CurrentTickCount: { type: "int"; value: number }

      Number of ticks until it executes the command again.

    • Ticking: { type: "byte"; value: number }

      UNDOCUMENTED.