Create general media library that is not under "site"

Hi,

We are creating a general media library.

Right now, this general library lives in the “Site” folder.
Here is the code in the site blueprint:

sections:
  content:
    type: fields
    fields:
      text:
        label: Text
        type: textarea
        size: large
      downloads:
          label: Downloads
          type: files

And in our sub pages, we allow users to to either select files from this library or upload a new file to it.
Here is the “article” blueprint:

  content:
    type: fields
    fields:
      files:
        parent: site
        type: files
        headline: Files
        min: 0
        max: 2
        uploads: 
          parent: site

Is it possible to create a media library that isn’t under “site”? For example, can we create another folder called “library” and use it instead?

Thank you!

Yes, of course. I’ve done that in a project as well.