About the manifest after packaging in the security boot

When I package the firmware with nrfutil v7.12.0 version, I pack with a command like this

nrfutil nrf5sdk-tools pkg generate --hw-version 52  --application app.bin --sd-req 0xA9 --key-file ./private.key --application-version-string "2.0.0"  app.zip

I got the right app.zip,manifest file 

{
    "manifest": {
        "application": {
            "bin_file": "app.bin",
            "dat_file": "app.dat"
        }
    }
}

My question is: In nrfutilV7.12.0, can I get the manifest file with the following content? 

{
    "manifest": {
        "application": {
            "bin_file": "application.bin",
            "dat_file": "application.dat",
            "init_packet_data": {
                "application_version": 4294967295,
                "device_revision": 65535,
                "device_type": 65535,
                "firmware_crc16": 4837,
                "softdevice_req": [
                    65534
                ]
            }
        }
    }
}

Related