DynamicProperties: {
    type: "compound";
    value: {
        [key: string]: {
            type: "compound";
            value: { [key: string]: { type: unknown; value: any } };
        };
    };
}

The DynamicProperties schema.

The dynamic properties data of the add-ons that have been on the world. The property keys should be the add-ons' script module UUIDs.

Type declaration

  • type: "compound"
  • value: {
        [key: string]: {
            type: "compound";
            value: { [key: string]: { type: unknown; value: any } };
        };
    }