Select with “custom post type” categories
array(
'id' => 'unique_option_512',
'type' => 'select',
'title' => 'Select Field for CPT Posts',
'options' => 'categories',
'query_args' => array(
'type' => 'movies',
'taxonomy' => 'movies_taxonomy',
'orderby' => 'post_date',
'order' => 'DESC',
),
'default_option' => 'Select a category',
),