AnyOfPropertyDefinition
data class AnyOfPropertyDefinition(val anyOf: List<PropertyDefinition>, val description: String? = null) : PropertyDefinition(source)
Represents an anyOf schema composition.
Validates that the instance matches one or more of the provided schemas. Unlike oneOf, the instance can match multiple schemas simultaneously.