We've got this at the moment: ```xml <layers xmlns="http://www.springframework.org/schema/boot/layers" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/boot/layers layers-xsd: https://www.springframework.org/schema/boot/layers/layers-3.3.xsd"> ``` I think the `layers-xsd: ` is incorrect and it should be the following: ```xml <layers xmlns="http://www.springframework.org/schema/boot/layers" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/boot/layers https://www.springframework.org/schema/boot/layers/layers-3.3.xsd"> ``` This would then align with what we've [got in the 3.2 docs](https://docs.spring.io/spring-boot/docs/3.2.x/maven-plugin/reference/htmlsingle/#packaging.examples.custom-layers-configuration).