Given the following XML file, what do the DOCTYPE, ENTITY, SYSTEM, &entity (reference?) represent?
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE root [
<!ENTITY entity SYSTEM "./entity.xml">
]>
<root>
<element attribute="value">
&entity;
<child>
<!-- some more nested -->
</child>
</element>
</root>