Sha256: b079ba06112ad53c395e9d59af0d707cf1a6dc923c300490964aa50e14a7f6b2

Contents?: true

Size: 509 Bytes

Versions: 3

Compression:

Stored size: 509 Bytes

Contents

# frozen_string_literal: true

module Yori
  module Schema
    module V3
      # Contact: Contact information for the exposed API.
      # @name: The identifying name of the contact person/organization.
      # @url: The URL pointing to the contact information. MUST be in the format of a URL.
      # @email: The email address of the contact person/organization. MUST be in the format of an email address.
      class Contact < Yori::SchemaBase
        fields :name, :url, :email
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
yori-0.1.2 lib/yori/schema/v3/contact.rb
yori-0.1.1 lib/yori/schema/v3/contact.rb
yori-0.1.0 lib/yori/schema/v3/contact.rb