Sha256: a288cdf13b7f51ba1f4c0b4a88d8394bbfec5d2f36ba8d15caa8ede1b6e2dece

Contents?: true

Size: 647 Bytes

Versions: 1

Compression:

Stored size: 647 Bytes

Contents

require 'mida_vocabulary/vocabulary'

module Mida
  module SchemaOrg

    autoload :Action, 'mida_vocabulary/vocabularies/schemaorg/action'
    autoload :Thing, 'mida_vocabulary/vocabularies/schemaorg/thing'

    # The act of planning the execution of an event/task/action/reservation/plan to a future date.
    class PlanAction < Mida::Vocabulary
      itemtype %r{http://schema.org/PlanAction}i
      include_vocabulary Mida::SchemaOrg::Action
      include_vocabulary Mida::SchemaOrg::Thing

      # The time the object is scheduled to.
      has_many 'scheduledTime' do
        extract Mida::DataType::ISO8601Date
      end
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mida_vocabulary-0.2.2 lib/mida_vocabulary/vocabularies/schemaorg/planaction.rb