Sha256: c55ce652fac0967bf705022764b575709e37b73f5456b0a4de2cc483be36338e
Contents?: true
Size: 577 Bytes
Versions: 11
Compression:
Stored size: 577 Bytes
Contents
# frozen_string_literal: true require "openapi3_parser/node_factory/object" require "openapi3_parser/validation/input_validator" require "openapi3_parser/validators/url" module Openapi3Parser module NodeFactory class License < NodeFactory::Object allow_extensions field "name", input_type: String, required: true field "url", input_type: String, validate: Validation::InputValidator.new(Validators::Url) private def build_object(data, context) Node::License.new(data, context) end end end end
Version data entries
11 entries across 11 versions & 2 rubygems