Hi,
It's the field ID when you create the custom field.
$meta_boxes[] = array(
'title' => 'Personal Information',
'post_types' => 'post',
'fields' => array(
array(
'name' => 'Full name',
'desc' => 'Format: {First Name} {Last Name}',
'id' => 'prefix_name', // here is the field ID (meta key)
'type' => 'text',
),
)
);
Get more details here https://docs.metabox.io/field-settings/