# File lib/json-schema/attributes/dependencies.rb, line 27
      def self.validate_dependency(schema, data, property, value, fragments, processor, attribute, options)
        return if data.key?(value.to_s)
        message = "The property '#{build_fragment(fragments)}' has a property '#{property}' that depends on a missing property '#{value}'"
        validation_error(processor, message, fragments, schema, attribute, options[:record_errors])
      end