microdata_schema 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/microdata.rb +4 -0
- data/lib/microdata/schema.rb +121 -0
- data/lib/microdata/schema/data_type/boolean.rb +10 -0
- data/lib/microdata/schema/data_type/boolean/false.rb +6 -0
- data/lib/microdata/schema/data_type/boolean/true.rb +6 -0
- data/lib/microdata/schema/data_type/date.rb +10 -0
- data/lib/microdata/schema/data_type/date_time.rb +10 -0
- data/lib/microdata/schema/data_type/number.rb +6 -0
- data/lib/microdata/schema/data_type/number/float.rb +6 -0
- data/lib/microdata/schema/data_type/number/integer.rb +6 -0
- data/lib/microdata/schema/data_type/text.rb +6 -0
- data/lib/microdata/schema/data_type/text/url.rb +6 -0
- data/lib/microdata/schema/data_type/time.rb +6 -0
- data/lib/microdata/schema/list.rb +9 -0
- data/lib/microdata/schema/thing.rb +98 -0
- data/lib/microdata/schema/thing/action.rb +49 -0
- data/lib/microdata/schema/thing/action/achieve_action.rb +7 -0
- data/lib/microdata/schema/thing/action/achieve_action/lose_action.rb +12 -0
- data/lib/microdata/schema/thing/action/achieve_action/tie_action.rb +7 -0
- data/lib/microdata/schema/thing/action/achieve_action/win_action.rb +12 -0
- data/lib/microdata/schema/thing/action/assess_action.rb +7 -0
- data/lib/microdata/schema/thing/action/assess_action/choose_action.rb +13 -0
- data/lib/microdata/schema/thing/action/assess_action/choose_action/vote_action.rb +12 -0
- data/lib/microdata/schema/thing/action/assess_action/ignore_action.rb +7 -0
- data/lib/microdata/schema/thing/action/assess_action/react_action.rb +7 -0
- data/lib/microdata/schema/thing/action/assess_action/react_action/agree_action.rb +7 -0
- data/lib/microdata/schema/thing/action/assess_action/react_action/disagree_action.rb +7 -0
- data/lib/microdata/schema/thing/action/assess_action/react_action/dislike_action.rb +7 -0
- data/lib/microdata/schema/thing/action/assess_action/react_action/endorse_action.rb +14 -0
- data/lib/microdata/schema/thing/action/assess_action/react_action/like_action.rb +7 -0
- data/lib/microdata/schema/thing/action/assess_action/react_action/want_action.rb +7 -0
- data/lib/microdata/schema/thing/action/assess_action/review_action.rb +12 -0
- data/lib/microdata/schema/thing/action/consume_action.rb +12 -0
- data/lib/microdata/schema/thing/action/consume_action/drink_action.rb +7 -0
- data/lib/microdata/schema/thing/action/consume_action/eat_action.rb +7 -0
- data/lib/microdata/schema/thing/action/consume_action/install_action.rb +7 -0
- data/lib/microdata/schema/thing/action/consume_action/listen_action.rb +7 -0
- data/lib/microdata/schema/thing/action/consume_action/read_action.rb +7 -0
- data/lib/microdata/schema/thing/action/consume_action/use_action.rb +7 -0
- data/lib/microdata/schema/thing/action/consume_action/use_action/wear_action.rb +7 -0
- data/lib/microdata/schema/thing/action/consume_action/view_action.rb +7 -0
- data/lib/microdata/schema/thing/action/consume_action/watch_action.rb +7 -0
- data/lib/microdata/schema/thing/action/control_action.rb +7 -0
- data/lib/microdata/schema/thing/action/control_action/activate_action.rb +7 -0
- data/lib/microdata/schema/thing/action/control_action/deactivate_action.rb +7 -0
- data/lib/microdata/schema/thing/action/control_action/resume_action.rb +7 -0
- data/lib/microdata/schema/thing/action/control_action/suspend_action.rb +7 -0
- data/lib/microdata/schema/thing/action/create_action.rb +7 -0
- data/lib/microdata/schema/thing/action/create_action/cook_action.rb +19 -0
- data/lib/microdata/schema/thing/action/create_action/draw_action.rb +7 -0
- data/lib/microdata/schema/thing/action/create_action/film_action.rb +7 -0
- data/lib/microdata/schema/thing/action/create_action/paint_action.rb +7 -0
- data/lib/microdata/schema/thing/action/create_action/photograph_action.rb +7 -0
- data/lib/microdata/schema/thing/action/create_action/write_action.rb +13 -0
- data/lib/microdata/schema/thing/action/find_action.rb +7 -0
- data/lib/microdata/schema/thing/action/find_action/check_action.rb +7 -0
- data/lib/microdata/schema/thing/action/find_action/discover_action.rb +7 -0
- data/lib/microdata/schema/thing/action/find_action/track_action.rb +12 -0
- data/lib/microdata/schema/thing/action/interact_action.rb +7 -0
- data/lib/microdata/schema/thing/action/interact_action/befriend_action.rb +7 -0
- data/lib/microdata/schema/thing/action/interact_action/communicate_action.rb +18 -0
- data/lib/microdata/schema/thing/action/interact_action/communicate_action/ask_action.rb +12 -0
- data/lib/microdata/schema/thing/action/interact_action/communicate_action/check_in_action.rb +7 -0
- data/lib/microdata/schema/thing/action/interact_action/communicate_action/check_out_action.rb +7 -0
- data/lib/microdata/schema/thing/action/interact_action/communicate_action/comment_action.rb +12 -0
- data/lib/microdata/schema/thing/action/interact_action/communicate_action/inform_action.rb +12 -0
- data/lib/microdata/schema/thing/action/interact_action/communicate_action/inform_action/confirm_action.rb +7 -0
- data/lib/microdata/schema/thing/action/interact_action/communicate_action/inform_action/rsvp_action.rb +18 -0
- data/lib/microdata/schema/thing/action/interact_action/communicate_action/invite_action.rb +12 -0
- data/lib/microdata/schema/thing/action/interact_action/communicate_action/reply_action.rb +12 -0
- data/lib/microdata/schema/thing/action/interact_action/communicate_action/share_action.rb +7 -0
- data/lib/microdata/schema/thing/action/interact_action/follow_action.rb +13 -0
- data/lib/microdata/schema/thing/action/interact_action/join_action.rb +12 -0
- data/lib/microdata/schema/thing/action/interact_action/leave_action.rb +12 -0
- data/lib/microdata/schema/thing/action/interact_action/marry_action.rb +7 -0
- data/lib/microdata/schema/thing/action/interact_action/register_action.rb +7 -0
- data/lib/microdata/schema/thing/action/interact_action/subscribe_action.rb +7 -0
- data/lib/microdata/schema/thing/action/interact_action/un_register_action.rb +7 -0
- data/lib/microdata/schema/thing/action/move_action.rb +15 -0
- data/lib/microdata/schema/thing/action/move_action/arrive_action.rb +7 -0
- data/lib/microdata/schema/thing/action/move_action/depart_action.rb +7 -0
- data/lib/microdata/schema/thing/action/move_action/travel_action.rb +12 -0
- data/lib/microdata/schema/thing/action/organize_action.rb +7 -0
- data/lib/microdata/schema/thing/action/organize_action/allocate_action.rb +7 -0
- data/lib/microdata/schema/thing/action/organize_action/allocate_action/accept_action.rb +7 -0
- data/lib/microdata/schema/thing/action/organize_action/allocate_action/assign_action.rb +7 -0
- data/lib/microdata/schema/thing/action/organize_action/allocate_action/authorize_action.rb +14 -0
- data/lib/microdata/schema/thing/action/organize_action/allocate_action/reject_action.rb +7 -0
- data/lib/microdata/schema/thing/action/organize_action/apply_action.rb +7 -0
- data/lib/microdata/schema/thing/action/organize_action/bookmark_action.rb +7 -0
- data/lib/microdata/schema/thing/action/organize_action/plan_action.rb +12 -0
- data/lib/microdata/schema/thing/action/organize_action/plan_action/cancel_action.rb +7 -0
- data/lib/microdata/schema/thing/action/organize_action/plan_action/reserve_action.rb +7 -0
- data/lib/microdata/schema/thing/action/organize_action/plan_action/schedule_action.rb +7 -0
- data/lib/microdata/schema/thing/action/play_action.rb +15 -0
- data/lib/microdata/schema/thing/creative_work.rb +270 -0
- data/lib/microdata/schema/thing/creative_work/article.rb +29 -0
- data/lib/microdata/schema/thing/creative_work/article/tech_article.rb +15 -0
- data/lib/microdata/schema/thing/creative_work/software_source_code.rb +25 -0
- data/lib/microdata/schema/thing/creative_work/web_page.rb +35 -0
- data/lib/microdata/schema/thing/creative_work/web_page/about_page.rb +7 -0
- data/lib/microdata/schema/thing/creative_work/web_page/profile_page.rb +7 -0
- data/lib/microdata/schema/thing/creative_work/web_site.rb +7 -0
- data/lib/microdata/schema/thing/event.rb +171 -0
- data/lib/microdata/schema/thing/intangible.rb +7 -0
- data/lib/microdata/schema/thing/intangible/item_list.rb +23 -0
- data/lib/microdata/schema/thing/intangible/item_list/breadcrumb_list.rb +7 -0
- data/lib/microdata/schema/thing/intangible/list_item.rb +22 -0
- data/lib/microdata/schema/thing/organization.rb +150 -0
- data/lib/microdata/schema/thing/person.rb +175 -0
- data/lib/microdata/schema/thing/place.rb +84 -0
- data/lib/microdata/schema/thing/product.rb +117 -0
- data/lib/microdata_schema.rb +5 -0
- data/lib/microdata_schema/version.rb +3 -0
- data/microdata_schema.gemspec +26 -0
- metadata +195 -0
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
module Microdata
|
|
2
|
+
class Schema
|
|
3
|
+
class Product < Thing
|
|
4
|
+
ATTRIBUTES = [
|
|
5
|
+
:additional_property,
|
|
6
|
+
:aggregate_rating,
|
|
7
|
+
:audience,
|
|
8
|
+
:award,
|
|
9
|
+
:brand,
|
|
10
|
+
:category,
|
|
11
|
+
:color,
|
|
12
|
+
:depth,
|
|
13
|
+
:gtin12,
|
|
14
|
+
:gtin13,
|
|
15
|
+
:gtin14,
|
|
16
|
+
:gtin8,
|
|
17
|
+
:height,
|
|
18
|
+
:is_accessory_or_spare_part_for,
|
|
19
|
+
:is_consumable_for,
|
|
20
|
+
:is_related_to,
|
|
21
|
+
:is_similar_to,
|
|
22
|
+
:item_condition,
|
|
23
|
+
:logo,
|
|
24
|
+
:manufacturer,
|
|
25
|
+
:material,
|
|
26
|
+
:model,
|
|
27
|
+
:mpn,
|
|
28
|
+
:offers,
|
|
29
|
+
:product_ID,
|
|
30
|
+
:production_date,
|
|
31
|
+
:purchase_date,
|
|
32
|
+
:release_date,
|
|
33
|
+
:review,
|
|
34
|
+
:sku,
|
|
35
|
+
:weight,
|
|
36
|
+
:width,
|
|
37
|
+
].freeze
|
|
38
|
+
self.attributes = attributes + ATTRIBUTES
|
|
39
|
+
# - additional_property
|
|
40
|
+
# PropertyValue A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.
|
|
41
|
+
# Note: Publishers should be aware that applications designed to use specific schema.org properties (e.g. http://schema.org/width, http://schema.org/color, http://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.
|
|
42
|
+
# - aggregate_rating
|
|
43
|
+
# AggregateRating The overall rating, based on a collection of reviews or ratings, of the item.
|
|
44
|
+
# - audience
|
|
45
|
+
# Audience An intended audience, i.e. a group for whom something was created. Supersedes serviceAudience.
|
|
46
|
+
# - award
|
|
47
|
+
# Text An award won by or for this item. Supersedes awards.
|
|
48
|
+
# - brand
|
|
49
|
+
# Brand or
|
|
50
|
+
# Organization The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.
|
|
51
|
+
# - category
|
|
52
|
+
# Text or
|
|
53
|
+
# Thing A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.
|
|
54
|
+
# - color
|
|
55
|
+
# Text The color of the product.
|
|
56
|
+
# - depth
|
|
57
|
+
# Distance or
|
|
58
|
+
# QuantitativeValue The depth of the item.
|
|
59
|
+
# - gtin12
|
|
60
|
+
# Text The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See GS1 GTIN Summary for more details.
|
|
61
|
+
# - gtin13
|
|
62
|
+
# Text The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceeding zero. See GS1 GTIN Summary for more details.
|
|
63
|
+
# - gtin14
|
|
64
|
+
# Text The GTIN-14 code of the product, or the product to which the offer refers. See GS1 GTIN Summary for more details.
|
|
65
|
+
# - gtin8
|
|
66
|
+
# Text The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See GS1 GTIN Summary for more details.
|
|
67
|
+
# - height
|
|
68
|
+
# Distance or
|
|
69
|
+
# QuantitativeValue The height of the item.
|
|
70
|
+
# - is_accessory_or_spare_part_for
|
|
71
|
+
# Product A pointer to another product (or multiple products) for which this product is an accessory or spare part.
|
|
72
|
+
# - is_consumable_for
|
|
73
|
+
# Product A pointer to another product (or multiple products) for which this product is a consumable.
|
|
74
|
+
# - is_related_to
|
|
75
|
+
# Product or
|
|
76
|
+
# Service A pointer to another, somehow related product (or multiple products).
|
|
77
|
+
# - is_similar_to
|
|
78
|
+
# Product or
|
|
79
|
+
# Service A pointer to another, functionally similar product (or multiple products).
|
|
80
|
+
# - item_condition
|
|
81
|
+
# OfferItemCondition A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.
|
|
82
|
+
# - logo
|
|
83
|
+
# ImageObject or
|
|
84
|
+
# URL An associated logo.
|
|
85
|
+
# - manufacturer
|
|
86
|
+
# Organization The manufacturer of the product.
|
|
87
|
+
# - material
|
|
88
|
+
# Product or
|
|
89
|
+
# Text or
|
|
90
|
+
# URL A material that something is made from, e.g. leather, wool, cotton, paper.
|
|
91
|
+
# - model
|
|
92
|
+
# ProductModel or
|
|
93
|
+
# Text The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties.
|
|
94
|
+
# - mpn
|
|
95
|
+
# Text The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.
|
|
96
|
+
# - offers
|
|
97
|
+
# Offer An offer to provide this item—for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event.
|
|
98
|
+
# - product_ID
|
|
99
|
+
# Text The product identifier, such as ISBN. For example: meta itemprop="productID" content="isbn:123-456-789".
|
|
100
|
+
# - production_date
|
|
101
|
+
# Date The date of production of the item, e.g. vehicle.
|
|
102
|
+
# - purchase_date
|
|
103
|
+
# Date The date the item e.g. vehicle was purchased by the current owner.
|
|
104
|
+
# - release_date
|
|
105
|
+
# Date The release date of a product or product model. This can be used to distinguish the exact variant of a product.
|
|
106
|
+
# - review
|
|
107
|
+
# Review A review of the item. Supersedes reviews.
|
|
108
|
+
# - sku
|
|
109
|
+
# Text The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.
|
|
110
|
+
# - weight
|
|
111
|
+
# QuantitativeValue The weight of the product or person.
|
|
112
|
+
# - width
|
|
113
|
+
# Distance or
|
|
114
|
+
# QuantitativeValue The width of the item.
|
|
115
|
+
end
|
|
116
|
+
end
|
|
117
|
+
end
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require "microdata_schema/version"
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "microdata_schema"
|
|
8
|
+
spec.version = MicrodataSchema::VERSION
|
|
9
|
+
spec.authors = ["booink"]
|
|
10
|
+
spec.email = ["booink.work@gmail.com"]
|
|
11
|
+
|
|
12
|
+
spec.summary = "microdata json-ld generator"
|
|
13
|
+
spec.description = spec.summary
|
|
14
|
+
#spec.homepage = "TODO: Put your gem's website or public repo URL here."
|
|
15
|
+
spec.license = "MIT"
|
|
16
|
+
|
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
18
|
+
f.match(%r{^(test|spec|features)/})
|
|
19
|
+
end
|
|
20
|
+
spec.bindir = "exe"
|
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
22
|
+
spec.require_paths = ["lib"]
|
|
23
|
+
|
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.15"
|
|
25
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
26
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: microdata_schema
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- booink
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2018-04-28 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bundler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.15'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.15'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '10.0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '10.0'
|
|
41
|
+
description: microdata json-ld generator
|
|
42
|
+
email:
|
|
43
|
+
- booink.work@gmail.com
|
|
44
|
+
executables: []
|
|
45
|
+
extensions: []
|
|
46
|
+
extra_rdoc_files: []
|
|
47
|
+
files:
|
|
48
|
+
- ".gitignore"
|
|
49
|
+
- CODE_OF_CONDUCT.md
|
|
50
|
+
- Gemfile
|
|
51
|
+
- LICENSE.txt
|
|
52
|
+
- README.md
|
|
53
|
+
- Rakefile
|
|
54
|
+
- bin/console
|
|
55
|
+
- bin/setup
|
|
56
|
+
- lib/microdata.rb
|
|
57
|
+
- lib/microdata/schema.rb
|
|
58
|
+
- lib/microdata/schema/data_type/boolean.rb
|
|
59
|
+
- lib/microdata/schema/data_type/boolean/false.rb
|
|
60
|
+
- lib/microdata/schema/data_type/boolean/true.rb
|
|
61
|
+
- lib/microdata/schema/data_type/date.rb
|
|
62
|
+
- lib/microdata/schema/data_type/date_time.rb
|
|
63
|
+
- lib/microdata/schema/data_type/number.rb
|
|
64
|
+
- lib/microdata/schema/data_type/number/float.rb
|
|
65
|
+
- lib/microdata/schema/data_type/number/integer.rb
|
|
66
|
+
- lib/microdata/schema/data_type/text.rb
|
|
67
|
+
- lib/microdata/schema/data_type/text/url.rb
|
|
68
|
+
- lib/microdata/schema/data_type/time.rb
|
|
69
|
+
- lib/microdata/schema/list.rb
|
|
70
|
+
- lib/microdata/schema/thing.rb
|
|
71
|
+
- lib/microdata/schema/thing/action.rb
|
|
72
|
+
- lib/microdata/schema/thing/action/achieve_action.rb
|
|
73
|
+
- lib/microdata/schema/thing/action/achieve_action/lose_action.rb
|
|
74
|
+
- lib/microdata/schema/thing/action/achieve_action/tie_action.rb
|
|
75
|
+
- lib/microdata/schema/thing/action/achieve_action/win_action.rb
|
|
76
|
+
- lib/microdata/schema/thing/action/assess_action.rb
|
|
77
|
+
- lib/microdata/schema/thing/action/assess_action/choose_action.rb
|
|
78
|
+
- lib/microdata/schema/thing/action/assess_action/choose_action/vote_action.rb
|
|
79
|
+
- lib/microdata/schema/thing/action/assess_action/ignore_action.rb
|
|
80
|
+
- lib/microdata/schema/thing/action/assess_action/react_action.rb
|
|
81
|
+
- lib/microdata/schema/thing/action/assess_action/react_action/agree_action.rb
|
|
82
|
+
- lib/microdata/schema/thing/action/assess_action/react_action/disagree_action.rb
|
|
83
|
+
- lib/microdata/schema/thing/action/assess_action/react_action/dislike_action.rb
|
|
84
|
+
- lib/microdata/schema/thing/action/assess_action/react_action/endorse_action.rb
|
|
85
|
+
- lib/microdata/schema/thing/action/assess_action/react_action/like_action.rb
|
|
86
|
+
- lib/microdata/schema/thing/action/assess_action/react_action/want_action.rb
|
|
87
|
+
- lib/microdata/schema/thing/action/assess_action/review_action.rb
|
|
88
|
+
- lib/microdata/schema/thing/action/consume_action.rb
|
|
89
|
+
- lib/microdata/schema/thing/action/consume_action/drink_action.rb
|
|
90
|
+
- lib/microdata/schema/thing/action/consume_action/eat_action.rb
|
|
91
|
+
- lib/microdata/schema/thing/action/consume_action/install_action.rb
|
|
92
|
+
- lib/microdata/schema/thing/action/consume_action/listen_action.rb
|
|
93
|
+
- lib/microdata/schema/thing/action/consume_action/read_action.rb
|
|
94
|
+
- lib/microdata/schema/thing/action/consume_action/use_action.rb
|
|
95
|
+
- lib/microdata/schema/thing/action/consume_action/use_action/wear_action.rb
|
|
96
|
+
- lib/microdata/schema/thing/action/consume_action/view_action.rb
|
|
97
|
+
- lib/microdata/schema/thing/action/consume_action/watch_action.rb
|
|
98
|
+
- lib/microdata/schema/thing/action/control_action.rb
|
|
99
|
+
- lib/microdata/schema/thing/action/control_action/activate_action.rb
|
|
100
|
+
- lib/microdata/schema/thing/action/control_action/deactivate_action.rb
|
|
101
|
+
- lib/microdata/schema/thing/action/control_action/resume_action.rb
|
|
102
|
+
- lib/microdata/schema/thing/action/control_action/suspend_action.rb
|
|
103
|
+
- lib/microdata/schema/thing/action/create_action.rb
|
|
104
|
+
- lib/microdata/schema/thing/action/create_action/cook_action.rb
|
|
105
|
+
- lib/microdata/schema/thing/action/create_action/draw_action.rb
|
|
106
|
+
- lib/microdata/schema/thing/action/create_action/film_action.rb
|
|
107
|
+
- lib/microdata/schema/thing/action/create_action/paint_action.rb
|
|
108
|
+
- lib/microdata/schema/thing/action/create_action/photograph_action.rb
|
|
109
|
+
- lib/microdata/schema/thing/action/create_action/write_action.rb
|
|
110
|
+
- lib/microdata/schema/thing/action/find_action.rb
|
|
111
|
+
- lib/microdata/schema/thing/action/find_action/check_action.rb
|
|
112
|
+
- lib/microdata/schema/thing/action/find_action/discover_action.rb
|
|
113
|
+
- lib/microdata/schema/thing/action/find_action/track_action.rb
|
|
114
|
+
- lib/microdata/schema/thing/action/interact_action.rb
|
|
115
|
+
- lib/microdata/schema/thing/action/interact_action/befriend_action.rb
|
|
116
|
+
- lib/microdata/schema/thing/action/interact_action/communicate_action.rb
|
|
117
|
+
- lib/microdata/schema/thing/action/interact_action/communicate_action/ask_action.rb
|
|
118
|
+
- lib/microdata/schema/thing/action/interact_action/communicate_action/check_in_action.rb
|
|
119
|
+
- lib/microdata/schema/thing/action/interact_action/communicate_action/check_out_action.rb
|
|
120
|
+
- lib/microdata/schema/thing/action/interact_action/communicate_action/comment_action.rb
|
|
121
|
+
- lib/microdata/schema/thing/action/interact_action/communicate_action/inform_action.rb
|
|
122
|
+
- lib/microdata/schema/thing/action/interact_action/communicate_action/inform_action/confirm_action.rb
|
|
123
|
+
- lib/microdata/schema/thing/action/interact_action/communicate_action/inform_action/rsvp_action.rb
|
|
124
|
+
- lib/microdata/schema/thing/action/interact_action/communicate_action/invite_action.rb
|
|
125
|
+
- lib/microdata/schema/thing/action/interact_action/communicate_action/reply_action.rb
|
|
126
|
+
- lib/microdata/schema/thing/action/interact_action/communicate_action/share_action.rb
|
|
127
|
+
- lib/microdata/schema/thing/action/interact_action/follow_action.rb
|
|
128
|
+
- lib/microdata/schema/thing/action/interact_action/join_action.rb
|
|
129
|
+
- lib/microdata/schema/thing/action/interact_action/leave_action.rb
|
|
130
|
+
- lib/microdata/schema/thing/action/interact_action/marry_action.rb
|
|
131
|
+
- lib/microdata/schema/thing/action/interact_action/register_action.rb
|
|
132
|
+
- lib/microdata/schema/thing/action/interact_action/subscribe_action.rb
|
|
133
|
+
- lib/microdata/schema/thing/action/interact_action/un_register_action.rb
|
|
134
|
+
- lib/microdata/schema/thing/action/move_action.rb
|
|
135
|
+
- lib/microdata/schema/thing/action/move_action/arrive_action.rb
|
|
136
|
+
- lib/microdata/schema/thing/action/move_action/depart_action.rb
|
|
137
|
+
- lib/microdata/schema/thing/action/move_action/travel_action.rb
|
|
138
|
+
- lib/microdata/schema/thing/action/organize_action.rb
|
|
139
|
+
- lib/microdata/schema/thing/action/organize_action/allocate_action.rb
|
|
140
|
+
- lib/microdata/schema/thing/action/organize_action/allocate_action/accept_action.rb
|
|
141
|
+
- lib/microdata/schema/thing/action/organize_action/allocate_action/assign_action.rb
|
|
142
|
+
- lib/microdata/schema/thing/action/organize_action/allocate_action/authorize_action.rb
|
|
143
|
+
- lib/microdata/schema/thing/action/organize_action/allocate_action/reject_action.rb
|
|
144
|
+
- lib/microdata/schema/thing/action/organize_action/apply_action.rb
|
|
145
|
+
- lib/microdata/schema/thing/action/organize_action/bookmark_action.rb
|
|
146
|
+
- lib/microdata/schema/thing/action/organize_action/plan_action.rb
|
|
147
|
+
- lib/microdata/schema/thing/action/organize_action/plan_action/cancel_action.rb
|
|
148
|
+
- lib/microdata/schema/thing/action/organize_action/plan_action/reserve_action.rb
|
|
149
|
+
- lib/microdata/schema/thing/action/organize_action/plan_action/schedule_action.rb
|
|
150
|
+
- lib/microdata/schema/thing/action/play_action.rb
|
|
151
|
+
- lib/microdata/schema/thing/creative_work.rb
|
|
152
|
+
- lib/microdata/schema/thing/creative_work/article.rb
|
|
153
|
+
- lib/microdata/schema/thing/creative_work/article/tech_article.rb
|
|
154
|
+
- lib/microdata/schema/thing/creative_work/software_source_code.rb
|
|
155
|
+
- lib/microdata/schema/thing/creative_work/web_page.rb
|
|
156
|
+
- lib/microdata/schema/thing/creative_work/web_page/about_page.rb
|
|
157
|
+
- lib/microdata/schema/thing/creative_work/web_page/profile_page.rb
|
|
158
|
+
- lib/microdata/schema/thing/creative_work/web_site.rb
|
|
159
|
+
- lib/microdata/schema/thing/event.rb
|
|
160
|
+
- lib/microdata/schema/thing/intangible.rb
|
|
161
|
+
- lib/microdata/schema/thing/intangible/item_list.rb
|
|
162
|
+
- lib/microdata/schema/thing/intangible/item_list/breadcrumb_list.rb
|
|
163
|
+
- lib/microdata/schema/thing/intangible/list_item.rb
|
|
164
|
+
- lib/microdata/schema/thing/organization.rb
|
|
165
|
+
- lib/microdata/schema/thing/person.rb
|
|
166
|
+
- lib/microdata/schema/thing/place.rb
|
|
167
|
+
- lib/microdata/schema/thing/product.rb
|
|
168
|
+
- lib/microdata_schema.rb
|
|
169
|
+
- lib/microdata_schema/version.rb
|
|
170
|
+
- microdata_schema.gemspec
|
|
171
|
+
homepage:
|
|
172
|
+
licenses:
|
|
173
|
+
- MIT
|
|
174
|
+
metadata: {}
|
|
175
|
+
post_install_message:
|
|
176
|
+
rdoc_options: []
|
|
177
|
+
require_paths:
|
|
178
|
+
- lib
|
|
179
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
180
|
+
requirements:
|
|
181
|
+
- - ">="
|
|
182
|
+
- !ruby/object:Gem::Version
|
|
183
|
+
version: '0'
|
|
184
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
185
|
+
requirements:
|
|
186
|
+
- - ">="
|
|
187
|
+
- !ruby/object:Gem::Version
|
|
188
|
+
version: '0'
|
|
189
|
+
requirements: []
|
|
190
|
+
rubyforge_project:
|
|
191
|
+
rubygems_version: 2.6.11
|
|
192
|
+
signing_key:
|
|
193
|
+
specification_version: 4
|
|
194
|
+
summary: microdata json-ld generator
|
|
195
|
+
test_files: []
|