After updating to Xcode 15 beta 7, I got a VersionedSchema error saying that

1
does not conform to protocol 'VersionedSchema'

Previously, the variable versionIdentifier was of the type String.

1
static var versionIdentifier: String = "v1"

On the latest Xcode 15 beta 7, versionIdentifier is now of the type Schema.Version.

1
static var versionIdentifier: Schema.Version = Schema.Version(1, 0, 0)