@blueprints: ordering > push field to end

When adding fields to blueprints, you can change there order. I have two questions regarding this.

  1. When adding fields to the content tab they will always appear behind the content editor and uploads field. This won’t work for the added field:
content:
  fields:
    content:
      label: Standard Content Editor            
    uploads:
      label: Page Media Files

   new_field:
     label: My New Field
     ordering@: 0 # will not be pushed to top
  1. I usually unset the content editor field for lots of pages and would like to have the uploads field appear at the end. So, I wonder if something like this is possible:
content:
  fields:
    content:
      label: Standard Content Editor
      unset@: true            
    uploads:
      ordering@: end # is it possible? 

   new_field:
     label: My New Field
     ordering@: 0 # will not be pushed to top
---