dogweather/schema-dot-org

View on GitHub
lib/schema_dot_org/place.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true


#
# Model the Schema.org `Thing > Place`.  See http://schema.org/Place
#
module SchemaDotOrg
  class Place < SchemaType
    validated_attr :address, type: String, presence: true
  end
end