We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ee69e6 commit b7d1505Copy full SHA for b7d1505
src/commonMain/kotlin/io/github/optimumcode/json/schema/internal/formats/IdnHostnameFormatValidator.kt
@@ -86,6 +86,10 @@ internal object IdnHostnameFormatValidator : AbstractStringFormatValidator() {
86
}
87
88
89
+ /**
90
+ * NOTE: many thanks to authors of [com.networknt:json-schema-validator](https://github.com/networknt/json-schema-validator) library.
91
+ * I used his [com.networknt.schema.utils.RFC5892] class as a reference when implementing these checks
92
+ */
93
@Suppress("detekt:ReturnCount")
94
private fun isValidLabel(
95
label: String,
0 commit comments