JsonConfigFileNamePattern
@Pattern(value = "^[a-zA-Z0-9_-]+\.(json)$")
@Target(allowedTargets = [AnnotationTarget.CLASS, AnnotationTarget.TYPE, AnnotationTarget.TYPE_PARAMETER] )
Annotation to specify that a file name must follow a JSON configuration file name pattern. The file name must match the regular expression: ^[a-zA-Z0-9_-]+\\.(json)$
.