See: http://www.openarchives.org/OAI/openarchivesprotocol.html#Record
namespace declarations - the declarations of the namespaces used within the metadata part, each of which is prefixed with xmlns. Namespace declarations within the metadata part fall into two categories:

The recommended use of prefixes and namespaces is that these entities should be declared on the first element of that namespace. This prevents "operational difficulties", as described in http://www.w3.org/TR/REC-xml-names/#ns-using .

"Using prefixes may lead to operational difficulties in the case where the namespace declaration attribute is provided, not directly in the XML document entity, but via a default attribute declared in an external entity."

Example of the recommended use of prefixes and namespaces.

<OAI-PMH 
     xmlns="http://www.openarchives.org/OAI/2.0/" 
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
     xsi:schemaLocation=" 
[http://www.openarchives.org/OAI/2.0/] 
   [http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd]" 
> 
     <...> 
     <metadata> 
        <didl:DIDL 
          xmlns:didl="urn:mpeg:mpeg21:2002:02-DIDL-NS" 
          xmlns:dii="urn:mpeg:mpeg21:2002:01-DII-NS" 
          xmlns:dcterms="http://purl.org/dc/terms/" 
xsi:schemaLocation=" 
urn:mpeg:mpeg21:2002:02-DIDL-NS 
[http://standards.iso.org/.../didl.xsd] 
urn:mpeg:mpeg21:2002:01-DII-NS 
[http://standards.iso.org/.../dii.xsd]" 
     > 
          <...> 
     </didl:DIDL> 
   </metadata> 
   </...> 
<OAI-PMH>

Another argument is that for example a DIDL document is considered an autonomous entity that can exist outside a OAI record. When making a snippet from this DIDL document it should be valid according to a XML validator on its own. Thus does not need any namespace declaration texts that was left in the OAI-PMH xml.

According to the proclamation in the same document
(http://www.w3.org/TR/REC-xml-names/#ns-using), the DRIVER agreement will be that it is also possible to declare prefixes and namespaces in the ancestors of the document.
"The namespace prefix, unless it is xml or xmlns, MUST have been declared in a namespace declaration attribute in either the start-tag of the element where the prefix is used or in an ancestor element (i.e. an element in whose content the prefixed markup occurs)."

Example of the optional uses of prefixes and namespaces.

<OAI-PMH 
          xmlns="http://www.openarchives.org/OAI/2.0/" 
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
          xmlns:didl="urn:mpeg:mpeg21:2002:02-DIDL-NS" 
          xmlns:dii="urn:mpeg:mpeg21:2002:01-DII-NS" 
          xmlns:dcterms="http://purl.org/dc/terms/" 
          xsi:schemaLocation=" 
[http://www.openarchives.org/OAI/2.0/] 
     [http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd] 
urn:mpeg:mpeg21:2002:02-DIDL-NS 
[http://standards.iso.org/.../didl.xsd] 
urn:mpeg:mpeg21:2002:01-DII-NS [http://standards.iso.org/.../dii.xsd] 
" 
> 
     <...> 
     <metadata> 
          <didl:DIDL> 
          <...> 
     </didl:DIDL> 
   </metadata> 
   </...> 
<OAI-PMH>