Passed
Push — develop ( 90ed2c...5af6db )
by Andrew
09:42
created
src/models/jsonld/PhysicalActivityCategory.php 1 patch
Indentation   +121 added lines, -121 removed lines patch added patch discarded remove patch
@@ -23,125 +23,125 @@
 block discarded – undo
23 23
  */
24 24
 class PhysicalActivityCategory extends MetaJsonLd implements PhysicalActivityCategoryInterface, EnumerationInterface, IntangibleInterface, ThingInterface
25 25
 {
26
-	use PhysicalActivityCategoryTrait;
27
-	use EnumerationTrait;
28
-	use IntangibleTrait;
29
-	use ThingTrait;
30
-
31
-	/**
32
-	 * The Schema.org Type Name
33
-	 *
34
-	 * @var string
35
-	 */
36
-	public static $schemaTypeName = 'PhysicalActivityCategory';
37
-
38
-	/**
39
-	 * The Schema.org Type Scope
40
-	 *
41
-	 * @var string
42
-	 */
43
-	public static $schemaTypeScope = 'https://schema.org/PhysicalActivityCategory';
44
-
45
-	/**
46
-	 * The Schema.org Type Extends
47
-	 *
48
-	 * @var string
49
-	 */
50
-	public static $schemaTypeExtends = 'Enumeration';
51
-
52
-	/**
53
-	 * The Schema.org Type Description
54
-	 *
55
-	 * @var string
56
-	 */
57
-	public static $schemaTypeDescription = 'Categories of physical activity, organized by physiologic classification.';
58
-
59
-
60
-	/**
61
-	 * @inheritdoc
62
-	 */
63
-	public function getSchemaPropertyNames(): array
64
-	{
65
-		return array_keys($this->getSchemaPropertyExpectedTypes());
66
-	}
67
-
68
-
69
-	/**
70
-	 * @inheritdoc
71
-	 */
72
-	public function getSchemaPropertyExpectedTypes(): array
73
-	{
74
-		return [
75
-		    'additionalType' => ['URL'],
76
-		    'alternateName' => ['Text'],
77
-		    'description' => ['Text'],
78
-		    'disambiguatingDescription' => ['Text'],
79
-		    'identifier' => ['PropertyValue', 'URL', 'Text'],
80
-		    'image' => ['URL', 'ImageObject'],
81
-		    'mainEntityOfPage' => ['URL', 'CreativeWork'],
82
-		    'name' => ['Text'],
83
-		    'potentialAction' => ['Action'],
84
-		    'sameAs' => ['URL'],
85
-		    'subjectOf' => ['Event', 'CreativeWork'],
86
-		    'supersededBy' => ['Class', 'Property', 'Enumeration'],
87
-		    'url' => ['URL']
88
-		];
89
-	}
90
-
91
-
92
-	/**
93
-	 * @inheritdoc
94
-	 */
95
-	public function getSchemaPropertyDescriptions(): array
96
-	{
97
-		return [
98
-		    'additionalType' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the \'typeof\' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.',
99
-		    'alternateName' => 'An alias for the item.',
100
-		    'description' => 'A description of the item.',
101
-		    'disambiguatingDescription' => 'A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.',
102
-		    'identifier' => 'The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.         ',
103
-		    'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
104
-		    'mainEntityOfPage' => 'Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.',
105
-		    'name' => 'The name of the item.',
106
-		    'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
107
-		    'sameAs' => 'URL of a reference Web page that unambiguously indicates the item\'s identity. E.g. the URL of the item\'s Wikipedia page, Wikidata entry, or official website.',
108
-		    'subjectOf' => 'A CreativeWork or Event about this Thing.',
109
-		    'supersededBy' => 'Relates a term (i.e. a property, class or enumeration) to one that supersedes it.',
110
-		    'url' => 'URL of the item.'
111
-		];
112
-	}
113
-
114
-
115
-	/**
116
-	 * @inheritdoc
117
-	 */
118
-	public function getGoogleRequiredSchema(): array
119
-	{
120
-		return ['description', 'name'];
121
-	}
122
-
123
-
124
-	/**
125
-	 * @inheritdoc
126
-	 */
127
-	public function getGoogleRecommendedSchema(): array
128
-	{
129
-		return ['image', 'url'];
130
-	}
131
-
132
-
133
-	/**
134
-	 * @inheritdoc
135
-	 */
136
-	public function defineRules(): array
137
-	{
138
-		$rules = parent::defineRules();
139
-		    $rules = array_merge($rules, [
140
-		        [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
141
-		        [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
142
-		        [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
143
-		    ]);
144
-
145
-		    return $rules;
146
-	}
26
+    use PhysicalActivityCategoryTrait;
27
+    use EnumerationTrait;
28
+    use IntangibleTrait;
29
+    use ThingTrait;
30
+
31
+    /**
32
+     * The Schema.org Type Name
33
+     *
34
+     * @var string
35
+     */
36
+    public static $schemaTypeName = 'PhysicalActivityCategory';
37
+
38
+    /**
39
+     * The Schema.org Type Scope
40
+     *
41
+     * @var string
42
+     */
43
+    public static $schemaTypeScope = 'https://schema.org/PhysicalActivityCategory';
44
+
45
+    /**
46
+     * The Schema.org Type Extends
47
+     *
48
+     * @var string
49
+     */
50
+    public static $schemaTypeExtends = 'Enumeration';
51
+
52
+    /**
53
+     * The Schema.org Type Description
54
+     *
55
+     * @var string
56
+     */
57
+    public static $schemaTypeDescription = 'Categories of physical activity, organized by physiologic classification.';
58
+
59
+
60
+    /**
61
+     * @inheritdoc
62
+     */
63
+    public function getSchemaPropertyNames(): array
64
+    {
65
+        return array_keys($this->getSchemaPropertyExpectedTypes());
66
+    }
67
+
68
+
69
+    /**
70
+     * @inheritdoc
71
+     */
72
+    public function getSchemaPropertyExpectedTypes(): array
73
+    {
74
+        return [
75
+            'additionalType' => ['URL'],
76
+            'alternateName' => ['Text'],
77
+            'description' => ['Text'],
78
+            'disambiguatingDescription' => ['Text'],
79
+            'identifier' => ['PropertyValue', 'URL', 'Text'],
80
+            'image' => ['URL', 'ImageObject'],
81
+            'mainEntityOfPage' => ['URL', 'CreativeWork'],
82
+            'name' => ['Text'],
83
+            'potentialAction' => ['Action'],
84
+            'sameAs' => ['URL'],
85
+            'subjectOf' => ['Event', 'CreativeWork'],
86
+            'supersededBy' => ['Class', 'Property', 'Enumeration'],
87
+            'url' => ['URL']
88
+        ];
89
+    }
90
+
91
+
92
+    /**
93
+     * @inheritdoc
94
+     */
95
+    public function getSchemaPropertyDescriptions(): array
96
+    {
97
+        return [
98
+            'additionalType' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the \'typeof\' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.',
99
+            'alternateName' => 'An alias for the item.',
100
+            'description' => 'A description of the item.',
101
+            'disambiguatingDescription' => 'A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.',
102
+            'identifier' => 'The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.         ',
103
+            'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
104
+            'mainEntityOfPage' => 'Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.',
105
+            'name' => 'The name of the item.',
106
+            'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
107
+            'sameAs' => 'URL of a reference Web page that unambiguously indicates the item\'s identity. E.g. the URL of the item\'s Wikipedia page, Wikidata entry, or official website.',
108
+            'subjectOf' => 'A CreativeWork or Event about this Thing.',
109
+            'supersededBy' => 'Relates a term (i.e. a property, class or enumeration) to one that supersedes it.',
110
+            'url' => 'URL of the item.'
111
+        ];
112
+    }
113
+
114
+
115
+    /**
116
+     * @inheritdoc
117
+     */
118
+    public function getGoogleRequiredSchema(): array
119
+    {
120
+        return ['description', 'name'];
121
+    }
122
+
123
+
124
+    /**
125
+     * @inheritdoc
126
+     */
127
+    public function getGoogleRecommendedSchema(): array
128
+    {
129
+        return ['image', 'url'];
130
+    }
131
+
132
+
133
+    /**
134
+     * @inheritdoc
135
+     */
136
+    public function defineRules(): array
137
+    {
138
+        $rules = parent::defineRules();
139
+            $rules = array_merge($rules, [
140
+                [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
141
+                [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
142
+                [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
143
+            ]);
144
+
145
+            return $rules;
146
+    }
147 147
 }
Please login to merge, or discard this patch.
src/models/jsonld/Map.php 1 patch
Indentation   +327 added lines, -327 removed lines patch added patch discarded remove patch
@@ -23,348 +23,348 @@
 block discarded – undo
23 23
  */
24 24
 class Map extends MetaJsonLd implements MapInterface, CreativeWorkInterface, ThingInterface
25 25
 {
26
-	use MapTrait;
27
-	use CreativeWorkTrait;
28
-	use ThingTrait;
26
+    use MapTrait;
27
+    use CreativeWorkTrait;
28
+    use ThingTrait;
29 29
 
30
-	/**
31
-	 * The Schema.org Type Name
32
-	 *
33
-	 * @var string
34
-	 */
35
-	public static $schemaTypeName = 'Map';
30
+    /**
31
+     * The Schema.org Type Name
32
+     *
33
+     * @var string
34
+     */
35
+    public static $schemaTypeName = 'Map';
36 36
 
37
-	/**
38
-	 * The Schema.org Type Scope
39
-	 *
40
-	 * @var string
41
-	 */
42
-	public static $schemaTypeScope = 'https://schema.org/Map';
37
+    /**
38
+     * The Schema.org Type Scope
39
+     *
40
+     * @var string
41
+     */
42
+    public static $schemaTypeScope = 'https://schema.org/Map';
43 43
 
44
-	/**
45
-	 * The Schema.org Type Extends
46
-	 *
47
-	 * @var string
48
-	 */
49
-	public static $schemaTypeExtends = 'CreativeWork';
44
+    /**
45
+     * The Schema.org Type Extends
46
+     *
47
+     * @var string
48
+     */
49
+    public static $schemaTypeExtends = 'CreativeWork';
50 50
 
51
-	/**
52
-	 * The Schema.org Type Description
53
-	 *
54
-	 * @var string
55
-	 */
56
-	public static $schemaTypeDescription = 'A map.';
51
+    /**
52
+     * The Schema.org Type Description
53
+     *
54
+     * @var string
55
+     */
56
+    public static $schemaTypeDescription = 'A map.';
57 57
 
58 58
 
59
-	/**
60
-	 * @inheritdoc
61
-	 */
62
-	public function getSchemaPropertyNames(): array
63
-	{
64
-		return array_keys($this->getSchemaPropertyExpectedTypes());
65
-	}
59
+    /**
60
+     * @inheritdoc
61
+     */
62
+    public function getSchemaPropertyNames(): array
63
+    {
64
+        return array_keys($this->getSchemaPropertyExpectedTypes());
65
+    }
66 66
 
67 67
 
68
-	/**
69
-	 * @inheritdoc
70
-	 */
71
-	public function getSchemaPropertyExpectedTypes(): array
72
-	{
73
-		return [
74
-		    'about' => ['Thing'],
75
-		    'abstract' => ['Text'],
76
-		    'accessMode' => ['Text'],
77
-		    'accessModeSufficient' => ['ItemList'],
78
-		    'accessibilityAPI' => ['Text'],
79
-		    'accessibilityControl' => ['Text'],
80
-		    'accessibilityFeature' => ['Text'],
81
-		    'accessibilityHazard' => ['Text'],
82
-		    'accessibilitySummary' => ['Text'],
83
-		    'accountablePerson' => ['Person'],
84
-		    'acquireLicensePage' => ['CreativeWork', 'URL'],
85
-		    'additionalType' => ['URL'],
86
-		    'aggregateRating' => ['AggregateRating'],
87
-		    'alternateName' => ['Text'],
88
-		    'alternativeHeadline' => ['Text'],
89
-		    'archivedAt' => ['WebPage', 'URL'],
90
-		    'assesses' => ['DefinedTerm', 'Text'],
91
-		    'associatedMedia' => ['MediaObject'],
92
-		    'audience' => ['Audience'],
93
-		    'audio' => ['MusicRecording', 'AudioObject', 'Clip'],
94
-		    'author' => ['Organization', 'Person'],
95
-		    'award' => ['Text'],
96
-		    'awards' => ['Text'],
97
-		    'character' => ['Person'],
98
-		    'citation' => ['CreativeWork', 'Text'],
99
-		    'comment' => ['Comment'],
100
-		    'commentCount' => ['Integer'],
101
-		    'conditionsOfAccess' => ['Text'],
102
-		    'contentLocation' => ['Place'],
103
-		    'contentRating' => ['Text', 'Rating'],
104
-		    'contentReferenceTime' => ['DateTime'],
105
-		    'contributor' => ['Organization', 'Person'],
106
-		    'copyrightHolder' => ['Organization', 'Person'],
107
-		    'copyrightNotice' => ['Text'],
108
-		    'copyrightYear' => ['Number'],
109
-		    'correction' => ['URL', 'Text', 'CorrectionComment'],
110
-		    'countryOfOrigin' => ['Country'],
111
-		    'creativeWorkStatus' => ['DefinedTerm', 'Text'],
112
-		    'creator' => ['Person', 'Organization'],
113
-		    'creditText' => ['Text'],
114
-		    'dateCreated' => ['DateTime', 'Date'],
115
-		    'dateModified' => ['DateTime', 'Date'],
116
-		    'datePublished' => ['DateTime', 'Date'],
117
-		    'description' => ['Text'],
118
-		    'disambiguatingDescription' => ['Text'],
119
-		    'discussionUrl' => ['URL'],
120
-		    'editEIDR' => ['URL', 'Text'],
121
-		    'editor' => ['Person'],
122
-		    'educationalAlignment' => ['AlignmentObject'],
123
-		    'educationalLevel' => ['Text', 'URL', 'DefinedTerm'],
124
-		    'educationalUse' => ['DefinedTerm', 'Text'],
125
-		    'encoding' => ['MediaObject'],
126
-		    'encodingFormat' => ['URL', 'Text'],
127
-		    'encodings' => ['MediaObject'],
128
-		    'exampleOfWork' => ['CreativeWork'],
129
-		    'expires' => ['Date', 'DateTime'],
130
-		    'fileFormat' => ['Text', 'URL'],
131
-		    'funder' => ['Organization', 'Person'],
132
-		    'funding' => ['Grant'],
133
-		    'genre' => ['Text', 'URL'],
134
-		    'hasPart' => ['CreativeWork'],
135
-		    'headline' => ['Text'],
136
-		    'identifier' => ['PropertyValue', 'URL', 'Text'],
137
-		    'image' => ['URL', 'ImageObject'],
138
-		    'inLanguage' => ['Text', 'Language'],
139
-		    'interactionStatistic' => ['InteractionCounter'],
140
-		    'interactivityType' => ['Text'],
141
-		    'interpretedAsClaim' => ['Claim'],
142
-		    'isAccessibleForFree' => ['Boolean'],
143
-		    'isBasedOn' => ['URL', 'Product', 'CreativeWork'],
144
-		    'isBasedOnUrl' => ['URL', 'Product', 'CreativeWork'],
145
-		    'isFamilyFriendly' => ['Boolean'],
146
-		    'isPartOf' => ['URL', 'CreativeWork'],
147
-		    'keywords' => ['URL', 'DefinedTerm', 'Text'],
148
-		    'learningResourceType' => ['DefinedTerm', 'Text'],
149
-		    'license' => ['URL', 'CreativeWork'],
150
-		    'locationCreated' => ['Place'],
151
-		    'mainEntity' => ['Thing'],
152
-		    'mainEntityOfPage' => ['URL', 'CreativeWork'],
153
-		    'maintainer' => ['Person', 'Organization'],
154
-		    'mapType' => ['MapCategoryType'],
155
-		    'material' => ['Product', 'URL', 'Text'],
156
-		    'materialExtent' => ['QuantitativeValue', 'Text'],
157
-		    'mentions' => ['Thing'],
158
-		    'name' => ['Text'],
159
-		    'offers' => ['Demand', 'Offer'],
160
-		    'pattern' => ['DefinedTerm', 'Text'],
161
-		    'position' => ['Text', 'Integer'],
162
-		    'potentialAction' => ['Action'],
163
-		    'producer' => ['Organization', 'Person'],
164
-		    'provider' => ['Organization', 'Person'],
165
-		    'publication' => ['PublicationEvent'],
166
-		    'publisher' => ['Organization', 'Person'],
167
-		    'publisherImprint' => ['Organization'],
168
-		    'publishingPrinciples' => ['CreativeWork', 'URL'],
169
-		    'recordedAt' => ['Event'],
170
-		    'releasedEvent' => ['PublicationEvent'],
171
-		    'review' => ['Review'],
172
-		    'reviews' => ['Review'],
173
-		    'sameAs' => ['URL'],
174
-		    'schemaVersion' => ['URL', 'Text'],
175
-		    'sdDatePublished' => ['Date'],
176
-		    'sdLicense' => ['CreativeWork', 'URL'],
177
-		    'sdPublisher' => ['Organization', 'Person'],
178
-		    'size' => ['DefinedTerm', 'QuantitativeValue', 'Text', 'SizeSpecification'],
179
-		    'sourceOrganization' => ['Organization'],
180
-		    'spatial' => ['Place'],
181
-		    'spatialCoverage' => ['Place'],
182
-		    'sponsor' => ['Organization', 'Person'],
183
-		    'subjectOf' => ['Event', 'CreativeWork'],
184
-		    'teaches' => ['DefinedTerm', 'Text'],
185
-		    'temporal' => ['DateTime', 'Text'],
186
-		    'temporalCoverage' => ['URL', 'Text', 'DateTime'],
187
-		    'text' => ['Text'],
188
-		    'thumbnailUrl' => ['URL'],
189
-		    'timeRequired' => ['Duration'],
190
-		    'translationOfWork' => ['CreativeWork'],
191
-		    'translator' => ['Organization', 'Person'],
192
-		    'typicalAgeRange' => ['Text'],
193
-		    'url' => ['URL'],
194
-		    'usageInfo' => ['URL', 'CreativeWork'],
195
-		    'version' => ['Number', 'Text'],
196
-		    'video' => ['VideoObject', 'Clip'],
197
-		    'workExample' => ['CreativeWork'],
198
-		    'workTranslation' => ['CreativeWork']
199
-		];
200
-	}
68
+    /**
69
+     * @inheritdoc
70
+     */
71
+    public function getSchemaPropertyExpectedTypes(): array
72
+    {
73
+        return [
74
+            'about' => ['Thing'],
75
+            'abstract' => ['Text'],
76
+            'accessMode' => ['Text'],
77
+            'accessModeSufficient' => ['ItemList'],
78
+            'accessibilityAPI' => ['Text'],
79
+            'accessibilityControl' => ['Text'],
80
+            'accessibilityFeature' => ['Text'],
81
+            'accessibilityHazard' => ['Text'],
82
+            'accessibilitySummary' => ['Text'],
83
+            'accountablePerson' => ['Person'],
84
+            'acquireLicensePage' => ['CreativeWork', 'URL'],
85
+            'additionalType' => ['URL'],
86
+            'aggregateRating' => ['AggregateRating'],
87
+            'alternateName' => ['Text'],
88
+            'alternativeHeadline' => ['Text'],
89
+            'archivedAt' => ['WebPage', 'URL'],
90
+            'assesses' => ['DefinedTerm', 'Text'],
91
+            'associatedMedia' => ['MediaObject'],
92
+            'audience' => ['Audience'],
93
+            'audio' => ['MusicRecording', 'AudioObject', 'Clip'],
94
+            'author' => ['Organization', 'Person'],
95
+            'award' => ['Text'],
96
+            'awards' => ['Text'],
97
+            'character' => ['Person'],
98
+            'citation' => ['CreativeWork', 'Text'],
99
+            'comment' => ['Comment'],
100
+            'commentCount' => ['Integer'],
101
+            'conditionsOfAccess' => ['Text'],
102
+            'contentLocation' => ['Place'],
103
+            'contentRating' => ['Text', 'Rating'],
104
+            'contentReferenceTime' => ['DateTime'],
105
+            'contributor' => ['Organization', 'Person'],
106
+            'copyrightHolder' => ['Organization', 'Person'],
107
+            'copyrightNotice' => ['Text'],
108
+            'copyrightYear' => ['Number'],
109
+            'correction' => ['URL', 'Text', 'CorrectionComment'],
110
+            'countryOfOrigin' => ['Country'],
111
+            'creativeWorkStatus' => ['DefinedTerm', 'Text'],
112
+            'creator' => ['Person', 'Organization'],
113
+            'creditText' => ['Text'],
114
+            'dateCreated' => ['DateTime', 'Date'],
115
+            'dateModified' => ['DateTime', 'Date'],
116
+            'datePublished' => ['DateTime', 'Date'],
117
+            'description' => ['Text'],
118
+            'disambiguatingDescription' => ['Text'],
119
+            'discussionUrl' => ['URL'],
120
+            'editEIDR' => ['URL', 'Text'],
121
+            'editor' => ['Person'],
122
+            'educationalAlignment' => ['AlignmentObject'],
123
+            'educationalLevel' => ['Text', 'URL', 'DefinedTerm'],
124
+            'educationalUse' => ['DefinedTerm', 'Text'],
125
+            'encoding' => ['MediaObject'],
126
+            'encodingFormat' => ['URL', 'Text'],
127
+            'encodings' => ['MediaObject'],
128
+            'exampleOfWork' => ['CreativeWork'],
129
+            'expires' => ['Date', 'DateTime'],
130
+            'fileFormat' => ['Text', 'URL'],
131
+            'funder' => ['Organization', 'Person'],
132
+            'funding' => ['Grant'],
133
+            'genre' => ['Text', 'URL'],
134
+            'hasPart' => ['CreativeWork'],
135
+            'headline' => ['Text'],
136
+            'identifier' => ['PropertyValue', 'URL', 'Text'],
137
+            'image' => ['URL', 'ImageObject'],
138
+            'inLanguage' => ['Text', 'Language'],
139
+            'interactionStatistic' => ['InteractionCounter'],
140
+            'interactivityType' => ['Text'],
141
+            'interpretedAsClaim' => ['Claim'],
142
+            'isAccessibleForFree' => ['Boolean'],
143
+            'isBasedOn' => ['URL', 'Product', 'CreativeWork'],
144
+            'isBasedOnUrl' => ['URL', 'Product', 'CreativeWork'],
145
+            'isFamilyFriendly' => ['Boolean'],
146
+            'isPartOf' => ['URL', 'CreativeWork'],
147
+            'keywords' => ['URL', 'DefinedTerm', 'Text'],
148
+            'learningResourceType' => ['DefinedTerm', 'Text'],
149
+            'license' => ['URL', 'CreativeWork'],
150
+            'locationCreated' => ['Place'],
151
+            'mainEntity' => ['Thing'],
152
+            'mainEntityOfPage' => ['URL', 'CreativeWork'],
153
+            'maintainer' => ['Person', 'Organization'],
154
+            'mapType' => ['MapCategoryType'],
155
+            'material' => ['Product', 'URL', 'Text'],
156
+            'materialExtent' => ['QuantitativeValue', 'Text'],
157
+            'mentions' => ['Thing'],
158
+            'name' => ['Text'],
159
+            'offers' => ['Demand', 'Offer'],
160
+            'pattern' => ['DefinedTerm', 'Text'],
161
+            'position' => ['Text', 'Integer'],
162
+            'potentialAction' => ['Action'],
163
+            'producer' => ['Organization', 'Person'],
164
+            'provider' => ['Organization', 'Person'],
165
+            'publication' => ['PublicationEvent'],
166
+            'publisher' => ['Organization', 'Person'],
167
+            'publisherImprint' => ['Organization'],
168
+            'publishingPrinciples' => ['CreativeWork', 'URL'],
169
+            'recordedAt' => ['Event'],
170
+            'releasedEvent' => ['PublicationEvent'],
171
+            'review' => ['Review'],
172
+            'reviews' => ['Review'],
173
+            'sameAs' => ['URL'],
174
+            'schemaVersion' => ['URL', 'Text'],
175
+            'sdDatePublished' => ['Date'],
176
+            'sdLicense' => ['CreativeWork', 'URL'],
177
+            'sdPublisher' => ['Organization', 'Person'],
178
+            'size' => ['DefinedTerm', 'QuantitativeValue', 'Text', 'SizeSpecification'],
179
+            'sourceOrganization' => ['Organization'],
180
+            'spatial' => ['Place'],
181
+            'spatialCoverage' => ['Place'],
182
+            'sponsor' => ['Organization', 'Person'],
183
+            'subjectOf' => ['Event', 'CreativeWork'],
184
+            'teaches' => ['DefinedTerm', 'Text'],
185
+            'temporal' => ['DateTime', 'Text'],
186
+            'temporalCoverage' => ['URL', 'Text', 'DateTime'],
187
+            'text' => ['Text'],
188
+            'thumbnailUrl' => ['URL'],
189
+            'timeRequired' => ['Duration'],
190
+            'translationOfWork' => ['CreativeWork'],
191
+            'translator' => ['Organization', 'Person'],
192
+            'typicalAgeRange' => ['Text'],
193
+            'url' => ['URL'],
194
+            'usageInfo' => ['URL', 'CreativeWork'],
195
+            'version' => ['Number', 'Text'],
196
+            'video' => ['VideoObject', 'Clip'],
197
+            'workExample' => ['CreativeWork'],
198
+            'workTranslation' => ['CreativeWork']
199
+        ];
200
+    }
201 201
 
202 202
 
203
-	/**
204
-	 * @inheritdoc
205
-	 */
206
-	public function getSchemaPropertyDescriptions(): array
207
-	{
208
-		return [
209
-		    'about' => 'The subject matter of the content.',
210
-		    'abstract' => 'An abstract is a short description that summarizes a [[CreativeWork]].',
211
-		    'accessMode' => 'The human sensory perceptual system or cognitive faculty through which a person may process or perceive information. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessMode-vocabulary).',
212
-		    'accessModeSufficient' => 'A list of single or combined accessModes that are sufficient to understand all the intellectual content of a resource. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessModeSufficient-vocabulary).',
213
-		    'accessibilityAPI' => 'Indicates that the resource is compatible with the referenced accessibility API. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityAPI-vocabulary).',
214
-		    'accessibilityControl' => 'Identifies input methods that are sufficient to fully control the described resource. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityControl-vocabulary).',
215
-		    'accessibilityFeature' => 'Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityFeature-vocabulary).',
216
-		    'accessibilityHazard' => 'A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityHazard-vocabulary).',
217
-		    'accessibilitySummary' => 'A human-readable summary of specific accessibility features or deficiencies, consistent with the other accessibility metadata but expressing subtleties such as "short descriptions are present but long descriptions will be needed for non-visual users" or "short descriptions are present and no long descriptions are needed."',
218
-		    'accountablePerson' => 'Specifies the Person that is legally accountable for the CreativeWork.',
219
-		    'acquireLicensePage' => 'Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item.',
220
-		    'additionalType' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the \'typeof\' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.',
221
-		    'aggregateRating' => 'The overall rating, based on a collection of reviews or ratings, of the item.',
222
-		    'alternateName' => 'An alias for the item.',
223
-		    'alternativeHeadline' => 'A secondary title of the CreativeWork.',
224
-		    'archivedAt' => 'Indicates a page or other link involved in archival of a [[CreativeWork]]. In the case of [[MediaReview]], the items in a [[MediaReviewItem]] may often become inaccessible, but be archived by archival, journalistic, activist, or law enforcement organizations. In such cases, the referenced page may not directly publish the content.',
225
-		    'assesses' => 'The item being described is intended to assess the competency or learning outcome defined by the referenced term.',
226
-		    'associatedMedia' => 'A media object that encodes this CreativeWork. This property is a synonym for encoding.',
227
-		    'audience' => 'An intended audience, i.e. a group for whom something was created.',
228
-		    'audio' => 'An embedded audio object.',
229
-		    'author' => 'The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably.',
230
-		    'award' => 'An award won by or for this item.',
231
-		    'awards' => 'Awards won by or for this item.',
232
-		    'character' => 'Fictional person connected with a creative work.',
233
-		    'citation' => 'A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.',
234
-		    'comment' => 'Comments, typically from users.',
235
-		    'commentCount' => 'The number of comments this CreativeWork (e.g. Article, Question or Answer) has received. This is most applicable to works published in Web sites with commenting system; additional comments may exist elsewhere.',
236
-		    'conditionsOfAccess' => 'Conditions that affect the availability of, or method(s) of access to, an item. Typically used for real world items such as an [[ArchiveComponent]] held by an [[ArchiveOrganization]]. This property is not suitable for use as a general Web access control mechanism. It is expressed only in natural language.  For example "Available by appointment from the Reading Room" or "Accessible only from logged-in accounts ". ',
237
-		    'contentLocation' => 'The location depicted or described in the content. For example, the location in a photograph or painting.',
238
-		    'contentRating' => 'Official rating of a piece of content—for example, \'MPAA PG-13\'.',
239
-		    'contentReferenceTime' => 'The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event.',
240
-		    'contributor' => 'A secondary contributor to the CreativeWork or Event.',
241
-		    'copyrightHolder' => 'The party holding the legal copyright to the CreativeWork.',
242
-		    'copyrightNotice' => 'Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work.',
243
-		    'copyrightYear' => 'The year during which the claimed copyright for the CreativeWork was first asserted.',
244
-		    'correction' => 'Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document.',
245
-		    'countryOfOrigin' => 'The country of origin of something, including products as well as creative  works such as movie and TV content.  In the case of TV and movie, this would be the country of the principle offices of the production company or individual responsible for the movie. For other kinds of [[CreativeWork]] it is difficult to provide fully general guidance, and properties such as [[contentLocation]] and [[locationCreated]] may be more applicable.  In the case of products, the country of origin of the product. The exact interpretation of this may vary by context and product type, and cannot be fully enumerated here.',
246
-		    'creativeWorkStatus' => 'The status of a creative work in terms of its stage in a lifecycle. Example terms include Incomplete, Draft, Published, Obsolete. Some organizations define a set of terms for the stages of their publication lifecycle.',
247
-		    'creator' => 'The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.',
248
-		    'creditText' => 'Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work.',
249
-		    'dateCreated' => 'The date on which the CreativeWork was created or the item was added to a DataFeed.',
250
-		    'dateModified' => 'The date on which the CreativeWork was most recently modified or when the item\'s entry was modified within a DataFeed.',
251
-		    'datePublished' => 'Date of first broadcast/publication.',
252
-		    'description' => 'A description of the item.',
253
-		    'disambiguatingDescription' => 'A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.',
254
-		    'discussionUrl' => 'A link to the page containing the comments of the CreativeWork.',
255
-		    'editEIDR' => 'An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing a specific edit / edition for a work of film or television.  For example, the motion picture known as "Ghostbusters" whose [[titleEIDR]] is "10.5240/7EC7-228A-510A-053E-CBB8-J" has several edits, e.g. "10.5240/1F2A-E1C5-680A-14C6-E76B-I" and "10.5240/8A35-3BEE-6497-5D12-9E4F-3".  Since schema.org types like [[Movie]] and [[TVEpisode]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description. ',
256
-		    'editor' => 'Specifies the Person who edited the CreativeWork.',
257
-		    'educationalAlignment' => 'An alignment to an established educational framework.  This property should not be used where the nature of the alignment can be described using a simple property, for example to express that a resource [[teaches]] or [[assesses]] a competency.',
258
-		    'educationalLevel' => 'The level in terms of progression through an educational or training context. Examples of educational levels include \'beginner\', \'intermediate\' or \'advanced\', and formal sets of level indicators.',
259
-		    'educationalUse' => 'The purpose of a work in the context of education; for example, \'assignment\', \'group work\'.',
260
-		    'encoding' => 'A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.',
261
-		    'encodingFormat' => 'Media type typically expressed using a MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml) and [MDN reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)), e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc.  In cases where a [[CreativeWork]] has several media type representations, [[encoding]] can be used to indicate each [[MediaObject]] alongside particular [[encodingFormat]] information.  Unregistered or niche encoding and file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia/Wikidata entry.',
262
-		    'encodings' => 'A media object that encodes this CreativeWork.',
263
-		    'exampleOfWork' => 'A creative work that this work is an example/instance/realization/derivation of.',
264
-		    'expires' => 'Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date.',
265
-		    'fileFormat' => 'Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content, e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, \'encoding\' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry.',
266
-		    'funder' => 'A person or organization that supports (sponsors) something through some kind of financial contribution.',
267
-		    'funding' => 'A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]].',
268
-		    'genre' => 'Genre of the creative work, broadcast channel or group.',
269
-		    'hasPart' => 'Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).',
270
-		    'headline' => 'Headline of the article.',
271
-		    'identifier' => 'The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.         ',
272
-		    'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
273
-		    'inLanguage' => 'The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]].',
274
-		    'interactionStatistic' => 'The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used.',
275
-		    'interactivityType' => 'The predominant mode of learning supported by the learning resource. Acceptable values are \'active\', \'expositive\', or \'mixed\'.',
276
-		    'interpretedAsClaim' => 'Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]].',
277
-		    'isAccessibleForFree' => 'A flag to signal that the item, event, or place is accessible for free.',
278
-		    'isBasedOn' => 'A resource from which this work is derived or from which it is a modification or adaption.',
279
-		    'isBasedOnUrl' => 'A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html.',
280
-		    'isFamilyFriendly' => 'Indicates whether this content is family friendly.',
281
-		    'isPartOf' => 'Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of.',
282
-		    'keywords' => 'Keywords or tags used to describe some item. Multiple textual entries in a keywords list are typically delimited by commas, or by repeating the property.',
283
-		    'learningResourceType' => 'The predominant type or kind characterizing the learning resource. For example, \'presentation\', \'handout\'.',
284
-		    'license' => 'A license document that applies to this content, typically indicated by URL.',
285
-		    'locationCreated' => 'The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork.',
286
-		    'mainEntity' => 'Indicates the primary entity described in some page or other CreativeWork.',
287
-		    'mainEntityOfPage' => 'Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.',
288
-		    'maintainer' => 'A maintainer of a [[Dataset]], software package ([[SoftwareApplication]]), or other [[Project]]. A maintainer is a [[Person]] or [[Organization]] that manages contributions to, and/or publication of, some (typically complex) artifact. It is common for distributions of software and data to be based on "upstream" sources. When [[maintainer]] is applied to a specific version of something e.g. a particular version or packaging of a [[Dataset]], it is always  possible that the upstream source has a different maintainer. The [[isBasedOn]] property can be used to indicate such relationships between datasets to make the different maintenance roles clear. Similarly in the case of software, a package may have dedicated maintainers working on integration into software distributions such as Ubuntu, as well as upstream maintainers of the underlying work.       ',
289
-		    'mapType' => 'Indicates the kind of Map, from the MapCategoryType Enumeration.',
290
-		    'material' => 'A material that something is made from, e.g. leather, wool, cotton, paper.',
291
-		    'materialExtent' => 'The quantity of the materials being described or an expression of the physical space they occupy.',
292
-		    'mentions' => 'Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.',
293
-		    'name' => 'The name of the item.',
294
-		    'offers' => '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. Use [[businessFunction]] to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a [[Demand]]. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.       ',
295
-		    'pattern' => 'A pattern that something has, for example \'polka dot\', \'striped\', \'Canadian flag\'. Values are typically expressed as text, although links to controlled value schemes are also supported.',
296
-		    'position' => 'The position of an item in a series or sequence of items.',
297
-		    'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
298
-		    'producer' => 'The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.).',
299
-		    'provider' => 'The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller.',
300
-		    'publication' => 'A publication event associated with the item.',
301
-		    'publisher' => 'The publisher of the creative work.',
302
-		    'publisherImprint' => 'The publishing division which published the comic.',
303
-		    'publishingPrinciples' => 'The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual, e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]].  While such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology. ',
304
-		    'recordedAt' => 'The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event.',
305
-		    'releasedEvent' => 'The place and time the release was issued, expressed as a PublicationEvent.',
306
-		    'review' => 'A review of the item.',
307
-		    'reviews' => 'Review of the item.',
308
-		    'sameAs' => 'URL of a reference Web page that unambiguously indicates the item\'s identity. E.g. the URL of the item\'s Wikipedia page, Wikidata entry, or official website.',
309
-		    'schemaVersion' => 'Indicates (by URL or string) a particular version of a schema used in some CreativeWork. This property was created primarily to     indicate the use of a specific schema.org release, e.g. ```10.0``` as a simple string, or more explicitly via URL, ```https://schema.org/docs/releases.html#v10.0```. There may be situations in which other schemas might usefully be referenced this way, e.g. ```http://dublincore.org/specifications/dublin-core/dces/1999-07-02/``` but this has not been carefully explored in the community.',
310
-		    'sdDatePublished' => 'Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]]',
311
-		    'sdLicense' => 'A license document that applies to this structured data, typically indicated by URL.',
312
-		    'sdPublisher' => 'Indicates the party responsible for generating and publishing the current structured data markup, typically in cases where the structured data is derived automatically from existing published content but published on a different site. For example, student projects and open data initiatives often re-publish existing content with more explicitly structured metadata. The [[sdPublisher]] property helps make such practices more explicit.',
313
-		    'size' => 'A standardized size of a product or creative work, specified either through a simple textual string (for example \'XL\', \'32Wx34L\'), a  QuantitativeValue with a unitCode, or a comprehensive and structured [[SizeSpecification]]; in other cases, the [[width]], [[height]], [[depth]] and [[weight]] properties may be more applicable. ',
314
-		    'sourceOrganization' => 'The Organization on whose behalf the creator was working.',
315
-		    'spatial' => 'The "spatial" property can be used in cases when more specific properties (e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.',
316
-		    'spatialCoverage' => 'The spatialCoverage of a CreativeWork indicates the place(s) which are the focus of the content. It is a subproperty of       contentLocation intended primarily for more technical and detailed materials. For example with a Dataset, it indicates       areas that the dataset describes: a dataset of New York weather would have spatialCoverage which was the place: the state of New York.',
317
-		    'sponsor' => 'A person or organization that supports a thing through a pledge, promise, or financial contribution. E.g. a sponsor of a Medical Study or a corporate sponsor of an event.',
318
-		    'subjectOf' => 'A CreativeWork or Event about this Thing.',
319
-		    'teaches' => 'The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term.',
320
-		    'temporal' => 'The "temporal" property can be used in cases where more specific properties (e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate.',
321
-		    'temporalCoverage' => 'The temporalCoverage of a CreativeWork indicates the period that the content applies to, i.e. that it describes, either as a DateTime or as a textual string indicating a time period in [ISO 8601 time interval format](https://en.wikipedia.org/wiki/ISO_8601#Time_intervals). In       the case of a Dataset it will typically indicate the relevant time period in a precise notation (e.g. for a 2011 census dataset, the year 2011 would be written "2011/2012"). Other forms of content, e.g. ScholarlyArticle, Book, TVSeries or TVEpisode, may indicate their temporalCoverage in broader terms - textually or via well-known URL.       Written works such as books may sometimes have precise temporal coverage too, e.g. a work set in 1939 - 1945 can be indicated in ISO 8601 interval format format via "1939/1945".  Open-ended date ranges can be written with ".." in place of the end date. For example, "2015-11/.." indicates a range beginning in November 2015 and with no specified final date. This is tentative and might be updated in future when ISO 8601 is officially updated.',
322
-		    'text' => 'The textual content of this CreativeWork.',
323
-		    'thumbnailUrl' => 'A thumbnail image relevant to the Thing.',
324
-		    'timeRequired' => 'Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. \'PT30M\', \'PT1H25M\'.',
325
-		    'translationOfWork' => 'The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”.',
326
-		    'translator' => 'Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event.',
327
-		    'typicalAgeRange' => 'The typical expected age range, e.g. \'7-9\', \'11-\'.',
328
-		    'url' => 'URL of the item.',
329
-		    'usageInfo' => 'The schema.org [[usageInfo]] property indicates further information about a [[CreativeWork]]. This property is applicable both to works that are freely available and to those that require payment or other transactions. It can reference additional information, e.g. community expectations on preferred linking and citation conventions, as well as purchasing details. For something that can be commercially licensed, usageInfo can provide detailed, resource-specific information about licensing options.  This property can be used alongside the license property which indicates license(s) applicable to some piece of content. The usageInfo property can provide information about other licensing options, e.g. acquiring commercial usage rights for an image that is also available under non-commercial creative commons licenses.',
330
-		    'version' => 'The version of the CreativeWork embodied by a specified resource.',
331
-		    'video' => 'An embedded video object.',
332
-		    'workExample' => 'Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book.',
333
-		    'workTranslation' => 'A work that is a translation of the content of this work. E.g. 西遊記 has an English workTranslation “Journey to the West”, a German workTranslation “Monkeys Pilgerfahrt” and a Vietnamese  translation Tây du ký bình khảo.'
334
-		];
335
-	}
203
+    /**
204
+     * @inheritdoc
205
+     */
206
+    public function getSchemaPropertyDescriptions(): array
207
+    {
208
+        return [
209
+            'about' => 'The subject matter of the content.',
210
+            'abstract' => 'An abstract is a short description that summarizes a [[CreativeWork]].',
211
+            'accessMode' => 'The human sensory perceptual system or cognitive faculty through which a person may process or perceive information. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessMode-vocabulary).',
212
+            'accessModeSufficient' => 'A list of single or combined accessModes that are sufficient to understand all the intellectual content of a resource. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessModeSufficient-vocabulary).',
213
+            'accessibilityAPI' => 'Indicates that the resource is compatible with the referenced accessibility API. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityAPI-vocabulary).',
214
+            'accessibilityControl' => 'Identifies input methods that are sufficient to fully control the described resource. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityControl-vocabulary).',
215
+            'accessibilityFeature' => 'Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityFeature-vocabulary).',
216
+            'accessibilityHazard' => 'A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityHazard-vocabulary).',
217
+            'accessibilitySummary' => 'A human-readable summary of specific accessibility features or deficiencies, consistent with the other accessibility metadata but expressing subtleties such as "short descriptions are present but long descriptions will be needed for non-visual users" or "short descriptions are present and no long descriptions are needed."',
218
+            'accountablePerson' => 'Specifies the Person that is legally accountable for the CreativeWork.',
219
+            'acquireLicensePage' => 'Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item.',
220
+            'additionalType' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the \'typeof\' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.',
221
+            'aggregateRating' => 'The overall rating, based on a collection of reviews or ratings, of the item.',
222
+            'alternateName' => 'An alias for the item.',
223
+            'alternativeHeadline' => 'A secondary title of the CreativeWork.',
224
+            'archivedAt' => 'Indicates a page or other link involved in archival of a [[CreativeWork]]. In the case of [[MediaReview]], the items in a [[MediaReviewItem]] may often become inaccessible, but be archived by archival, journalistic, activist, or law enforcement organizations. In such cases, the referenced page may not directly publish the content.',
225
+            'assesses' => 'The item being described is intended to assess the competency or learning outcome defined by the referenced term.',
226
+            'associatedMedia' => 'A media object that encodes this CreativeWork. This property is a synonym for encoding.',
227
+            'audience' => 'An intended audience, i.e. a group for whom something was created.',
228
+            'audio' => 'An embedded audio object.',
229
+            'author' => 'The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably.',
230
+            'award' => 'An award won by or for this item.',
231
+            'awards' => 'Awards won by or for this item.',
232
+            'character' => 'Fictional person connected with a creative work.',
233
+            'citation' => 'A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.',
234
+            'comment' => 'Comments, typically from users.',
235
+            'commentCount' => 'The number of comments this CreativeWork (e.g. Article, Question or Answer) has received. This is most applicable to works published in Web sites with commenting system; additional comments may exist elsewhere.',
236
+            'conditionsOfAccess' => 'Conditions that affect the availability of, or method(s) of access to, an item. Typically used for real world items such as an [[ArchiveComponent]] held by an [[ArchiveOrganization]]. This property is not suitable for use as a general Web access control mechanism. It is expressed only in natural language.  For example "Available by appointment from the Reading Room" or "Accessible only from logged-in accounts ". ',
237
+            'contentLocation' => 'The location depicted or described in the content. For example, the location in a photograph or painting.',
238
+            'contentRating' => 'Official rating of a piece of content—for example, \'MPAA PG-13\'.',
239
+            'contentReferenceTime' => 'The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event.',
240
+            'contributor' => 'A secondary contributor to the CreativeWork or Event.',
241
+            'copyrightHolder' => 'The party holding the legal copyright to the CreativeWork.',
242
+            'copyrightNotice' => 'Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work.',
243
+            'copyrightYear' => 'The year during which the claimed copyright for the CreativeWork was first asserted.',
244
+            'correction' => 'Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document.',
245
+            'countryOfOrigin' => 'The country of origin of something, including products as well as creative  works such as movie and TV content.  In the case of TV and movie, this would be the country of the principle offices of the production company or individual responsible for the movie. For other kinds of [[CreativeWork]] it is difficult to provide fully general guidance, and properties such as [[contentLocation]] and [[locationCreated]] may be more applicable.  In the case of products, the country of origin of the product. The exact interpretation of this may vary by context and product type, and cannot be fully enumerated here.',
246
+            'creativeWorkStatus' => 'The status of a creative work in terms of its stage in a lifecycle. Example terms include Incomplete, Draft, Published, Obsolete. Some organizations define a set of terms for the stages of their publication lifecycle.',
247
+            'creator' => 'The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.',
248
+            'creditText' => 'Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work.',
249
+            'dateCreated' => 'The date on which the CreativeWork was created or the item was added to a DataFeed.',
250
+            'dateModified' => 'The date on which the CreativeWork was most recently modified or when the item\'s entry was modified within a DataFeed.',
251
+            'datePublished' => 'Date of first broadcast/publication.',
252
+            'description' => 'A description of the item.',
253
+            'disambiguatingDescription' => 'A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.',
254
+            'discussionUrl' => 'A link to the page containing the comments of the CreativeWork.',
255
+            'editEIDR' => 'An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing a specific edit / edition for a work of film or television.  For example, the motion picture known as "Ghostbusters" whose [[titleEIDR]] is "10.5240/7EC7-228A-510A-053E-CBB8-J" has several edits, e.g. "10.5240/1F2A-E1C5-680A-14C6-E76B-I" and "10.5240/8A35-3BEE-6497-5D12-9E4F-3".  Since schema.org types like [[Movie]] and [[TVEpisode]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description. ',
256
+            'editor' => 'Specifies the Person who edited the CreativeWork.',
257
+            'educationalAlignment' => 'An alignment to an established educational framework.  This property should not be used where the nature of the alignment can be described using a simple property, for example to express that a resource [[teaches]] or [[assesses]] a competency.',
258
+            'educationalLevel' => 'The level in terms of progression through an educational or training context. Examples of educational levels include \'beginner\', \'intermediate\' or \'advanced\', and formal sets of level indicators.',
259
+            'educationalUse' => 'The purpose of a work in the context of education; for example, \'assignment\', \'group work\'.',
260
+            'encoding' => 'A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.',
261
+            'encodingFormat' => 'Media type typically expressed using a MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml) and [MDN reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)), e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc.  In cases where a [[CreativeWork]] has several media type representations, [[encoding]] can be used to indicate each [[MediaObject]] alongside particular [[encodingFormat]] information.  Unregistered or niche encoding and file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia/Wikidata entry.',
262
+            'encodings' => 'A media object that encodes this CreativeWork.',
263
+            'exampleOfWork' => 'A creative work that this work is an example/instance/realization/derivation of.',
264
+            'expires' => 'Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date.',
265
+            'fileFormat' => 'Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content, e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, \'encoding\' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry.',
266
+            'funder' => 'A person or organization that supports (sponsors) something through some kind of financial contribution.',
267
+            'funding' => 'A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]].',
268
+            'genre' => 'Genre of the creative work, broadcast channel or group.',
269
+            'hasPart' => 'Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).',
270
+            'headline' => 'Headline of the article.',
271
+            'identifier' => 'The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.         ',
272
+            'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
273
+            'inLanguage' => 'The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]].',
274
+            'interactionStatistic' => 'The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used.',
275
+            'interactivityType' => 'The predominant mode of learning supported by the learning resource. Acceptable values are \'active\', \'expositive\', or \'mixed\'.',
276
+            'interpretedAsClaim' => 'Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]].',
277
+            'isAccessibleForFree' => 'A flag to signal that the item, event, or place is accessible for free.',
278
+            'isBasedOn' => 'A resource from which this work is derived or from which it is a modification or adaption.',
279
+            'isBasedOnUrl' => 'A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html.',
280
+            'isFamilyFriendly' => 'Indicates whether this content is family friendly.',
281
+            'isPartOf' => 'Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of.',
282
+            'keywords' => 'Keywords or tags used to describe some item. Multiple textual entries in a keywords list are typically delimited by commas, or by repeating the property.',
283
+            'learningResourceType' => 'The predominant type or kind characterizing the learning resource. For example, \'presentation\', \'handout\'.',
284
+            'license' => 'A license document that applies to this content, typically indicated by URL.',
285
+            'locationCreated' => 'The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork.',
286
+            'mainEntity' => 'Indicates the primary entity described in some page or other CreativeWork.',
287
+            'mainEntityOfPage' => 'Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.',
288
+            'maintainer' => 'A maintainer of a [[Dataset]], software package ([[SoftwareApplication]]), or other [[Project]]. A maintainer is a [[Person]] or [[Organization]] that manages contributions to, and/or publication of, some (typically complex) artifact. It is common for distributions of software and data to be based on "upstream" sources. When [[maintainer]] is applied to a specific version of something e.g. a particular version or packaging of a [[Dataset]], it is always  possible that the upstream source has a different maintainer. The [[isBasedOn]] property can be used to indicate such relationships between datasets to make the different maintenance roles clear. Similarly in the case of software, a package may have dedicated maintainers working on integration into software distributions such as Ubuntu, as well as upstream maintainers of the underlying work.       ',
289
+            'mapType' => 'Indicates the kind of Map, from the MapCategoryType Enumeration.',
290
+            'material' => 'A material that something is made from, e.g. leather, wool, cotton, paper.',
291
+            'materialExtent' => 'The quantity of the materials being described or an expression of the physical space they occupy.',
292
+            'mentions' => 'Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.',
293
+            'name' => 'The name of the item.',
294
+            'offers' => '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. Use [[businessFunction]] to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a [[Demand]]. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.       ',
295
+            'pattern' => 'A pattern that something has, for example \'polka dot\', \'striped\', \'Canadian flag\'. Values are typically expressed as text, although links to controlled value schemes are also supported.',
296
+            'position' => 'The position of an item in a series or sequence of items.',
297
+            'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
298
+            'producer' => 'The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.).',
299
+            'provider' => 'The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller.',
300
+            'publication' => 'A publication event associated with the item.',
301
+            'publisher' => 'The publisher of the creative work.',
302
+            'publisherImprint' => 'The publishing division which published the comic.',
303
+            'publishingPrinciples' => 'The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual, e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]].  While such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology. ',
304
+            'recordedAt' => 'The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event.',
305
+            'releasedEvent' => 'The place and time the release was issued, expressed as a PublicationEvent.',
306
+            'review' => 'A review of the item.',
307
+            'reviews' => 'Review of the item.',
308
+            'sameAs' => 'URL of a reference Web page that unambiguously indicates the item\'s identity. E.g. the URL of the item\'s Wikipedia page, Wikidata entry, or official website.',
309
+            'schemaVersion' => 'Indicates (by URL or string) a particular version of a schema used in some CreativeWork. This property was created primarily to     indicate the use of a specific schema.org release, e.g. ```10.0``` as a simple string, or more explicitly via URL, ```https://schema.org/docs/releases.html#v10.0```. There may be situations in which other schemas might usefully be referenced this way, e.g. ```http://dublincore.org/specifications/dublin-core/dces/1999-07-02/``` but this has not been carefully explored in the community.',
310
+            'sdDatePublished' => 'Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]]',
311
+            'sdLicense' => 'A license document that applies to this structured data, typically indicated by URL.',
312
+            'sdPublisher' => 'Indicates the party responsible for generating and publishing the current structured data markup, typically in cases where the structured data is derived automatically from existing published content but published on a different site. For example, student projects and open data initiatives often re-publish existing content with more explicitly structured metadata. The [[sdPublisher]] property helps make such practices more explicit.',
313
+            'size' => 'A standardized size of a product or creative work, specified either through a simple textual string (for example \'XL\', \'32Wx34L\'), a  QuantitativeValue with a unitCode, or a comprehensive and structured [[SizeSpecification]]; in other cases, the [[width]], [[height]], [[depth]] and [[weight]] properties may be more applicable. ',
314
+            'sourceOrganization' => 'The Organization on whose behalf the creator was working.',
315
+            'spatial' => 'The "spatial" property can be used in cases when more specific properties (e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.',
316
+            'spatialCoverage' => 'The spatialCoverage of a CreativeWork indicates the place(s) which are the focus of the content. It is a subproperty of       contentLocation intended primarily for more technical and detailed materials. For example with a Dataset, it indicates       areas that the dataset describes: a dataset of New York weather would have spatialCoverage which was the place: the state of New York.',
317
+            'sponsor' => 'A person or organization that supports a thing through a pledge, promise, or financial contribution. E.g. a sponsor of a Medical Study or a corporate sponsor of an event.',
318
+            'subjectOf' => 'A CreativeWork or Event about this Thing.',
319
+            'teaches' => 'The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term.',
320
+            'temporal' => 'The "temporal" property can be used in cases where more specific properties (e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate.',
321
+            'temporalCoverage' => 'The temporalCoverage of a CreativeWork indicates the period that the content applies to, i.e. that it describes, either as a DateTime or as a textual string indicating a time period in [ISO 8601 time interval format](https://en.wikipedia.org/wiki/ISO_8601#Time_intervals). In       the case of a Dataset it will typically indicate the relevant time period in a precise notation (e.g. for a 2011 census dataset, the year 2011 would be written "2011/2012"). Other forms of content, e.g. ScholarlyArticle, Book, TVSeries or TVEpisode, may indicate their temporalCoverage in broader terms - textually or via well-known URL.       Written works such as books may sometimes have precise temporal coverage too, e.g. a work set in 1939 - 1945 can be indicated in ISO 8601 interval format format via "1939/1945".  Open-ended date ranges can be written with ".." in place of the end date. For example, "2015-11/.." indicates a range beginning in November 2015 and with no specified final date. This is tentative and might be updated in future when ISO 8601 is officially updated.',
322
+            'text' => 'The textual content of this CreativeWork.',
323
+            'thumbnailUrl' => 'A thumbnail image relevant to the Thing.',
324
+            'timeRequired' => 'Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. \'PT30M\', \'PT1H25M\'.',
325
+            'translationOfWork' => 'The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”.',
326
+            'translator' => 'Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event.',
327
+            'typicalAgeRange' => 'The typical expected age range, e.g. \'7-9\', \'11-\'.',
328
+            'url' => 'URL of the item.',
329
+            'usageInfo' => 'The schema.org [[usageInfo]] property indicates further information about a [[CreativeWork]]. This property is applicable both to works that are freely available and to those that require payment or other transactions. It can reference additional information, e.g. community expectations on preferred linking and citation conventions, as well as purchasing details. For something that can be commercially licensed, usageInfo can provide detailed, resource-specific information about licensing options.  This property can be used alongside the license property which indicates license(s) applicable to some piece of content. The usageInfo property can provide information about other licensing options, e.g. acquiring commercial usage rights for an image that is also available under non-commercial creative commons licenses.',
330
+            'version' => 'The version of the CreativeWork embodied by a specified resource.',
331
+            'video' => 'An embedded video object.',
332
+            'workExample' => 'Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book.',
333
+            'workTranslation' => 'A work that is a translation of the content of this work. E.g. 西遊記 has an English workTranslation “Journey to the West”, a German workTranslation “Monkeys Pilgerfahrt” and a Vietnamese  translation Tây du ký bình khảo.'
334
+        ];
335
+    }
336 336
 
337 337
 
338
-	/**
339
-	 * @inheritdoc
340
-	 */
341
-	public function getGoogleRequiredSchema(): array
342
-	{
343
-		return ['description', 'name'];
344
-	}
338
+    /**
339
+     * @inheritdoc
340
+     */
341
+    public function getGoogleRequiredSchema(): array
342
+    {
343
+        return ['description', 'name'];
344
+    }
345 345
 
346 346
 
347
-	/**
348
-	 * @inheritdoc
349
-	 */
350
-	public function getGoogleRecommendedSchema(): array
351
-	{
352
-		return ['image', 'url'];
353
-	}
347
+    /**
348
+     * @inheritdoc
349
+     */
350
+    public function getGoogleRecommendedSchema(): array
351
+    {
352
+        return ['image', 'url'];
353
+    }
354 354
 
355 355
 
356
-	/**
357
-	 * @inheritdoc
358
-	 */
359
-	public function defineRules(): array
360
-	{
361
-		$rules = parent::defineRules();
362
-		    $rules = array_merge($rules, [
363
-		        [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
364
-		        [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
365
-		        [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
366
-		    ]);
356
+    /**
357
+     * @inheritdoc
358
+     */
359
+    public function defineRules(): array
360
+    {
361
+        $rules = parent::defineRules();
362
+            $rules = array_merge($rules, [
363
+                [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
364
+                [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
365
+                [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
366
+            ]);
367 367
 
368
-		    return $rules;
369
-	}
368
+            return $rules;
369
+    }
370 370
 }
Please login to merge, or discard this patch.
src/models/jsonld/ReservationPending.php 1 patch
Indentation   +123 added lines, -123 removed lines patch added patch discarded remove patch
@@ -24,127 +24,127 @@
 block discarded – undo
24 24
  */
25 25
 class ReservationPending extends MetaJsonLd implements ReservationPendingInterface, ReservationStatusTypeInterface, StatusEnumerationInterface, EnumerationInterface, IntangibleInterface, ThingInterface
26 26
 {
27
-	use ReservationPendingTrait;
28
-	use ReservationStatusTypeTrait;
29
-	use StatusEnumerationTrait;
30
-	use EnumerationTrait;
31
-	use IntangibleTrait;
32
-	use ThingTrait;
33
-
34
-	/**
35
-	 * The Schema.org Type Name
36
-	 *
37
-	 * @var string
38
-	 */
39
-	public static $schemaTypeName = 'ReservationPending';
40
-
41
-	/**
42
-	 * The Schema.org Type Scope
43
-	 *
44
-	 * @var string
45
-	 */
46
-	public static $schemaTypeScope = 'https://schema.org/ReservationPending';
47
-
48
-	/**
49
-	 * The Schema.org Type Extends
50
-	 *
51
-	 * @var string
52
-	 */
53
-	public static $schemaTypeExtends = 'ReservationStatusType';
54
-
55
-	/**
56
-	 * The Schema.org Type Description
57
-	 *
58
-	 * @var string
59
-	 */
60
-	public static $schemaTypeDescription = 'The status of a reservation when a request has been sent, but not confirmed.';
61
-
62
-
63
-	/**
64
-	 * @inheritdoc
65
-	 */
66
-	public function getSchemaPropertyNames(): array
67
-	{
68
-		return array_keys($this->getSchemaPropertyExpectedTypes());
69
-	}
70
-
71
-
72
-	/**
73
-	 * @inheritdoc
74
-	 */
75
-	public function getSchemaPropertyExpectedTypes(): array
76
-	{
77
-		return [
78
-		    'additionalType' => ['URL'],
79
-		    'alternateName' => ['Text'],
80
-		    'description' => ['Text'],
81
-		    'disambiguatingDescription' => ['Text'],
82
-		    'identifier' => ['PropertyValue', 'URL', 'Text'],
83
-		    'image' => ['URL', 'ImageObject'],
84
-		    'mainEntityOfPage' => ['URL', 'CreativeWork'],
85
-		    'name' => ['Text'],
86
-		    'potentialAction' => ['Action'],
87
-		    'sameAs' => ['URL'],
88
-		    'subjectOf' => ['Event', 'CreativeWork'],
89
-		    'supersededBy' => ['Class', 'Property', 'Enumeration'],
90
-		    'url' => ['URL']
91
-		];
92
-	}
93
-
94
-
95
-	/**
96
-	 * @inheritdoc
97
-	 */
98
-	public function getSchemaPropertyDescriptions(): array
99
-	{
100
-		return [
101
-		    'additionalType' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the \'typeof\' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.',
102
-		    'alternateName' => 'An alias for the item.',
103
-		    'description' => 'A description of the item.',
104
-		    'disambiguatingDescription' => 'A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.',
105
-		    'identifier' => 'The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.         ',
106
-		    'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
107
-		    'mainEntityOfPage' => 'Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.',
108
-		    'name' => 'The name of the item.',
109
-		    'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
110
-		    'sameAs' => 'URL of a reference Web page that unambiguously indicates the item\'s identity. E.g. the URL of the item\'s Wikipedia page, Wikidata entry, or official website.',
111
-		    'subjectOf' => 'A CreativeWork or Event about this Thing.',
112
-		    'supersededBy' => 'Relates a term (i.e. a property, class or enumeration) to one that supersedes it.',
113
-		    'url' => 'URL of the item.'
114
-		];
115
-	}
116
-
117
-
118
-	/**
119
-	 * @inheritdoc
120
-	 */
121
-	public function getGoogleRequiredSchema(): array
122
-	{
123
-		return ['description', 'name'];
124
-	}
125
-
126
-
127
-	/**
128
-	 * @inheritdoc
129
-	 */
130
-	public function getGoogleRecommendedSchema(): array
131
-	{
132
-		return ['image', 'url'];
133
-	}
134
-
135
-
136
-	/**
137
-	 * @inheritdoc
138
-	 */
139
-	public function defineRules(): array
140
-	{
141
-		$rules = parent::defineRules();
142
-		    $rules = array_merge($rules, [
143
-		        [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
144
-		        [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
145
-		        [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
146
-		    ]);
147
-
148
-		    return $rules;
149
-	}
27
+    use ReservationPendingTrait;
28
+    use ReservationStatusTypeTrait;
29
+    use StatusEnumerationTrait;
30
+    use EnumerationTrait;
31
+    use IntangibleTrait;
32
+    use ThingTrait;
33
+
34
+    /**
35
+     * The Schema.org Type Name
36
+     *
37
+     * @var string
38
+     */
39
+    public static $schemaTypeName = 'ReservationPending';
40
+
41
+    /**
42
+     * The Schema.org Type Scope
43
+     *
44
+     * @var string
45
+     */
46
+    public static $schemaTypeScope = 'https://schema.org/ReservationPending';
47
+
48
+    /**
49
+     * The Schema.org Type Extends
50
+     *
51
+     * @var string
52
+     */
53
+    public static $schemaTypeExtends = 'ReservationStatusType';
54
+
55
+    /**
56
+     * The Schema.org Type Description
57
+     *
58
+     * @var string
59
+     */
60
+    public static $schemaTypeDescription = 'The status of a reservation when a request has been sent, but not confirmed.';
61
+
62
+
63
+    /**
64
+     * @inheritdoc
65
+     */
66
+    public function getSchemaPropertyNames(): array
67
+    {
68
+        return array_keys($this->getSchemaPropertyExpectedTypes());
69
+    }
70
+
71
+
72
+    /**
73
+     * @inheritdoc
74
+     */
75
+    public function getSchemaPropertyExpectedTypes(): array
76
+    {
77
+        return [
78
+            'additionalType' => ['URL'],
79
+            'alternateName' => ['Text'],
80
+            'description' => ['Text'],
81
+            'disambiguatingDescription' => ['Text'],
82
+            'identifier' => ['PropertyValue', 'URL', 'Text'],
83
+            'image' => ['URL', 'ImageObject'],
84
+            'mainEntityOfPage' => ['URL', 'CreativeWork'],
85
+            'name' => ['Text'],
86
+            'potentialAction' => ['Action'],
87
+            'sameAs' => ['URL'],
88
+            'subjectOf' => ['Event', 'CreativeWork'],
89
+            'supersededBy' => ['Class', 'Property', 'Enumeration'],
90
+            'url' => ['URL']
91
+        ];
92
+    }
93
+
94
+
95
+    /**
96
+     * @inheritdoc
97
+     */
98
+    public function getSchemaPropertyDescriptions(): array
99
+    {
100
+        return [
101
+            'additionalType' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the \'typeof\' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.',
102
+            'alternateName' => 'An alias for the item.',
103
+            'description' => 'A description of the item.',
104
+            'disambiguatingDescription' => 'A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.',
105
+            'identifier' => 'The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.         ',
106
+            'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
107
+            'mainEntityOfPage' => 'Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.',
108
+            'name' => 'The name of the item.',
109
+            'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
110
+            'sameAs' => 'URL of a reference Web page that unambiguously indicates the item\'s identity. E.g. the URL of the item\'s Wikipedia page, Wikidata entry, or official website.',
111
+            'subjectOf' => 'A CreativeWork or Event about this Thing.',
112
+            'supersededBy' => 'Relates a term (i.e. a property, class or enumeration) to one that supersedes it.',
113
+            'url' => 'URL of the item.'
114
+        ];
115
+    }
116
+
117
+
118
+    /**
119
+     * @inheritdoc
120
+     */
121
+    public function getGoogleRequiredSchema(): array
122
+    {
123
+        return ['description', 'name'];
124
+    }
125
+
126
+
127
+    /**
128
+     * @inheritdoc
129
+     */
130
+    public function getGoogleRecommendedSchema(): array
131
+    {
132
+        return ['image', 'url'];
133
+    }
134
+
135
+
136
+    /**
137
+     * @inheritdoc
138
+     */
139
+    public function defineRules(): array
140
+    {
141
+        $rules = parent::defineRules();
142
+            $rules = array_merge($rules, [
143
+                [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
144
+                [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
145
+                [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
146
+            ]);
147
+
148
+            return $rules;
149
+    }
150 150
 }
Please login to merge, or discard this patch.
src/models/jsonld/HowToItem.php 1 patch
Indentation   +129 added lines, -129 removed lines patch added patch discarded remove patch
@@ -24,133 +24,133 @@
 block discarded – undo
24 24
  */
25 25
 class HowToItem extends MetaJsonLd implements HowToItemInterface, ListItemInterface, IntangibleInterface, ThingInterface
26 26
 {
27
-	use HowToItemTrait;
28
-	use ListItemTrait;
29
-	use IntangibleTrait;
30
-	use ThingTrait;
31
-
32
-	/**
33
-	 * The Schema.org Type Name
34
-	 *
35
-	 * @var string
36
-	 */
37
-	public static $schemaTypeName = 'HowToItem';
38
-
39
-	/**
40
-	 * The Schema.org Type Scope
41
-	 *
42
-	 * @var string
43
-	 */
44
-	public static $schemaTypeScope = 'https://schema.org/HowToItem';
45
-
46
-	/**
47
-	 * The Schema.org Type Extends
48
-	 *
49
-	 * @var string
50
-	 */
51
-	public static $schemaTypeExtends = 'ListItem';
52
-
53
-	/**
54
-	 * The Schema.org Type Description
55
-	 *
56
-	 * @var string
57
-	 */
58
-	public static $schemaTypeDescription = 'An item used as either a tool or supply when performing the instructions for how to achieve a result.';
59
-
60
-
61
-	/**
62
-	 * @inheritdoc
63
-	 */
64
-	public function getSchemaPropertyNames(): array
65
-	{
66
-		return array_keys($this->getSchemaPropertyExpectedTypes());
67
-	}
68
-
69
-
70
-	/**
71
-	 * @inheritdoc
72
-	 */
73
-	public function getSchemaPropertyExpectedTypes(): array
74
-	{
75
-		return [
76
-		    'additionalType' => ['URL'],
77
-		    'alternateName' => ['Text'],
78
-		    'description' => ['Text'],
79
-		    'disambiguatingDescription' => ['Text'],
80
-		    'identifier' => ['PropertyValue', 'URL', 'Text'],
81
-		    'image' => ['URL', 'ImageObject'],
82
-		    'item' => ['Thing'],
83
-		    'mainEntityOfPage' => ['URL', 'CreativeWork'],
84
-		    'name' => ['Text'],
85
-		    'nextItem' => ['ListItem'],
86
-		    'position' => ['Text', 'Integer'],
87
-		    'potentialAction' => ['Action'],
88
-		    'previousItem' => ['ListItem'],
89
-		    'requiredQuantity' => ['Text', 'Number', 'QuantitativeValue'],
90
-		    'sameAs' => ['URL'],
91
-		    'subjectOf' => ['Event', 'CreativeWork'],
92
-		    'url' => ['URL']
93
-		];
94
-	}
95
-
96
-
97
-	/**
98
-	 * @inheritdoc
99
-	 */
100
-	public function getSchemaPropertyDescriptions(): array
101
-	{
102
-		return [
103
-		    'additionalType' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the \'typeof\' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.',
104
-		    'alternateName' => 'An alias for the item.',
105
-		    'description' => 'A description of the item.',
106
-		    'disambiguatingDescription' => 'A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.',
107
-		    'identifier' => 'The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.         ',
108
-		    'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
109
-		    'item' => 'An entity represented by an entry in a list or data feed (e.g. an \'artist\' in a list of \'artists\').',
110
-		    'mainEntityOfPage' => 'Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.',
111
-		    'name' => 'The name of the item.',
112
-		    'nextItem' => 'A link to the ListItem that follows the current one.',
113
-		    'position' => 'The position of an item in a series or sequence of items.',
114
-		    'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
115
-		    'previousItem' => 'A link to the ListItem that precedes the current one.',
116
-		    'requiredQuantity' => 'The required quantity of the item(s).',
117
-		    'sameAs' => 'URL of a reference Web page that unambiguously indicates the item\'s identity. E.g. the URL of the item\'s Wikipedia page, Wikidata entry, or official website.',
118
-		    'subjectOf' => 'A CreativeWork or Event about this Thing.',
119
-		    'url' => 'URL of the item.'
120
-		];
121
-	}
122
-
123
-
124
-	/**
125
-	 * @inheritdoc
126
-	 */
127
-	public function getGoogleRequiredSchema(): array
128
-	{
129
-		return ['description', 'name'];
130
-	}
131
-
132
-
133
-	/**
134
-	 * @inheritdoc
135
-	 */
136
-	public function getGoogleRecommendedSchema(): array
137
-	{
138
-		return ['image', 'url'];
139
-	}
140
-
141
-
142
-	/**
143
-	 * @inheritdoc
144
-	 */
145
-	public function defineRules(): array
146
-	{
147
-		$rules = parent::defineRules();
148
-		    $rules = array_merge($rules, [
149
-		        [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
150
-		        [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
151
-		        [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
152
-		    ]);
153
-
154
-		    return $rules;
155
-	}
27
+    use HowToItemTrait;
28
+    use ListItemTrait;
29
+    use IntangibleTrait;
30
+    use ThingTrait;
31
+
32
+    /**
33
+     * The Schema.org Type Name
34
+     *
35
+     * @var string
36
+     */
37
+    public static $schemaTypeName = 'HowToItem';
38
+
39
+    /**
40
+     * The Schema.org Type Scope
41
+     *
42
+     * @var string
43
+     */
44
+    public static $schemaTypeScope = 'https://schema.org/HowToItem';
45
+
46
+    /**
47
+     * The Schema.org Type Extends
48
+     *
49
+     * @var string
50
+     */
51
+    public static $schemaTypeExtends = 'ListItem';
52
+
53
+    /**
54
+     * The Schema.org Type Description
55
+     *
56
+     * @var string
57
+     */
58
+    public static $schemaTypeDescription = 'An item used as either a tool or supply when performing the instructions for how to achieve a result.';
59
+
60
+
61
+    /**
62
+     * @inheritdoc
63
+     */
64
+    public function getSchemaPropertyNames(): array
65
+    {
66
+        return array_keys($this->getSchemaPropertyExpectedTypes());
67
+    }
68
+
69
+
70
+    /**
71
+     * @inheritdoc
72
+     */
73
+    public function getSchemaPropertyExpectedTypes(): array
74
+    {
75
+        return [
76
+            'additionalType' => ['URL'],
77
+            'alternateName' => ['Text'],
78
+            'description' => ['Text'],
79
+            'disambiguatingDescription' => ['Text'],
80
+            'identifier' => ['PropertyValue', 'URL', 'Text'],
81
+            'image' => ['URL', 'ImageObject'],
82
+            'item' => ['Thing'],
83
+            'mainEntityOfPage' => ['URL', 'CreativeWork'],
84
+            'name' => ['Text'],
85
+            'nextItem' => ['ListItem'],
86
+            'position' => ['Text', 'Integer'],
87
+            'potentialAction' => ['Action'],
88
+            'previousItem' => ['ListItem'],
89
+            'requiredQuantity' => ['Text', 'Number', 'QuantitativeValue'],
90
+            'sameAs' => ['URL'],
91
+            'subjectOf' => ['Event', 'CreativeWork'],
92
+            'url' => ['URL']
93
+        ];
94
+    }
95
+
96
+
97
+    /**
98
+     * @inheritdoc
99
+     */
100
+    public function getSchemaPropertyDescriptions(): array
101
+    {
102
+        return [
103
+            'additionalType' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the \'typeof\' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.',
104
+            'alternateName' => 'An alias for the item.',
105
+            'description' => 'A description of the item.',
106
+            'disambiguatingDescription' => 'A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.',
107
+            'identifier' => 'The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.         ',
108
+            'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
109
+            'item' => 'An entity represented by an entry in a list or data feed (e.g. an \'artist\' in a list of \'artists\').',
110
+            'mainEntityOfPage' => 'Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.',
111
+            'name' => 'The name of the item.',
112
+            'nextItem' => 'A link to the ListItem that follows the current one.',
113
+            'position' => 'The position of an item in a series or sequence of items.',
114
+            'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
115
+            'previousItem' => 'A link to the ListItem that precedes the current one.',
116
+            'requiredQuantity' => 'The required quantity of the item(s).',
117
+            'sameAs' => 'URL of a reference Web page that unambiguously indicates the item\'s identity. E.g. the URL of the item\'s Wikipedia page, Wikidata entry, or official website.',
118
+            'subjectOf' => 'A CreativeWork or Event about this Thing.',
119
+            'url' => 'URL of the item.'
120
+        ];
121
+    }
122
+
123
+
124
+    /**
125
+     * @inheritdoc
126
+     */
127
+    public function getGoogleRequiredSchema(): array
128
+    {
129
+        return ['description', 'name'];
130
+    }
131
+
132
+
133
+    /**
134
+     * @inheritdoc
135
+     */
136
+    public function getGoogleRecommendedSchema(): array
137
+    {
138
+        return ['image', 'url'];
139
+    }
140
+
141
+
142
+    /**
143
+     * @inheritdoc
144
+     */
145
+    public function defineRules(): array
146
+    {
147
+        $rules = parent::defineRules();
148
+            $rules = array_merge($rules, [
149
+                [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
150
+                [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
151
+                [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
152
+            ]);
153
+
154
+            return $rules;
155
+    }
156 156
 }
Please login to merge, or discard this patch.
src/models/jsonld/Hospital.php 1 patch
Indentation   +322 added lines, -322 removed lines patch added patch discarded remove patch
@@ -23,343 +23,343 @@
 block discarded – undo
23 23
  */
24 24
 class Hospital extends MetaJsonLd implements HospitalInterface, EmergencyServiceInterface, LocalBusinessInterface, PlaceInterface, ThingInterface, OrganizationInterface, MedicalOrganizationInterface, CivicStructureInterface
25 25
 {
26
-	use HospitalTrait;
27
-	use EmergencyServiceTrait;
28
-	use LocalBusinessTrait;
29
-	use PlaceTrait;
30
-	use ThingTrait;
31
-	use OrganizationTrait;
32
-	use MedicalOrganizationTrait;
33
-	use CivicStructureTrait;
26
+    use HospitalTrait;
27
+    use EmergencyServiceTrait;
28
+    use LocalBusinessTrait;
29
+    use PlaceTrait;
30
+    use ThingTrait;
31
+    use OrganizationTrait;
32
+    use MedicalOrganizationTrait;
33
+    use CivicStructureTrait;
34 34
 
35
-	/**
36
-	 * The Schema.org Type Name
37
-	 *
38
-	 * @var string
39
-	 */
40
-	public static $schemaTypeName = 'Hospital';
35
+    /**
36
+     * The Schema.org Type Name
37
+     *
38
+     * @var string
39
+     */
40
+    public static $schemaTypeName = 'Hospital';
41 41
 
42
-	/**
43
-	 * The Schema.org Type Scope
44
-	 *
45
-	 * @var string
46
-	 */
47
-	public static $schemaTypeScope = 'https://schema.org/Hospital';
42
+    /**
43
+     * The Schema.org Type Scope
44
+     *
45
+     * @var string
46
+     */
47
+    public static $schemaTypeScope = 'https://schema.org/Hospital';
48 48
 
49
-	/**
50
-	 * The Schema.org Type Extends
51
-	 *
52
-	 * @var string
53
-	 */
54
-	public static $schemaTypeExtends = 'EmergencyService';
49
+    /**
50
+     * The Schema.org Type Extends
51
+     *
52
+     * @var string
53
+     */
54
+    public static $schemaTypeExtends = 'EmergencyService';
55 55
 
56
-	/**
57
-	 * The Schema.org Type Description
58
-	 *
59
-	 * @var string
60
-	 */
61
-	public static $schemaTypeDescription = 'A hospital.';
56
+    /**
57
+     * The Schema.org Type Description
58
+     *
59
+     * @var string
60
+     */
61
+    public static $schemaTypeDescription = 'A hospital.';
62 62
 
63 63
 
64
-	/**
65
-	 * @inheritdoc
66
-	 */
67
-	public function getSchemaPropertyNames(): array
68
-	{
69
-		return array_keys($this->getSchemaPropertyExpectedTypes());
70
-	}
64
+    /**
65
+     * @inheritdoc
66
+     */
67
+    public function getSchemaPropertyNames(): array
68
+    {
69
+        return array_keys($this->getSchemaPropertyExpectedTypes());
70
+    }
71 71
 
72 72
 
73
-	/**
74
-	 * @inheritdoc
75
-	 */
76
-	public function getSchemaPropertyExpectedTypes(): array
77
-	{
78
-		return [
79
-		    'actionableFeedbackPolicy' => ['CreativeWork', 'URL'],
80
-		    'additionalProperty' => ['PropertyValue'],
81
-		    'additionalType' => ['URL'],
82
-		    'address' => ['Text', 'PostalAddress'],
83
-		    'aggregateRating' => ['AggregateRating'],
84
-		    'alternateName' => ['Text'],
85
-		    'alumni' => ['Person'],
86
-		    'amenityFeature' => ['LocationFeatureSpecification'],
87
-		    'areaServed' => ['Text', 'Place', 'GeoShape', 'AdministrativeArea'],
88
-		    'availableService' => ['MedicalTherapy', 'MedicalTest', 'MedicalProcedure'],
89
-		    'award' => ['Text'],
90
-		    'awards' => ['Text'],
91
-		    'branchCode' => ['Text'],
92
-		    'branchOf' => ['Organization'],
93
-		    'brand' => ['Brand', 'Organization'],
94
-		    'contactPoint' => ['ContactPoint'],
95
-		    'contactPoints' => ['ContactPoint'],
96
-		    'containedIn' => ['Place'],
97
-		    'containedInPlace' => ['Place'],
98
-		    'containsPlace' => ['Place'],
99
-		    'correctionsPolicy' => ['URL', 'CreativeWork'],
100
-		    'currenciesAccepted' => ['Text'],
101
-		    'department' => ['Organization'],
102
-		    'description' => ['Text'],
103
-		    'disambiguatingDescription' => ['Text'],
104
-		    'dissolutionDate' => ['Date'],
105
-		    'diversityPolicy' => ['URL', 'CreativeWork'],
106
-		    'diversityStaffingReport' => ['Article', 'URL'],
107
-		    'duns' => ['Text'],
108
-		    'email' => ['Text'],
109
-		    'employee' => ['Person'],
110
-		    'employees' => ['Person'],
111
-		    'ethicsPolicy' => ['CreativeWork', 'URL'],
112
-		    'event' => ['Event'],
113
-		    'events' => ['Event'],
114
-		    'faxNumber' => ['Text'],
115
-		    'founder' => ['Person'],
116
-		    'founders' => ['Person'],
117
-		    'foundingDate' => ['Date'],
118
-		    'foundingLocation' => ['Place'],
119
-		    'funder' => ['Organization', 'Person'],
120
-		    'funding' => ['Grant'],
121
-		    'geo' => ['GeoCoordinates', 'GeoShape'],
122
-		    'geoContains' => ['Place', 'GeospatialGeometry'],
123
-		    'geoCoveredBy' => ['GeospatialGeometry', 'Place'],
124
-		    'geoCovers' => ['GeospatialGeometry', 'Place'],
125
-		    'geoCrosses' => ['GeospatialGeometry', 'Place'],
126
-		    'geoDisjoint' => ['GeospatialGeometry', 'Place'],
127
-		    'geoEquals' => ['GeospatialGeometry', 'Place'],
128
-		    'geoIntersects' => ['GeospatialGeometry', 'Place'],
129
-		    'geoOverlaps' => ['GeospatialGeometry', 'Place'],
130
-		    'geoTouches' => ['GeospatialGeometry', 'Place'],
131
-		    'geoWithin' => ['GeospatialGeometry', 'Place'],
132
-		    'globalLocationNumber' => ['Text'],
133
-		    'hasCredential' => ['EducationalOccupationalCredential'],
134
-		    'hasDriveThroughService' => ['Boolean'],
135
-		    'hasMap' => ['URL', 'Map'],
136
-		    'hasMerchantReturnPolicy' => ['MerchantReturnPolicy'],
137
-		    'hasOfferCatalog' => ['OfferCatalog'],
138
-		    'hasPOS' => ['Place'],
139
-		    'healthPlanNetworkId' => ['Text'],
140
-		    'healthcareReportingData' => ['CDCPMDRecord', 'Dataset'],
141
-		    'identifier' => ['PropertyValue', 'URL', 'Text'],
142
-		    'image' => ['URL', 'ImageObject'],
143
-		    'interactionStatistic' => ['InteractionCounter'],
144
-		    'isAcceptingNewPatients' => ['Boolean'],
145
-		    'isAccessibleForFree' => ['Boolean'],
146
-		    'isicV4' => ['Text'],
147
-		    'iso6523Code' => ['Text'],
148
-		    'keywords' => ['URL', 'DefinedTerm', 'Text'],
149
-		    'knowsAbout' => ['Thing', 'Text', 'URL'],
150
-		    'knowsLanguage' => ['Text', 'Language'],
151
-		    'latitude' => ['Number', 'Text'],
152
-		    'legalName' => ['Text'],
153
-		    'leiCode' => ['Text'],
154
-		    'location' => ['Place', 'Text', 'VirtualLocation', 'PostalAddress'],
155
-		    'logo' => ['ImageObject', 'URL'],
156
-		    'longitude' => ['Text', 'Number'],
157
-		    'mainEntityOfPage' => ['URL', 'CreativeWork'],
158
-		    'makesOffer' => ['Offer'],
159
-		    'map' => ['URL'],
160
-		    'maps' => ['URL'],
161
-		    'maximumAttendeeCapacity' => ['Integer'],
162
-		    'medicalSpecialty' => ['MedicalSpecialty'],
163
-		    'member' => ['Organization', 'Person'],
164
-		    'memberOf' => ['Organization', 'ProgramMembership'],
165
-		    'members' => ['Organization', 'Person'],
166
-		    'naics' => ['Text'],
167
-		    'name' => ['Text'],
168
-		    'nonprofitStatus' => ['NonprofitType'],
169
-		    'numberOfEmployees' => ['QuantitativeValue'],
170
-		    'openingHours' => ['Text'],
171
-		    'openingHoursSpecification' => ['OpeningHoursSpecification'],
172
-		    'ownershipFundingInfo' => ['AboutPage', 'Text', 'CreativeWork', 'URL'],
173
-		    'owns' => ['Product', 'OwnershipInfo'],
174
-		    'parentOrganization' => ['Organization'],
175
-		    'paymentAccepted' => ['Text'],
176
-		    'photo' => ['Photograph', 'ImageObject'],
177
-		    'photos' => ['ImageObject', 'Photograph'],
178
-		    'potentialAction' => ['Action'],
179
-		    'priceRange' => ['Text'],
180
-		    'publicAccess' => ['Boolean'],
181
-		    'publishingPrinciples' => ['CreativeWork', 'URL'],
182
-		    'review' => ['Review'],
183
-		    'reviews' => ['Review'],
184
-		    'sameAs' => ['URL'],
185
-		    'seeks' => ['Demand'],
186
-		    'serviceArea' => ['AdministrativeArea', 'Place', 'GeoShape'],
187
-		    'slogan' => ['Text'],
188
-		    'smokingAllowed' => ['Boolean'],
189
-		    'specialOpeningHoursSpecification' => ['OpeningHoursSpecification'],
190
-		    'sponsor' => ['Organization', 'Person'],
191
-		    'subOrganization' => ['Organization'],
192
-		    'subjectOf' => ['Event', 'CreativeWork'],
193
-		    'taxID' => ['Text'],
194
-		    'telephone' => ['Text'],
195
-		    'tourBookingPage' => ['URL'],
196
-		    'unnamedSourcesPolicy' => ['CreativeWork', 'URL'],
197
-		    'url' => ['URL'],
198
-		    'vatID' => ['Text']
199
-		];
200
-	}
73
+    /**
74
+     * @inheritdoc
75
+     */
76
+    public function getSchemaPropertyExpectedTypes(): array
77
+    {
78
+        return [
79
+            'actionableFeedbackPolicy' => ['CreativeWork', 'URL'],
80
+            'additionalProperty' => ['PropertyValue'],
81
+            'additionalType' => ['URL'],
82
+            'address' => ['Text', 'PostalAddress'],
83
+            'aggregateRating' => ['AggregateRating'],
84
+            'alternateName' => ['Text'],
85
+            'alumni' => ['Person'],
86
+            'amenityFeature' => ['LocationFeatureSpecification'],
87
+            'areaServed' => ['Text', 'Place', 'GeoShape', 'AdministrativeArea'],
88
+            'availableService' => ['MedicalTherapy', 'MedicalTest', 'MedicalProcedure'],
89
+            'award' => ['Text'],
90
+            'awards' => ['Text'],
91
+            'branchCode' => ['Text'],
92
+            'branchOf' => ['Organization'],
93
+            'brand' => ['Brand', 'Organization'],
94
+            'contactPoint' => ['ContactPoint'],
95
+            'contactPoints' => ['ContactPoint'],
96
+            'containedIn' => ['Place'],
97
+            'containedInPlace' => ['Place'],
98
+            'containsPlace' => ['Place'],
99
+            'correctionsPolicy' => ['URL', 'CreativeWork'],
100
+            'currenciesAccepted' => ['Text'],
101
+            'department' => ['Organization'],
102
+            'description' => ['Text'],
103
+            'disambiguatingDescription' => ['Text'],
104
+            'dissolutionDate' => ['Date'],
105
+            'diversityPolicy' => ['URL', 'CreativeWork'],
106
+            'diversityStaffingReport' => ['Article', 'URL'],
107
+            'duns' => ['Text'],
108
+            'email' => ['Text'],
109
+            'employee' => ['Person'],
110
+            'employees' => ['Person'],
111
+            'ethicsPolicy' => ['CreativeWork', 'URL'],
112
+            'event' => ['Event'],
113
+            'events' => ['Event'],
114
+            'faxNumber' => ['Text'],
115
+            'founder' => ['Person'],
116
+            'founders' => ['Person'],
117
+            'foundingDate' => ['Date'],
118
+            'foundingLocation' => ['Place'],
119
+            'funder' => ['Organization', 'Person'],
120
+            'funding' => ['Grant'],
121
+            'geo' => ['GeoCoordinates', 'GeoShape'],
122
+            'geoContains' => ['Place', 'GeospatialGeometry'],
123
+            'geoCoveredBy' => ['GeospatialGeometry', 'Place'],
124
+            'geoCovers' => ['GeospatialGeometry', 'Place'],
125
+            'geoCrosses' => ['GeospatialGeometry', 'Place'],
126
+            'geoDisjoint' => ['GeospatialGeometry', 'Place'],
127
+            'geoEquals' => ['GeospatialGeometry', 'Place'],
128
+            'geoIntersects' => ['GeospatialGeometry', 'Place'],
129
+            'geoOverlaps' => ['GeospatialGeometry', 'Place'],
130
+            'geoTouches' => ['GeospatialGeometry', 'Place'],
131
+            'geoWithin' => ['GeospatialGeometry', 'Place'],
132
+            'globalLocationNumber' => ['Text'],
133
+            'hasCredential' => ['EducationalOccupationalCredential'],
134
+            'hasDriveThroughService' => ['Boolean'],
135
+            'hasMap' => ['URL', 'Map'],
136
+            'hasMerchantReturnPolicy' => ['MerchantReturnPolicy'],
137
+            'hasOfferCatalog' => ['OfferCatalog'],
138
+            'hasPOS' => ['Place'],
139
+            'healthPlanNetworkId' => ['Text'],
140
+            'healthcareReportingData' => ['CDCPMDRecord', 'Dataset'],
141
+            'identifier' => ['PropertyValue', 'URL', 'Text'],
142
+            'image' => ['URL', 'ImageObject'],
143
+            'interactionStatistic' => ['InteractionCounter'],
144
+            'isAcceptingNewPatients' => ['Boolean'],
145
+            'isAccessibleForFree' => ['Boolean'],
146
+            'isicV4' => ['Text'],
147
+            'iso6523Code' => ['Text'],
148
+            'keywords' => ['URL', 'DefinedTerm', 'Text'],
149
+            'knowsAbout' => ['Thing', 'Text', 'URL'],
150
+            'knowsLanguage' => ['Text', 'Language'],
151
+            'latitude' => ['Number', 'Text'],
152
+            'legalName' => ['Text'],
153
+            'leiCode' => ['Text'],
154
+            'location' => ['Place', 'Text', 'VirtualLocation', 'PostalAddress'],
155
+            'logo' => ['ImageObject', 'URL'],
156
+            'longitude' => ['Text', 'Number'],
157
+            'mainEntityOfPage' => ['URL', 'CreativeWork'],
158
+            'makesOffer' => ['Offer'],
159
+            'map' => ['URL'],
160
+            'maps' => ['URL'],
161
+            'maximumAttendeeCapacity' => ['Integer'],
162
+            'medicalSpecialty' => ['MedicalSpecialty'],
163
+            'member' => ['Organization', 'Person'],
164
+            'memberOf' => ['Organization', 'ProgramMembership'],
165
+            'members' => ['Organization', 'Person'],
166
+            'naics' => ['Text'],
167
+            'name' => ['Text'],
168
+            'nonprofitStatus' => ['NonprofitType'],
169
+            'numberOfEmployees' => ['QuantitativeValue'],
170
+            'openingHours' => ['Text'],
171
+            'openingHoursSpecification' => ['OpeningHoursSpecification'],
172
+            'ownershipFundingInfo' => ['AboutPage', 'Text', 'CreativeWork', 'URL'],
173
+            'owns' => ['Product', 'OwnershipInfo'],
174
+            'parentOrganization' => ['Organization'],
175
+            'paymentAccepted' => ['Text'],
176
+            'photo' => ['Photograph', 'ImageObject'],
177
+            'photos' => ['ImageObject', 'Photograph'],
178
+            'potentialAction' => ['Action'],
179
+            'priceRange' => ['Text'],
180
+            'publicAccess' => ['Boolean'],
181
+            'publishingPrinciples' => ['CreativeWork', 'URL'],
182
+            'review' => ['Review'],
183
+            'reviews' => ['Review'],
184
+            'sameAs' => ['URL'],
185
+            'seeks' => ['Demand'],
186
+            'serviceArea' => ['AdministrativeArea', 'Place', 'GeoShape'],
187
+            'slogan' => ['Text'],
188
+            'smokingAllowed' => ['Boolean'],
189
+            'specialOpeningHoursSpecification' => ['OpeningHoursSpecification'],
190
+            'sponsor' => ['Organization', 'Person'],
191
+            'subOrganization' => ['Organization'],
192
+            'subjectOf' => ['Event', 'CreativeWork'],
193
+            'taxID' => ['Text'],
194
+            'telephone' => ['Text'],
195
+            'tourBookingPage' => ['URL'],
196
+            'unnamedSourcesPolicy' => ['CreativeWork', 'URL'],
197
+            'url' => ['URL'],
198
+            'vatID' => ['Text']
199
+        ];
200
+    }
201 201
 
202 202
 
203
-	/**
204
-	 * @inheritdoc
205
-	 */
206
-	public function getSchemaPropertyDescriptions(): array
207
-	{
208
-		return [
209
-		    'actionableFeedbackPolicy' => 'For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement about public engagement activities (for news media, the newsroom’s), including involving the public - digitally or otherwise -- in coverage decisions, reporting and activities after publication.',
210
-		    'additionalProperty' => 'A property-value pair representing an additional characteristic of the entity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.  Note: Publishers should be aware that applications designed to use specific schema.org properties (e.g. https://schema.org/width, https://schema.org/color, https://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism. ',
211
-		    'additionalType' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the \'typeof\' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.',
212
-		    'address' => 'Physical address of the item.',
213
-		    'aggregateRating' => 'The overall rating, based on a collection of reviews or ratings, of the item.',
214
-		    'alternateName' => 'An alias for the item.',
215
-		    'alumni' => 'Alumni of an organization.',
216
-		    'amenityFeature' => 'An amenity feature (e.g. a characteristic or service) of the Accommodation. This generic property does not make a statement about whether the feature is included in an offer for the main accommodation or available at extra costs.',
217
-		    'areaServed' => 'The geographic area where a service or offered item is provided.',
218
-		    'availableService' => 'A medical service available from this provider.',
219
-		    'award' => 'An award won by or for this item.',
220
-		    'awards' => 'Awards won by or for this item.',
221
-		    'branchCode' => 'A short textual code (also called "store code") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs.  For example, in the URL http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code "3047" is a branchCode for a particular branch.       ',
222
-		    'branchOf' => 'The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]].',
223
-		    'brand' => 'The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.',
224
-		    'contactPoint' => 'A contact point for a person or organization.',
225
-		    'contactPoints' => 'A contact point for a person or organization.',
226
-		    'containedIn' => 'The basic containment relation between a place and one that contains it.',
227
-		    'containedInPlace' => 'The basic containment relation between a place and one that contains it.',
228
-		    'containsPlace' => 'The basic containment relation between a place and another that it contains.',
229
-		    'correctionsPolicy' => 'For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors.',
230
-		    'currenciesAccepted' => 'The currency accepted.  Use standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. "BTC"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. "Ithaca HOUR".',
231
-		    'department' => 'A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.',
232
-		    'description' => 'A description of the item.',
233
-		    'disambiguatingDescription' => 'A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.',
234
-		    'dissolutionDate' => 'The date that this organization was dissolved.',
235
-		    'diversityPolicy' => 'Statement on diversity policy by an [[Organization]] e.g. a [[NewsMediaOrganization]]. For a [[NewsMediaOrganization]], a statement describing the newsroom’s diversity policy on both staffing and sources, typically providing staffing data.',
236
-		    'diversityStaffingReport' => 'For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a report on staffing diversity issues. In a news context this might be for example ASNE or RTDNA (US) reports, or self-reported.',
237
-		    'duns' => 'The Dun & Bradstreet DUNS number for identifying an organization or business person.',
238
-		    'email' => 'Email address.',
239
-		    'employee' => 'Someone working for this organization.',
240
-		    'employees' => 'People working for this organization.',
241
-		    'ethicsPolicy' => 'Statement about ethics policy, e.g. of a [[NewsMediaOrganization]] regarding journalistic and publishing practices, or of a [[Restaurant]], a page describing food source policies. In the case of a [[NewsMediaOrganization]], an ethicsPolicy is typically a statement describing the personal, organizational, and corporate standards of behavior expected by the organization.',
242
-		    'event' => 'Upcoming or past event associated with this place, organization, or action.',
243
-		    'events' => 'Upcoming or past events associated with this place or organization.',
244
-		    'faxNumber' => 'The fax number.',
245
-		    'founder' => 'A person who founded this organization.',
246
-		    'founders' => 'A person who founded this organization.',
247
-		    'foundingDate' => 'The date that this organization was founded.',
248
-		    'foundingLocation' => 'The place where the Organization was founded.',
249
-		    'funder' => 'A person or organization that supports (sponsors) something through some kind of financial contribution.',
250
-		    'funding' => 'A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]].',
251
-		    'geo' => 'The geo coordinates of the place.',
252
-		    'geoContains' => 'Represents a relationship between two geometries (or the places they represent), relating a containing geometry to a contained geometry. "a contains b iff no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
253
-		    'geoCoveredBy' => 'Represents a relationship between two geometries (or the places they represent), relating a geometry to another that covers it. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
254
-		    'geoCovers' => 'Represents a relationship between two geometries (or the places they represent), relating a covering geometry to a covered geometry. "Every point of b is a point of (the interior or boundary of) a". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
255
-		    'geoCrosses' => 'Represents a relationship between two geometries (or the places they represent), relating a geometry to another that crosses it: "a crosses b: they have some but not all interior points in common, and the dimension of the intersection is less than that of at least one of them". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
256
-		    'geoDisjoint' => 'Represents spatial relations in which two geometries (or the places they represent) are topologically disjoint: "they have no point in common. They form a set of disconnected geometries." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)',
257
-		    'geoEquals' => 'Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship).',
258
-		    'geoIntersects' => 'Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
259
-		    'geoOverlaps' => 'Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
260
-		    'geoTouches' => 'Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)',
261
-		    'geoWithin' => 'Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
262
-		    'globalLocationNumber' => 'The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.',
263
-		    'hasCredential' => 'A credential awarded to the Person or Organization.',
264
-		    'hasDriveThroughService' => 'Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users.',
265
-		    'hasMap' => 'A URL to a map of the place.',
266
-		    'hasMerchantReturnPolicy' => 'Specifies a MerchantReturnPolicy that may be applicable.',
267
-		    'hasOfferCatalog' => 'Indicates an OfferCatalog listing for this Organization, Person, or Service.',
268
-		    'hasPOS' => 'Points-of-Sales operated by the organization or person.',
269
-		    'healthPlanNetworkId' => 'Name or unique ID of network. (Networks are often reused across different insurance plans.)',
270
-		    'healthcareReportingData' => 'Indicates data describing a hospital, e.g. a CDC [[CDCPMDRecord]] or as some kind of [[Dataset]].',
271
-		    'identifier' => 'The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.         ',
272
-		    'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
273
-		    'interactionStatistic' => 'The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used.',
274
-		    'isAcceptingNewPatients' => 'Whether the provider is accepting new patients.',
275
-		    'isAccessibleForFree' => 'A flag to signal that the item, event, or place is accessible for free.',
276
-		    'isicV4' => 'The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.',
277
-		    'iso6523Code' => 'An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. ',
278
-		    'keywords' => 'Keywords or tags used to describe some item. Multiple textual entries in a keywords list are typically delimited by commas, or by repeating the property.',
279
-		    'knowsAbout' => 'Of a [[Person]], and less typically of an [[Organization]], to indicate a topic that is known about - suggesting possible expertise but not implying it. We do not distinguish skill levels here, or relate this to educational content, events, objectives or [[JobPosting]] descriptions.',
280
-		    'knowsLanguage' => 'Of a [[Person]], and less typically of an [[Organization]], to indicate a known language. We do not distinguish skill levels or reading/writing/speaking/signing here. Use language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47).',
281
-		    'latitude' => 'The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).',
282
-		    'legalName' => 'The official name of the organization, e.g. the registered company name.',
283
-		    'leiCode' => 'An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.',
284
-		    'location' => 'The location of, for example, where an event is happening, where an organization is located, or where an action takes place.',
285
-		    'logo' => 'An associated logo.',
286
-		    'longitude' => 'The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).',
287
-		    'mainEntityOfPage' => 'Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.',
288
-		    'makesOffer' => 'A pointer to products or services offered by the organization or person.',
289
-		    'map' => 'A URL to a map of the place.',
290
-		    'maps' => 'A URL to a map of the place.',
291
-		    'maximumAttendeeCapacity' => 'The total number of individuals that may attend an event or venue.',
292
-		    'medicalSpecialty' => 'A medical specialty of the provider.',
293
-		    'member' => 'A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.',
294
-		    'memberOf' => 'An Organization (or ProgramMembership) to which this Person or Organization belongs.',
295
-		    'members' => 'A member of this organization.',
296
-		    'naics' => 'The North American Industry Classification System (NAICS) code for a particular organization or business person.',
297
-		    'name' => 'The name of the item.',
298
-		    'nonprofitStatus' => 'nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business.',
299
-		    'numberOfEmployees' => 'The number of employees in an organization, e.g. business.',
300
-		    'openingHours' => 'The general opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas \',\' separating each day. Day or time ranges are specified using a hyphen \'-\'.  * Days are specified using the following two-letter combinations: ```Mo```, ```Tu```, ```We```, ```Th```, ```Fr```, ```Sa```, ```Su```. * Times are specified using 24:00 format. For example, 3pm is specified as ```15:00```, 10am as ```10:00```.  * Here is an example: <code><time itemprop="openingHours" datetime="Tu,Th 16:00-20:00">Tuesdays and Thursdays 4-8pm</time></code>. * If a business is open 7 days a week, then it can be specified as <code><time itemprop="openingHours" datetime="Mo-Su">Monday through Sunday, all day</time></code>.',
301
-		    'openingHoursSpecification' => 'The opening hours of a certain place.',
302
-		    'ownershipFundingInfo' => 'For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a description of organizational ownership structure; funding and grants. In a news/media setting, this is with particular reference to editorial independence.   Note that the [[funder]] is also available and can be used to make basic funder information machine-readable.',
303
-		    'owns' => 'Products owned by the organization or person.',
304
-		    'parentOrganization' => 'The larger organization that this organization is a [[subOrganization]] of, if any.',
305
-		    'paymentAccepted' => 'Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.',
306
-		    'photo' => 'A photograph of this place.',
307
-		    'photos' => 'Photographs of this place.',
308
-		    'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
309
-		    'priceRange' => 'The price range of the business, for example ```$$$```.',
310
-		    'publicAccess' => 'A flag to signal that the [[Place]] is open to public visitors.  If this property is omitted there is no assumed default boolean value',
311
-		    'publishingPrinciples' => 'The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual, e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]].  While such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology. ',
312
-		    'review' => 'A review of the item.',
313
-		    'reviews' => 'Review of the item.',
314
-		    'sameAs' => 'URL of a reference Web page that unambiguously indicates the item\'s identity. E.g. the URL of the item\'s Wikipedia page, Wikidata entry, or official website.',
315
-		    'seeks' => 'A pointer to products or services sought by the organization or person (demand).',
316
-		    'serviceArea' => 'The geographic area where the service is provided.',
317
-		    'slogan' => 'A slogan or motto associated with the item.',
318
-		    'smokingAllowed' => 'Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room.',
319
-		    'specialOpeningHoursSpecification' => 'The special opening hours of a certain place.  Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].       ',
320
-		    'sponsor' => 'A person or organization that supports a thing through a pledge, promise, or financial contribution. E.g. a sponsor of a Medical Study or a corporate sponsor of an event.',
321
-		    'subOrganization' => 'A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific \'department\' property.',
322
-		    'subjectOf' => 'A CreativeWork or Event about this Thing.',
323
-		    'taxID' => 'The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.',
324
-		    'telephone' => 'The telephone number.',
325
-		    'tourBookingPage' => 'A page providing information on how to book a tour of some [[Place]], such as an [[Accommodation]] or [[ApartmentComplex]] in a real estate setting, as well as other kinds of tours as appropriate.',
326
-		    'unnamedSourcesPolicy' => 'For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required.',
327
-		    'url' => 'URL of the item.',
328
-		    'vatID' => 'The Value-added Tax ID of the organization or person.'
329
-		];
330
-	}
203
+    /**
204
+     * @inheritdoc
205
+     */
206
+    public function getSchemaPropertyDescriptions(): array
207
+    {
208
+        return [
209
+            'actionableFeedbackPolicy' => 'For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement about public engagement activities (for news media, the newsroom’s), including involving the public - digitally or otherwise -- in coverage decisions, reporting and activities after publication.',
210
+            'additionalProperty' => 'A property-value pair representing an additional characteristic of the entity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.  Note: Publishers should be aware that applications designed to use specific schema.org properties (e.g. https://schema.org/width, https://schema.org/color, https://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism. ',
211
+            'additionalType' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the \'typeof\' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.',
212
+            'address' => 'Physical address of the item.',
213
+            'aggregateRating' => 'The overall rating, based on a collection of reviews or ratings, of the item.',
214
+            'alternateName' => 'An alias for the item.',
215
+            'alumni' => 'Alumni of an organization.',
216
+            'amenityFeature' => 'An amenity feature (e.g. a characteristic or service) of the Accommodation. This generic property does not make a statement about whether the feature is included in an offer for the main accommodation or available at extra costs.',
217
+            'areaServed' => 'The geographic area where a service or offered item is provided.',
218
+            'availableService' => 'A medical service available from this provider.',
219
+            'award' => 'An award won by or for this item.',
220
+            'awards' => 'Awards won by or for this item.',
221
+            'branchCode' => 'A short textual code (also called "store code") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs.  For example, in the URL http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code "3047" is a branchCode for a particular branch.       ',
222
+            'branchOf' => 'The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]].',
223
+            'brand' => 'The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.',
224
+            'contactPoint' => 'A contact point for a person or organization.',
225
+            'contactPoints' => 'A contact point for a person or organization.',
226
+            'containedIn' => 'The basic containment relation between a place and one that contains it.',
227
+            'containedInPlace' => 'The basic containment relation between a place and one that contains it.',
228
+            'containsPlace' => 'The basic containment relation between a place and another that it contains.',
229
+            'correctionsPolicy' => 'For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors.',
230
+            'currenciesAccepted' => 'The currency accepted.  Use standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. "BTC"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. "Ithaca HOUR".',
231
+            'department' => 'A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.',
232
+            'description' => 'A description of the item.',
233
+            'disambiguatingDescription' => 'A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.',
234
+            'dissolutionDate' => 'The date that this organization was dissolved.',
235
+            'diversityPolicy' => 'Statement on diversity policy by an [[Organization]] e.g. a [[NewsMediaOrganization]]. For a [[NewsMediaOrganization]], a statement describing the newsroom’s diversity policy on both staffing and sources, typically providing staffing data.',
236
+            'diversityStaffingReport' => 'For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a report on staffing diversity issues. In a news context this might be for example ASNE or RTDNA (US) reports, or self-reported.',
237
+            'duns' => 'The Dun & Bradstreet DUNS number for identifying an organization or business person.',
238
+            'email' => 'Email address.',
239
+            'employee' => 'Someone working for this organization.',
240
+            'employees' => 'People working for this organization.',
241
+            'ethicsPolicy' => 'Statement about ethics policy, e.g. of a [[NewsMediaOrganization]] regarding journalistic and publishing practices, or of a [[Restaurant]], a page describing food source policies. In the case of a [[NewsMediaOrganization]], an ethicsPolicy is typically a statement describing the personal, organizational, and corporate standards of behavior expected by the organization.',
242
+            'event' => 'Upcoming or past event associated with this place, organization, or action.',
243
+            'events' => 'Upcoming or past events associated with this place or organization.',
244
+            'faxNumber' => 'The fax number.',
245
+            'founder' => 'A person who founded this organization.',
246
+            'founders' => 'A person who founded this organization.',
247
+            'foundingDate' => 'The date that this organization was founded.',
248
+            'foundingLocation' => 'The place where the Organization was founded.',
249
+            'funder' => 'A person or organization that supports (sponsors) something through some kind of financial contribution.',
250
+            'funding' => 'A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]].',
251
+            'geo' => 'The geo coordinates of the place.',
252
+            'geoContains' => 'Represents a relationship between two geometries (or the places they represent), relating a containing geometry to a contained geometry. "a contains b iff no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
253
+            'geoCoveredBy' => 'Represents a relationship between two geometries (or the places they represent), relating a geometry to another that covers it. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
254
+            'geoCovers' => 'Represents a relationship between two geometries (or the places they represent), relating a covering geometry to a covered geometry. "Every point of b is a point of (the interior or boundary of) a". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
255
+            'geoCrosses' => 'Represents a relationship between two geometries (or the places they represent), relating a geometry to another that crosses it: "a crosses b: they have some but not all interior points in common, and the dimension of the intersection is less than that of at least one of them". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
256
+            'geoDisjoint' => 'Represents spatial relations in which two geometries (or the places they represent) are topologically disjoint: "they have no point in common. They form a set of disconnected geometries." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)',
257
+            'geoEquals' => 'Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship).',
258
+            'geoIntersects' => 'Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
259
+            'geoOverlaps' => 'Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
260
+            'geoTouches' => 'Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)',
261
+            'geoWithin' => 'Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
262
+            'globalLocationNumber' => 'The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.',
263
+            'hasCredential' => 'A credential awarded to the Person or Organization.',
264
+            'hasDriveThroughService' => 'Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users.',
265
+            'hasMap' => 'A URL to a map of the place.',
266
+            'hasMerchantReturnPolicy' => 'Specifies a MerchantReturnPolicy that may be applicable.',
267
+            'hasOfferCatalog' => 'Indicates an OfferCatalog listing for this Organization, Person, or Service.',
268
+            'hasPOS' => 'Points-of-Sales operated by the organization or person.',
269
+            'healthPlanNetworkId' => 'Name or unique ID of network. (Networks are often reused across different insurance plans.)',
270
+            'healthcareReportingData' => 'Indicates data describing a hospital, e.g. a CDC [[CDCPMDRecord]] or as some kind of [[Dataset]].',
271
+            'identifier' => 'The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.         ',
272
+            'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
273
+            'interactionStatistic' => 'The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used.',
274
+            'isAcceptingNewPatients' => 'Whether the provider is accepting new patients.',
275
+            'isAccessibleForFree' => 'A flag to signal that the item, event, or place is accessible for free.',
276
+            'isicV4' => 'The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.',
277
+            'iso6523Code' => 'An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. ',
278
+            'keywords' => 'Keywords or tags used to describe some item. Multiple textual entries in a keywords list are typically delimited by commas, or by repeating the property.',
279
+            'knowsAbout' => 'Of a [[Person]], and less typically of an [[Organization]], to indicate a topic that is known about - suggesting possible expertise but not implying it. We do not distinguish skill levels here, or relate this to educational content, events, objectives or [[JobPosting]] descriptions.',
280
+            'knowsLanguage' => 'Of a [[Person]], and less typically of an [[Organization]], to indicate a known language. We do not distinguish skill levels or reading/writing/speaking/signing here. Use language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47).',
281
+            'latitude' => 'The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).',
282
+            'legalName' => 'The official name of the organization, e.g. the registered company name.',
283
+            'leiCode' => 'An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.',
284
+            'location' => 'The location of, for example, where an event is happening, where an organization is located, or where an action takes place.',
285
+            'logo' => 'An associated logo.',
286
+            'longitude' => 'The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).',
287
+            'mainEntityOfPage' => 'Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.',
288
+            'makesOffer' => 'A pointer to products or services offered by the organization or person.',
289
+            'map' => 'A URL to a map of the place.',
290
+            'maps' => 'A URL to a map of the place.',
291
+            'maximumAttendeeCapacity' => 'The total number of individuals that may attend an event or venue.',
292
+            'medicalSpecialty' => 'A medical specialty of the provider.',
293
+            'member' => 'A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.',
294
+            'memberOf' => 'An Organization (or ProgramMembership) to which this Person or Organization belongs.',
295
+            'members' => 'A member of this organization.',
296
+            'naics' => 'The North American Industry Classification System (NAICS) code for a particular organization or business person.',
297
+            'name' => 'The name of the item.',
298
+            'nonprofitStatus' => 'nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business.',
299
+            'numberOfEmployees' => 'The number of employees in an organization, e.g. business.',
300
+            'openingHours' => 'The general opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas \',\' separating each day. Day or time ranges are specified using a hyphen \'-\'.  * Days are specified using the following two-letter combinations: ```Mo```, ```Tu```, ```We```, ```Th```, ```Fr```, ```Sa```, ```Su```. * Times are specified using 24:00 format. For example, 3pm is specified as ```15:00```, 10am as ```10:00```.  * Here is an example: <code><time itemprop="openingHours" datetime="Tu,Th 16:00-20:00">Tuesdays and Thursdays 4-8pm</time></code>. * If a business is open 7 days a week, then it can be specified as <code><time itemprop="openingHours" datetime="Mo-Su">Monday through Sunday, all day</time></code>.',
301
+            'openingHoursSpecification' => 'The opening hours of a certain place.',
302
+            'ownershipFundingInfo' => 'For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a description of organizational ownership structure; funding and grants. In a news/media setting, this is with particular reference to editorial independence.   Note that the [[funder]] is also available and can be used to make basic funder information machine-readable.',
303
+            'owns' => 'Products owned by the organization or person.',
304
+            'parentOrganization' => 'The larger organization that this organization is a [[subOrganization]] of, if any.',
305
+            'paymentAccepted' => 'Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.',
306
+            'photo' => 'A photograph of this place.',
307
+            'photos' => 'Photographs of this place.',
308
+            'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
309
+            'priceRange' => 'The price range of the business, for example ```$$$```.',
310
+            'publicAccess' => 'A flag to signal that the [[Place]] is open to public visitors.  If this property is omitted there is no assumed default boolean value',
311
+            'publishingPrinciples' => 'The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual, e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]].  While such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology. ',
312
+            'review' => 'A review of the item.',
313
+            'reviews' => 'Review of the item.',
314
+            'sameAs' => 'URL of a reference Web page that unambiguously indicates the item\'s identity. E.g. the URL of the item\'s Wikipedia page, Wikidata entry, or official website.',
315
+            'seeks' => 'A pointer to products or services sought by the organization or person (demand).',
316
+            'serviceArea' => 'The geographic area where the service is provided.',
317
+            'slogan' => 'A slogan or motto associated with the item.',
318
+            'smokingAllowed' => 'Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room.',
319
+            'specialOpeningHoursSpecification' => 'The special opening hours of a certain place.  Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].       ',
320
+            'sponsor' => 'A person or organization that supports a thing through a pledge, promise, or financial contribution. E.g. a sponsor of a Medical Study or a corporate sponsor of an event.',
321
+            'subOrganization' => 'A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific \'department\' property.',
322
+            'subjectOf' => 'A CreativeWork or Event about this Thing.',
323
+            'taxID' => 'The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.',
324
+            'telephone' => 'The telephone number.',
325
+            'tourBookingPage' => 'A page providing information on how to book a tour of some [[Place]], such as an [[Accommodation]] or [[ApartmentComplex]] in a real estate setting, as well as other kinds of tours as appropriate.',
326
+            'unnamedSourcesPolicy' => 'For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required.',
327
+            'url' => 'URL of the item.',
328
+            'vatID' => 'The Value-added Tax ID of the organization or person.'
329
+        ];
330
+    }
331 331
 
332 332
 
333
-	/**
334
-	 * @inheritdoc
335
-	 */
336
-	public function getGoogleRequiredSchema(): array
337
-	{
338
-		return ['description', 'name'];
339
-	}
333
+    /**
334
+     * @inheritdoc
335
+     */
336
+    public function getGoogleRequiredSchema(): array
337
+    {
338
+        return ['description', 'name'];
339
+    }
340 340
 
341 341
 
342
-	/**
343
-	 * @inheritdoc
344
-	 */
345
-	public function getGoogleRecommendedSchema(): array
346
-	{
347
-		return ['image', 'url'];
348
-	}
342
+    /**
343
+     * @inheritdoc
344
+     */
345
+    public function getGoogleRecommendedSchema(): array
346
+    {
347
+        return ['image', 'url'];
348
+    }
349 349
 
350 350
 
351
-	/**
352
-	 * @inheritdoc
353
-	 */
354
-	public function defineRules(): array
355
-	{
356
-		$rules = parent::defineRules();
357
-		    $rules = array_merge($rules, [
358
-		        [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
359
-		        [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
360
-		        [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
361
-		    ]);
351
+    /**
352
+     * @inheritdoc
353
+     */
354
+    public function defineRules(): array
355
+    {
356
+        $rules = parent::defineRules();
357
+            $rules = array_merge($rules, [
358
+                [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
359
+                [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
360
+                [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
361
+            ]);
362 362
 
363
-		    return $rules;
364
-	}
363
+            return $rules;
364
+    }
365 365
 }
Please login to merge, or discard this patch.
src/models/jsonld/Rating.php 1 patch
Indentation   +130 added lines, -130 removed lines patch added patch discarded remove patch
@@ -23,134 +23,134 @@
 block discarded – undo
23 23
  */
24 24
 class Rating extends MetaJsonLd implements RatingInterface, IntangibleInterface, ThingInterface
25 25
 {
26
-	use RatingTrait;
27
-	use IntangibleTrait;
28
-	use ThingTrait;
29
-
30
-	/**
31
-	 * The Schema.org Type Name
32
-	 *
33
-	 * @var string
34
-	 */
35
-	public static $schemaTypeName = 'Rating';
36
-
37
-	/**
38
-	 * The Schema.org Type Scope
39
-	 *
40
-	 * @var string
41
-	 */
42
-	public static $schemaTypeScope = 'https://schema.org/Rating';
43
-
44
-	/**
45
-	 * The Schema.org Type Extends
46
-	 *
47
-	 * @var string
48
-	 */
49
-	public static $schemaTypeExtends = 'Intangible';
50
-
51
-	/**
52
-	 * The Schema.org Type Description
53
-	 *
54
-	 * @var string
55
-	 */
56
-	public static $schemaTypeDescription = 'A rating is an evaluation on a numeric scale, such as 1 to 5 stars.';
57
-
58
-
59
-	/**
60
-	 * @inheritdoc
61
-	 */
62
-	public function getSchemaPropertyNames(): array
63
-	{
64
-		return array_keys($this->getSchemaPropertyExpectedTypes());
65
-	}
66
-
67
-
68
-	/**
69
-	 * @inheritdoc
70
-	 */
71
-	public function getSchemaPropertyExpectedTypes(): array
72
-	{
73
-		return [
74
-		    'additionalType' => ['URL'],
75
-		    'alternateName' => ['Text'],
76
-		    'author' => ['Organization', 'Person'],
77
-		    'bestRating' => ['Text', 'Number'],
78
-		    'description' => ['Text'],
79
-		    'disambiguatingDescription' => ['Text'],
80
-		    'identifier' => ['PropertyValue', 'URL', 'Text'],
81
-		    'image' => ['URL', 'ImageObject'],
82
-		    'mainEntityOfPage' => ['URL', 'CreativeWork'],
83
-		    'name' => ['Text'],
84
-		    'potentialAction' => ['Action'],
85
-		    'ratingExplanation' => ['Text'],
86
-		    'ratingValue' => ['Number', 'Text'],
87
-		    'reviewAspect' => ['Text'],
88
-		    'sameAs' => ['URL'],
89
-		    'subjectOf' => ['Event', 'CreativeWork'],
90
-		    'url' => ['URL'],
91
-		    'worstRating' => ['Text', 'Number']
92
-		];
93
-	}
94
-
95
-
96
-	/**
97
-	 * @inheritdoc
98
-	 */
99
-	public function getSchemaPropertyDescriptions(): array
100
-	{
101
-		return [
102
-		    'additionalType' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the \'typeof\' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.',
103
-		    'alternateName' => 'An alias for the item.',
104
-		    'author' => 'The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably.',
105
-		    'bestRating' => 'The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.',
106
-		    'description' => 'A description of the item.',
107
-		    'disambiguatingDescription' => 'A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.',
108
-		    'identifier' => 'The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.         ',
109
-		    'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
110
-		    'mainEntityOfPage' => 'Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.',
111
-		    'name' => 'The name of the item.',
112
-		    'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
113
-		    'ratingExplanation' => 'A short explanation (e.g. one to two sentences) providing background context and other information that led to the conclusion expressed in the rating. This is particularly applicable to ratings associated with "fact check" markup using [[ClaimReview]].',
114
-		    'ratingValue' => 'The rating for the content.  Usage guidelines:  * Use values from 0123456789 (Unicode \'DIGIT ZERO\' (U+0030) to \'DIGIT NINE\' (U+0039)) rather than superficially similar Unicode symbols. * Use \'.\' (Unicode \'FULL STOP\' (U+002E)) rather than \',\' to indicate a decimal point. Avoid using these symbols as a readability separator.',
115
-		    'reviewAspect' => 'This Review or Rating is relevant to this part or facet of the itemReviewed.',
116
-		    'sameAs' => 'URL of a reference Web page that unambiguously indicates the item\'s identity. E.g. the URL of the item\'s Wikipedia page, Wikidata entry, or official website.',
117
-		    'subjectOf' => 'A CreativeWork or Event about this Thing.',
118
-		    'url' => 'URL of the item.',
119
-		    'worstRating' => 'The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.'
120
-		];
121
-	}
122
-
123
-
124
-	/**
125
-	 * @inheritdoc
126
-	 */
127
-	public function getGoogleRequiredSchema(): array
128
-	{
129
-		return ['description', 'name'];
130
-	}
131
-
132
-
133
-	/**
134
-	 * @inheritdoc
135
-	 */
136
-	public function getGoogleRecommendedSchema(): array
137
-	{
138
-		return ['image', 'url'];
139
-	}
140
-
141
-
142
-	/**
143
-	 * @inheritdoc
144
-	 */
145
-	public function defineRules(): array
146
-	{
147
-		$rules = parent::defineRules();
148
-		    $rules = array_merge($rules, [
149
-		        [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
150
-		        [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
151
-		        [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
152
-		    ]);
153
-
154
-		    return $rules;
155
-	}
26
+    use RatingTrait;
27
+    use IntangibleTrait;
28
+    use ThingTrait;
29
+
30
+    /**
31
+     * The Schema.org Type Name
32
+     *
33
+     * @var string
34
+     */
35
+    public static $schemaTypeName = 'Rating';
36
+
37
+    /**
38
+     * The Schema.org Type Scope
39
+     *
40
+     * @var string
41
+     */
42
+    public static $schemaTypeScope = 'https://schema.org/Rating';
43
+
44
+    /**
45
+     * The Schema.org Type Extends
46
+     *
47
+     * @var string
48
+     */
49
+    public static $schemaTypeExtends = 'Intangible';
50
+
51
+    /**
52
+     * The Schema.org Type Description
53
+     *
54
+     * @var string
55
+     */
56
+    public static $schemaTypeDescription = 'A rating is an evaluation on a numeric scale, such as 1 to 5 stars.';
57
+
58
+
59
+    /**
60
+     * @inheritdoc
61
+     */
62
+    public function getSchemaPropertyNames(): array
63
+    {
64
+        return array_keys($this->getSchemaPropertyExpectedTypes());
65
+    }
66
+
67
+
68
+    /**
69
+     * @inheritdoc
70
+     */
71
+    public function getSchemaPropertyExpectedTypes(): array
72
+    {
73
+        return [
74
+            'additionalType' => ['URL'],
75
+            'alternateName' => ['Text'],
76
+            'author' => ['Organization', 'Person'],
77
+            'bestRating' => ['Text', 'Number'],
78
+            'description' => ['Text'],
79
+            'disambiguatingDescription' => ['Text'],
80
+            'identifier' => ['PropertyValue', 'URL', 'Text'],
81
+            'image' => ['URL', 'ImageObject'],
82
+            'mainEntityOfPage' => ['URL', 'CreativeWork'],
83
+            'name' => ['Text'],
84
+            'potentialAction' => ['Action'],
85
+            'ratingExplanation' => ['Text'],
86
+            'ratingValue' => ['Number', 'Text'],
87
+            'reviewAspect' => ['Text'],
88
+            'sameAs' => ['URL'],
89
+            'subjectOf' => ['Event', 'CreativeWork'],
90
+            'url' => ['URL'],
91
+            'worstRating' => ['Text', 'Number']
92
+        ];
93
+    }
94
+
95
+
96
+    /**
97
+     * @inheritdoc
98
+     */
99
+    public function getSchemaPropertyDescriptions(): array
100
+    {
101
+        return [
102
+            'additionalType' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the \'typeof\' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.',
103
+            'alternateName' => 'An alias for the item.',
104
+            'author' => 'The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably.',
105
+            'bestRating' => 'The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.',
106
+            'description' => 'A description of the item.',
107
+            'disambiguatingDescription' => 'A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.',
108
+            'identifier' => 'The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.         ',
109
+            'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
110
+            'mainEntityOfPage' => 'Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.',
111
+            'name' => 'The name of the item.',
112
+            'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
113
+            'ratingExplanation' => 'A short explanation (e.g. one to two sentences) providing background context and other information that led to the conclusion expressed in the rating. This is particularly applicable to ratings associated with "fact check" markup using [[ClaimReview]].',
114
+            'ratingValue' => 'The rating for the content.  Usage guidelines:  * Use values from 0123456789 (Unicode \'DIGIT ZERO\' (U+0030) to \'DIGIT NINE\' (U+0039)) rather than superficially similar Unicode symbols. * Use \'.\' (Unicode \'FULL STOP\' (U+002E)) rather than \',\' to indicate a decimal point. Avoid using these symbols as a readability separator.',
115
+            'reviewAspect' => 'This Review or Rating is relevant to this part or facet of the itemReviewed.',
116
+            'sameAs' => 'URL of a reference Web page that unambiguously indicates the item\'s identity. E.g. the URL of the item\'s Wikipedia page, Wikidata entry, or official website.',
117
+            'subjectOf' => 'A CreativeWork or Event about this Thing.',
118
+            'url' => 'URL of the item.',
119
+            'worstRating' => 'The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.'
120
+        ];
121
+    }
122
+
123
+
124
+    /**
125
+     * @inheritdoc
126
+     */
127
+    public function getGoogleRequiredSchema(): array
128
+    {
129
+        return ['description', 'name'];
130
+    }
131
+
132
+
133
+    /**
134
+     * @inheritdoc
135
+     */
136
+    public function getGoogleRecommendedSchema(): array
137
+    {
138
+        return ['image', 'url'];
139
+    }
140
+
141
+
142
+    /**
143
+     * @inheritdoc
144
+     */
145
+    public function defineRules(): array
146
+    {
147
+        $rules = parent::defineRules();
148
+            $rules = array_merge($rules, [
149
+                [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
150
+                [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
151
+                [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
152
+            ]);
153
+
154
+            return $rules;
155
+    }
156 156
 }
Please login to merge, or discard this patch.
src/models/jsonld/ActionAccessSpecification.php 1 patch
Indentation   +132 added lines, -132 removed lines patch added patch discarded remove patch
@@ -23,136 +23,136 @@
 block discarded – undo
23 23
  */
24 24
 class ActionAccessSpecification extends MetaJsonLd implements ActionAccessSpecificationInterface, IntangibleInterface, ThingInterface
25 25
 {
26
-	use ActionAccessSpecificationTrait;
27
-	use IntangibleTrait;
28
-	use ThingTrait;
29
-
30
-	/**
31
-	 * The Schema.org Type Name
32
-	 *
33
-	 * @var string
34
-	 */
35
-	public static $schemaTypeName = 'ActionAccessSpecification';
36
-
37
-	/**
38
-	 * The Schema.org Type Scope
39
-	 *
40
-	 * @var string
41
-	 */
42
-	public static $schemaTypeScope = 'https://schema.org/ActionAccessSpecification';
43
-
44
-	/**
45
-	 * The Schema.org Type Extends
46
-	 *
47
-	 * @var string
48
-	 */
49
-	public static $schemaTypeExtends = 'Intangible';
50
-
51
-	/**
52
-	 * The Schema.org Type Description
53
-	 *
54
-	 * @var string
55
-	 */
56
-	public static $schemaTypeDescription = 'A set of requirements that must be fulfilled in order to perform an Action.';
57
-
58
-
59
-	/**
60
-	 * @inheritdoc
61
-	 */
62
-	public function getSchemaPropertyNames(): array
63
-	{
64
-		return array_keys($this->getSchemaPropertyExpectedTypes());
65
-	}
66
-
67
-
68
-	/**
69
-	 * @inheritdoc
70
-	 */
71
-	public function getSchemaPropertyExpectedTypes(): array
72
-	{
73
-		return [
74
-		    'additionalType' => ['URL'],
75
-		    'alternateName' => ['Text'],
76
-		    'availabilityEnds' => ['DateTime', 'Time', 'Date'],
77
-		    'availabilityStarts' => ['Date', 'Time', 'DateTime'],
78
-		    'category' => ['URL', 'CategoryCode', 'Text', 'Thing', 'PhysicalActivityCategory'],
79
-		    'description' => ['Text'],
80
-		    'disambiguatingDescription' => ['Text'],
81
-		    'eligibleRegion' => ['Place', 'Text', 'GeoShape'],
82
-		    'expectsAcceptanceOf' => ['Offer'],
83
-		    'identifier' => ['PropertyValue', 'URL', 'Text'],
84
-		    'image' => ['URL', 'ImageObject'],
85
-		    'ineligibleRegion' => ['Place', 'GeoShape', 'Text'],
86
-		    'mainEntityOfPage' => ['URL', 'CreativeWork'],
87
-		    'name' => ['Text'],
88
-		    'potentialAction' => ['Action'],
89
-		    'requiresSubscription' => ['MediaSubscription', 'Boolean'],
90
-		    'sameAs' => ['URL'],
91
-		    'subjectOf' => ['Event', 'CreativeWork'],
92
-		    'url' => ['URL']
93
-		];
94
-	}
95
-
96
-
97
-	/**
98
-	 * @inheritdoc
99
-	 */
100
-	public function getSchemaPropertyDescriptions(): array
101
-	{
102
-		return [
103
-		    'additionalType' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the \'typeof\' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.',
104
-		    'alternateName' => 'An alias for the item.',
105
-		    'availabilityEnds' => 'The end of the availability of the product or service included in the offer.',
106
-		    'availabilityStarts' => 'The beginning of the availability of the product or service included in the offer.',
107
-		    'category' => 'A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.',
108
-		    'description' => 'A description of the item.',
109
-		    'disambiguatingDescription' => 'A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.',
110
-		    'eligibleRegion' => 'The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.  See also [[ineligibleRegion]].     ',
111
-		    'expectsAcceptanceOf' => 'An Offer which must be accepted before the user can perform the Action. For example, the user may need to buy a movie before being able to watch it.',
112
-		    'identifier' => 'The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.         ',
113
-		    'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
114
-		    'ineligibleRegion' => 'The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is not valid, e.g. a region where the transaction is not allowed.  See also [[eligibleRegion]].       ',
115
-		    'mainEntityOfPage' => 'Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.',
116
-		    'name' => 'The name of the item.',
117
-		    'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
118
-		    'requiresSubscription' => 'Indicates if use of the media require a subscription  (either paid or free). Allowed values are ```true``` or ```false``` (note that an earlier version had \'yes\', \'no\').',
119
-		    'sameAs' => 'URL of a reference Web page that unambiguously indicates the item\'s identity. E.g. the URL of the item\'s Wikipedia page, Wikidata entry, or official website.',
120
-		    'subjectOf' => 'A CreativeWork or Event about this Thing.',
121
-		    'url' => 'URL of the item.'
122
-		];
123
-	}
124
-
125
-
126
-	/**
127
-	 * @inheritdoc
128
-	 */
129
-	public function getGoogleRequiredSchema(): array
130
-	{
131
-		return ['description', 'name'];
132
-	}
133
-
134
-
135
-	/**
136
-	 * @inheritdoc
137
-	 */
138
-	public function getGoogleRecommendedSchema(): array
139
-	{
140
-		return ['image', 'url'];
141
-	}
142
-
143
-
144
-	/**
145
-	 * @inheritdoc
146
-	 */
147
-	public function defineRules(): array
148
-	{
149
-		$rules = parent::defineRules();
150
-		    $rules = array_merge($rules, [
151
-		        [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
152
-		        [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
153
-		        [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
154
-		    ]);
155
-
156
-		    return $rules;
157
-	}
26
+    use ActionAccessSpecificationTrait;
27
+    use IntangibleTrait;
28
+    use ThingTrait;
29
+
30
+    /**
31
+     * The Schema.org Type Name
32
+     *
33
+     * @var string
34
+     */
35
+    public static $schemaTypeName = 'ActionAccessSpecification';
36
+
37
+    /**
38
+     * The Schema.org Type Scope
39
+     *
40
+     * @var string
41
+     */
42
+    public static $schemaTypeScope = 'https://schema.org/ActionAccessSpecification';
43
+
44
+    /**
45
+     * The Schema.org Type Extends
46
+     *
47
+     * @var string
48
+     */
49
+    public static $schemaTypeExtends = 'Intangible';
50
+
51
+    /**
52
+     * The Schema.org Type Description
53
+     *
54
+     * @var string
55
+     */
56
+    public static $schemaTypeDescription = 'A set of requirements that must be fulfilled in order to perform an Action.';
57
+
58
+
59
+    /**
60
+     * @inheritdoc
61
+     */
62
+    public function getSchemaPropertyNames(): array
63
+    {
64
+        return array_keys($this->getSchemaPropertyExpectedTypes());
65
+    }
66
+
67
+
68
+    /**
69
+     * @inheritdoc
70
+     */
71
+    public function getSchemaPropertyExpectedTypes(): array
72
+    {
73
+        return [
74
+            'additionalType' => ['URL'],
75
+            'alternateName' => ['Text'],
76
+            'availabilityEnds' => ['DateTime', 'Time', 'Date'],
77
+            'availabilityStarts' => ['Date', 'Time', 'DateTime'],
78
+            'category' => ['URL', 'CategoryCode', 'Text', 'Thing', 'PhysicalActivityCategory'],
79
+            'description' => ['Text'],
80
+            'disambiguatingDescription' => ['Text'],
81
+            'eligibleRegion' => ['Place', 'Text', 'GeoShape'],
82
+            'expectsAcceptanceOf' => ['Offer'],
83
+            'identifier' => ['PropertyValue', 'URL', 'Text'],
84
+            'image' => ['URL', 'ImageObject'],
85
+            'ineligibleRegion' => ['Place', 'GeoShape', 'Text'],
86
+            'mainEntityOfPage' => ['URL', 'CreativeWork'],
87
+            'name' => ['Text'],
88
+            'potentialAction' => ['Action'],
89
+            'requiresSubscription' => ['MediaSubscription', 'Boolean'],
90
+            'sameAs' => ['URL'],
91
+            'subjectOf' => ['Event', 'CreativeWork'],
92
+            'url' => ['URL']
93
+        ];
94
+    }
95
+
96
+
97
+    /**
98
+     * @inheritdoc
99
+     */
100
+    public function getSchemaPropertyDescriptions(): array
101
+    {
102
+        return [
103
+            'additionalType' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the \'typeof\' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.',
104
+            'alternateName' => 'An alias for the item.',
105
+            'availabilityEnds' => 'The end of the availability of the product or service included in the offer.',
106
+            'availabilityStarts' => 'The beginning of the availability of the product or service included in the offer.',
107
+            'category' => 'A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.',
108
+            'description' => 'A description of the item.',
109
+            'disambiguatingDescription' => 'A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.',
110
+            'eligibleRegion' => 'The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.  See also [[ineligibleRegion]].     ',
111
+            'expectsAcceptanceOf' => 'An Offer which must be accepted before the user can perform the Action. For example, the user may need to buy a movie before being able to watch it.',
112
+            'identifier' => 'The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.         ',
113
+            'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
114
+            'ineligibleRegion' => 'The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is not valid, e.g. a region where the transaction is not allowed.  See also [[eligibleRegion]].       ',
115
+            'mainEntityOfPage' => 'Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.',
116
+            'name' => 'The name of the item.',
117
+            'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
118
+            'requiresSubscription' => 'Indicates if use of the media require a subscription  (either paid or free). Allowed values are ```true``` or ```false``` (note that an earlier version had \'yes\', \'no\').',
119
+            'sameAs' => 'URL of a reference Web page that unambiguously indicates the item\'s identity. E.g. the URL of the item\'s Wikipedia page, Wikidata entry, or official website.',
120
+            'subjectOf' => 'A CreativeWork or Event about this Thing.',
121
+            'url' => 'URL of the item.'
122
+        ];
123
+    }
124
+
125
+
126
+    /**
127
+     * @inheritdoc
128
+     */
129
+    public function getGoogleRequiredSchema(): array
130
+    {
131
+        return ['description', 'name'];
132
+    }
133
+
134
+
135
+    /**
136
+     * @inheritdoc
137
+     */
138
+    public function getGoogleRecommendedSchema(): array
139
+    {
140
+        return ['image', 'url'];
141
+    }
142
+
143
+
144
+    /**
145
+     * @inheritdoc
146
+     */
147
+    public function defineRules(): array
148
+    {
149
+        $rules = parent::defineRules();
150
+            $rules = array_merge($rules, [
151
+                [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
152
+                [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
153
+                [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
154
+            ]);
155
+
156
+            return $rules;
157
+    }
158 158
 }
Please login to merge, or discard this patch.
src/models/jsonld/Physiotherapy.php 1 patch
Indentation   +317 added lines, -317 removed lines patch added patch discarded remove patch
@@ -25,338 +25,338 @@
 block discarded – undo
25 25
  */
26 26
 class Physiotherapy extends MetaJsonLd implements PhysiotherapyInterface, MedicalBusinessInterface, LocalBusinessInterface, PlaceInterface, ThingInterface, OrganizationInterface, MedicalSpecialtyInterface, SpecialtyInterface, EnumerationInterface, IntangibleInterface, MedicalEnumerationInterface
27 27
 {
28
-	use PhysiotherapyTrait;
29
-	use MedicalBusinessTrait;
30
-	use LocalBusinessTrait;
31
-	use PlaceTrait;
32
-	use ThingTrait;
33
-	use OrganizationTrait;
34
-	use MedicalSpecialtyTrait;
35
-	use SpecialtyTrait;
36
-	use EnumerationTrait;
37
-	use IntangibleTrait;
38
-	use MedicalEnumerationTrait;
28
+    use PhysiotherapyTrait;
29
+    use MedicalBusinessTrait;
30
+    use LocalBusinessTrait;
31
+    use PlaceTrait;
32
+    use ThingTrait;
33
+    use OrganizationTrait;
34
+    use MedicalSpecialtyTrait;
35
+    use SpecialtyTrait;
36
+    use EnumerationTrait;
37
+    use IntangibleTrait;
38
+    use MedicalEnumerationTrait;
39 39
 
40
-	/**
41
-	 * The Schema.org Type Name
42
-	 *
43
-	 * @var string
44
-	 */
45
-	public static $schemaTypeName = 'Physiotherapy';
40
+    /**
41
+     * The Schema.org Type Name
42
+     *
43
+     * @var string
44
+     */
45
+    public static $schemaTypeName = 'Physiotherapy';
46 46
 
47
-	/**
48
-	 * The Schema.org Type Scope
49
-	 *
50
-	 * @var string
51
-	 */
52
-	public static $schemaTypeScope = 'https://schema.org/Physiotherapy';
47
+    /**
48
+     * The Schema.org Type Scope
49
+     *
50
+     * @var string
51
+     */
52
+    public static $schemaTypeScope = 'https://schema.org/Physiotherapy';
53 53
 
54
-	/**
55
-	 * The Schema.org Type Extends
56
-	 *
57
-	 * @var string
58
-	 */
59
-	public static $schemaTypeExtends = 'MedicalBusiness';
54
+    /**
55
+     * The Schema.org Type Extends
56
+     *
57
+     * @var string
58
+     */
59
+    public static $schemaTypeExtends = 'MedicalBusiness';
60 60
 
61
-	/**
62
-	 * The Schema.org Type Description
63
-	 *
64
-	 * @var string
65
-	 */
66
-	public static $schemaTypeDescription = 'The practice of treatment of disease, injury, or deformity by physical methods such as massage, heat treatment, and exercise rather than by drugs or surgery.';
61
+    /**
62
+     * The Schema.org Type Description
63
+     *
64
+     * @var string
65
+     */
66
+    public static $schemaTypeDescription = 'The practice of treatment of disease, injury, or deformity by physical methods such as massage, heat treatment, and exercise rather than by drugs or surgery.';
67 67
 
68 68
 
69
-	/**
70
-	 * @inheritdoc
71
-	 */
72
-	public function getSchemaPropertyNames(): array
73
-	{
74
-		return array_keys($this->getSchemaPropertyExpectedTypes());
75
-	}
69
+    /**
70
+     * @inheritdoc
71
+     */
72
+    public function getSchemaPropertyNames(): array
73
+    {
74
+        return array_keys($this->getSchemaPropertyExpectedTypes());
75
+    }
76 76
 
77 77
 
78
-	/**
79
-	 * @inheritdoc
80
-	 */
81
-	public function getSchemaPropertyExpectedTypes(): array
82
-	{
83
-		return [
84
-		    'actionableFeedbackPolicy' => ['CreativeWork', 'URL'],
85
-		    'additionalProperty' => ['PropertyValue'],
86
-		    'additionalType' => ['URL'],
87
-		    'address' => ['Text', 'PostalAddress'],
88
-		    'aggregateRating' => ['AggregateRating'],
89
-		    'alternateName' => ['Text'],
90
-		    'alumni' => ['Person'],
91
-		    'amenityFeature' => ['LocationFeatureSpecification'],
92
-		    'areaServed' => ['Text', 'Place', 'GeoShape', 'AdministrativeArea'],
93
-		    'award' => ['Text'],
94
-		    'awards' => ['Text'],
95
-		    'branchCode' => ['Text'],
96
-		    'branchOf' => ['Organization'],
97
-		    'brand' => ['Brand', 'Organization'],
98
-		    'contactPoint' => ['ContactPoint'],
99
-		    'contactPoints' => ['ContactPoint'],
100
-		    'containedIn' => ['Place'],
101
-		    'containedInPlace' => ['Place'],
102
-		    'containsPlace' => ['Place'],
103
-		    'correctionsPolicy' => ['URL', 'CreativeWork'],
104
-		    'currenciesAccepted' => ['Text'],
105
-		    'department' => ['Organization'],
106
-		    'description' => ['Text'],
107
-		    'disambiguatingDescription' => ['Text'],
108
-		    'dissolutionDate' => ['Date'],
109
-		    'diversityPolicy' => ['URL', 'CreativeWork'],
110
-		    'diversityStaffingReport' => ['Article', 'URL'],
111
-		    'duns' => ['Text'],
112
-		    'email' => ['Text'],
113
-		    'employee' => ['Person'],
114
-		    'employees' => ['Person'],
115
-		    'ethicsPolicy' => ['CreativeWork', 'URL'],
116
-		    'event' => ['Event'],
117
-		    'events' => ['Event'],
118
-		    'faxNumber' => ['Text'],
119
-		    'founder' => ['Person'],
120
-		    'founders' => ['Person'],
121
-		    'foundingDate' => ['Date'],
122
-		    'foundingLocation' => ['Place'],
123
-		    'funder' => ['Organization', 'Person'],
124
-		    'funding' => ['Grant'],
125
-		    'geo' => ['GeoCoordinates', 'GeoShape'],
126
-		    'geoContains' => ['Place', 'GeospatialGeometry'],
127
-		    'geoCoveredBy' => ['GeospatialGeometry', 'Place'],
128
-		    'geoCovers' => ['GeospatialGeometry', 'Place'],
129
-		    'geoCrosses' => ['GeospatialGeometry', 'Place'],
130
-		    'geoDisjoint' => ['GeospatialGeometry', 'Place'],
131
-		    'geoEquals' => ['GeospatialGeometry', 'Place'],
132
-		    'geoIntersects' => ['GeospatialGeometry', 'Place'],
133
-		    'geoOverlaps' => ['GeospatialGeometry', 'Place'],
134
-		    'geoTouches' => ['GeospatialGeometry', 'Place'],
135
-		    'geoWithin' => ['GeospatialGeometry', 'Place'],
136
-		    'globalLocationNumber' => ['Text'],
137
-		    'hasCredential' => ['EducationalOccupationalCredential'],
138
-		    'hasDriveThroughService' => ['Boolean'],
139
-		    'hasMap' => ['URL', 'Map'],
140
-		    'hasMerchantReturnPolicy' => ['MerchantReturnPolicy'],
141
-		    'hasOfferCatalog' => ['OfferCatalog'],
142
-		    'hasPOS' => ['Place'],
143
-		    'identifier' => ['PropertyValue', 'URL', 'Text'],
144
-		    'image' => ['URL', 'ImageObject'],
145
-		    'interactionStatistic' => ['InteractionCounter'],
146
-		    'isAccessibleForFree' => ['Boolean'],
147
-		    'isicV4' => ['Text'],
148
-		    'iso6523Code' => ['Text'],
149
-		    'keywords' => ['URL', 'DefinedTerm', 'Text'],
150
-		    'knowsAbout' => ['Thing', 'Text', 'URL'],
151
-		    'knowsLanguage' => ['Text', 'Language'],
152
-		    'latitude' => ['Number', 'Text'],
153
-		    'legalName' => ['Text'],
154
-		    'leiCode' => ['Text'],
155
-		    'location' => ['Place', 'Text', 'VirtualLocation', 'PostalAddress'],
156
-		    'logo' => ['ImageObject', 'URL'],
157
-		    'longitude' => ['Text', 'Number'],
158
-		    'mainEntityOfPage' => ['URL', 'CreativeWork'],
159
-		    'makesOffer' => ['Offer'],
160
-		    'map' => ['URL'],
161
-		    'maps' => ['URL'],
162
-		    'maximumAttendeeCapacity' => ['Integer'],
163
-		    'member' => ['Organization', 'Person'],
164
-		    'memberOf' => ['Organization', 'ProgramMembership'],
165
-		    'members' => ['Organization', 'Person'],
166
-		    'naics' => ['Text'],
167
-		    'name' => ['Text'],
168
-		    'nonprofitStatus' => ['NonprofitType'],
169
-		    'numberOfEmployees' => ['QuantitativeValue'],
170
-		    'openingHours' => ['Text'],
171
-		    'openingHoursSpecification' => ['OpeningHoursSpecification'],
172
-		    'ownershipFundingInfo' => ['AboutPage', 'Text', 'CreativeWork', 'URL'],
173
-		    'owns' => ['Product', 'OwnershipInfo'],
174
-		    'parentOrganization' => ['Organization'],
175
-		    'paymentAccepted' => ['Text'],
176
-		    'photo' => ['Photograph', 'ImageObject'],
177
-		    'photos' => ['ImageObject', 'Photograph'],
178
-		    'potentialAction' => ['Action'],
179
-		    'priceRange' => ['Text'],
180
-		    'publicAccess' => ['Boolean'],
181
-		    'publishingPrinciples' => ['CreativeWork', 'URL'],
182
-		    'review' => ['Review'],
183
-		    'reviews' => ['Review'],
184
-		    'sameAs' => ['URL'],
185
-		    'seeks' => ['Demand'],
186
-		    'serviceArea' => ['AdministrativeArea', 'Place', 'GeoShape'],
187
-		    'slogan' => ['Text'],
188
-		    'smokingAllowed' => ['Boolean'],
189
-		    'specialOpeningHoursSpecification' => ['OpeningHoursSpecification'],
190
-		    'sponsor' => ['Organization', 'Person'],
191
-		    'subOrganization' => ['Organization'],
192
-		    'subjectOf' => ['Event', 'CreativeWork'],
193
-		    'supersededBy' => ['Class', 'Property', 'Enumeration'],
194
-		    'taxID' => ['Text'],
195
-		    'telephone' => ['Text'],
196
-		    'tourBookingPage' => ['URL'],
197
-		    'unnamedSourcesPolicy' => ['CreativeWork', 'URL'],
198
-		    'url' => ['URL'],
199
-		    'vatID' => ['Text']
200
-		];
201
-	}
78
+    /**
79
+     * @inheritdoc
80
+     */
81
+    public function getSchemaPropertyExpectedTypes(): array
82
+    {
83
+        return [
84
+            'actionableFeedbackPolicy' => ['CreativeWork', 'URL'],
85
+            'additionalProperty' => ['PropertyValue'],
86
+            'additionalType' => ['URL'],
87
+            'address' => ['Text', 'PostalAddress'],
88
+            'aggregateRating' => ['AggregateRating'],
89
+            'alternateName' => ['Text'],
90
+            'alumni' => ['Person'],
91
+            'amenityFeature' => ['LocationFeatureSpecification'],
92
+            'areaServed' => ['Text', 'Place', 'GeoShape', 'AdministrativeArea'],
93
+            'award' => ['Text'],
94
+            'awards' => ['Text'],
95
+            'branchCode' => ['Text'],
96
+            'branchOf' => ['Organization'],
97
+            'brand' => ['Brand', 'Organization'],
98
+            'contactPoint' => ['ContactPoint'],
99
+            'contactPoints' => ['ContactPoint'],
100
+            'containedIn' => ['Place'],
101
+            'containedInPlace' => ['Place'],
102
+            'containsPlace' => ['Place'],
103
+            'correctionsPolicy' => ['URL', 'CreativeWork'],
104
+            'currenciesAccepted' => ['Text'],
105
+            'department' => ['Organization'],
106
+            'description' => ['Text'],
107
+            'disambiguatingDescription' => ['Text'],
108
+            'dissolutionDate' => ['Date'],
109
+            'diversityPolicy' => ['URL', 'CreativeWork'],
110
+            'diversityStaffingReport' => ['Article', 'URL'],
111
+            'duns' => ['Text'],
112
+            'email' => ['Text'],
113
+            'employee' => ['Person'],
114
+            'employees' => ['Person'],
115
+            'ethicsPolicy' => ['CreativeWork', 'URL'],
116
+            'event' => ['Event'],
117
+            'events' => ['Event'],
118
+            'faxNumber' => ['Text'],
119
+            'founder' => ['Person'],
120
+            'founders' => ['Person'],
121
+            'foundingDate' => ['Date'],
122
+            'foundingLocation' => ['Place'],
123
+            'funder' => ['Organization', 'Person'],
124
+            'funding' => ['Grant'],
125
+            'geo' => ['GeoCoordinates', 'GeoShape'],
126
+            'geoContains' => ['Place', 'GeospatialGeometry'],
127
+            'geoCoveredBy' => ['GeospatialGeometry', 'Place'],
128
+            'geoCovers' => ['GeospatialGeometry', 'Place'],
129
+            'geoCrosses' => ['GeospatialGeometry', 'Place'],
130
+            'geoDisjoint' => ['GeospatialGeometry', 'Place'],
131
+            'geoEquals' => ['GeospatialGeometry', 'Place'],
132
+            'geoIntersects' => ['GeospatialGeometry', 'Place'],
133
+            'geoOverlaps' => ['GeospatialGeometry', 'Place'],
134
+            'geoTouches' => ['GeospatialGeometry', 'Place'],
135
+            'geoWithin' => ['GeospatialGeometry', 'Place'],
136
+            'globalLocationNumber' => ['Text'],
137
+            'hasCredential' => ['EducationalOccupationalCredential'],
138
+            'hasDriveThroughService' => ['Boolean'],
139
+            'hasMap' => ['URL', 'Map'],
140
+            'hasMerchantReturnPolicy' => ['MerchantReturnPolicy'],
141
+            'hasOfferCatalog' => ['OfferCatalog'],
142
+            'hasPOS' => ['Place'],
143
+            'identifier' => ['PropertyValue', 'URL', 'Text'],
144
+            'image' => ['URL', 'ImageObject'],
145
+            'interactionStatistic' => ['InteractionCounter'],
146
+            'isAccessibleForFree' => ['Boolean'],
147
+            'isicV4' => ['Text'],
148
+            'iso6523Code' => ['Text'],
149
+            'keywords' => ['URL', 'DefinedTerm', 'Text'],
150
+            'knowsAbout' => ['Thing', 'Text', 'URL'],
151
+            'knowsLanguage' => ['Text', 'Language'],
152
+            'latitude' => ['Number', 'Text'],
153
+            'legalName' => ['Text'],
154
+            'leiCode' => ['Text'],
155
+            'location' => ['Place', 'Text', 'VirtualLocation', 'PostalAddress'],
156
+            'logo' => ['ImageObject', 'URL'],
157
+            'longitude' => ['Text', 'Number'],
158
+            'mainEntityOfPage' => ['URL', 'CreativeWork'],
159
+            'makesOffer' => ['Offer'],
160
+            'map' => ['URL'],
161
+            'maps' => ['URL'],
162
+            'maximumAttendeeCapacity' => ['Integer'],
163
+            'member' => ['Organization', 'Person'],
164
+            'memberOf' => ['Organization', 'ProgramMembership'],
165
+            'members' => ['Organization', 'Person'],
166
+            'naics' => ['Text'],
167
+            'name' => ['Text'],
168
+            'nonprofitStatus' => ['NonprofitType'],
169
+            'numberOfEmployees' => ['QuantitativeValue'],
170
+            'openingHours' => ['Text'],
171
+            'openingHoursSpecification' => ['OpeningHoursSpecification'],
172
+            'ownershipFundingInfo' => ['AboutPage', 'Text', 'CreativeWork', 'URL'],
173
+            'owns' => ['Product', 'OwnershipInfo'],
174
+            'parentOrganization' => ['Organization'],
175
+            'paymentAccepted' => ['Text'],
176
+            'photo' => ['Photograph', 'ImageObject'],
177
+            'photos' => ['ImageObject', 'Photograph'],
178
+            'potentialAction' => ['Action'],
179
+            'priceRange' => ['Text'],
180
+            'publicAccess' => ['Boolean'],
181
+            'publishingPrinciples' => ['CreativeWork', 'URL'],
182
+            'review' => ['Review'],
183
+            'reviews' => ['Review'],
184
+            'sameAs' => ['URL'],
185
+            'seeks' => ['Demand'],
186
+            'serviceArea' => ['AdministrativeArea', 'Place', 'GeoShape'],
187
+            'slogan' => ['Text'],
188
+            'smokingAllowed' => ['Boolean'],
189
+            'specialOpeningHoursSpecification' => ['OpeningHoursSpecification'],
190
+            'sponsor' => ['Organization', 'Person'],
191
+            'subOrganization' => ['Organization'],
192
+            'subjectOf' => ['Event', 'CreativeWork'],
193
+            'supersededBy' => ['Class', 'Property', 'Enumeration'],
194
+            'taxID' => ['Text'],
195
+            'telephone' => ['Text'],
196
+            'tourBookingPage' => ['URL'],
197
+            'unnamedSourcesPolicy' => ['CreativeWork', 'URL'],
198
+            'url' => ['URL'],
199
+            'vatID' => ['Text']
200
+        ];
201
+    }
202 202
 
203 203
 
204
-	/**
205
-	 * @inheritdoc
206
-	 */
207
-	public function getSchemaPropertyDescriptions(): array
208
-	{
209
-		return [
210
-		    'actionableFeedbackPolicy' => 'For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement about public engagement activities (for news media, the newsroom’s), including involving the public - digitally or otherwise -- in coverage decisions, reporting and activities after publication.',
211
-		    'additionalProperty' => 'A property-value pair representing an additional characteristic of the entity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.  Note: Publishers should be aware that applications designed to use specific schema.org properties (e.g. https://schema.org/width, https://schema.org/color, https://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism. ',
212
-		    'additionalType' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the \'typeof\' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.',
213
-		    'address' => 'Physical address of the item.',
214
-		    'aggregateRating' => 'The overall rating, based on a collection of reviews or ratings, of the item.',
215
-		    'alternateName' => 'An alias for the item.',
216
-		    'alumni' => 'Alumni of an organization.',
217
-		    'amenityFeature' => 'An amenity feature (e.g. a characteristic or service) of the Accommodation. This generic property does not make a statement about whether the feature is included in an offer for the main accommodation or available at extra costs.',
218
-		    'areaServed' => 'The geographic area where a service or offered item is provided.',
219
-		    'award' => 'An award won by or for this item.',
220
-		    'awards' => 'Awards won by or for this item.',
221
-		    'branchCode' => 'A short textual code (also called "store code") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs.  For example, in the URL http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code "3047" is a branchCode for a particular branch.       ',
222
-		    'branchOf' => 'The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]].',
223
-		    'brand' => 'The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.',
224
-		    'contactPoint' => 'A contact point for a person or organization.',
225
-		    'contactPoints' => 'A contact point for a person or organization.',
226
-		    'containedIn' => 'The basic containment relation between a place and one that contains it.',
227
-		    'containedInPlace' => 'The basic containment relation between a place and one that contains it.',
228
-		    'containsPlace' => 'The basic containment relation between a place and another that it contains.',
229
-		    'correctionsPolicy' => 'For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors.',
230
-		    'currenciesAccepted' => 'The currency accepted.  Use standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. "BTC"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. "Ithaca HOUR".',
231
-		    'department' => 'A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.',
232
-		    'description' => 'A description of the item.',
233
-		    'disambiguatingDescription' => 'A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.',
234
-		    'dissolutionDate' => 'The date that this organization was dissolved.',
235
-		    'diversityPolicy' => 'Statement on diversity policy by an [[Organization]] e.g. a [[NewsMediaOrganization]]. For a [[NewsMediaOrganization]], a statement describing the newsroom’s diversity policy on both staffing and sources, typically providing staffing data.',
236
-		    'diversityStaffingReport' => 'For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a report on staffing diversity issues. In a news context this might be for example ASNE or RTDNA (US) reports, or self-reported.',
237
-		    'duns' => 'The Dun & Bradstreet DUNS number for identifying an organization or business person.',
238
-		    'email' => 'Email address.',
239
-		    'employee' => 'Someone working for this organization.',
240
-		    'employees' => 'People working for this organization.',
241
-		    'ethicsPolicy' => 'Statement about ethics policy, e.g. of a [[NewsMediaOrganization]] regarding journalistic and publishing practices, or of a [[Restaurant]], a page describing food source policies. In the case of a [[NewsMediaOrganization]], an ethicsPolicy is typically a statement describing the personal, organizational, and corporate standards of behavior expected by the organization.',
242
-		    'event' => 'Upcoming or past event associated with this place, organization, or action.',
243
-		    'events' => 'Upcoming or past events associated with this place or organization.',
244
-		    'faxNumber' => 'The fax number.',
245
-		    'founder' => 'A person who founded this organization.',
246
-		    'founders' => 'A person who founded this organization.',
247
-		    'foundingDate' => 'The date that this organization was founded.',
248
-		    'foundingLocation' => 'The place where the Organization was founded.',
249
-		    'funder' => 'A person or organization that supports (sponsors) something through some kind of financial contribution.',
250
-		    'funding' => 'A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]].',
251
-		    'geo' => 'The geo coordinates of the place.',
252
-		    'geoContains' => 'Represents a relationship between two geometries (or the places they represent), relating a containing geometry to a contained geometry. "a contains b iff no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
253
-		    'geoCoveredBy' => 'Represents a relationship between two geometries (or the places they represent), relating a geometry to another that covers it. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
254
-		    'geoCovers' => 'Represents a relationship between two geometries (or the places they represent), relating a covering geometry to a covered geometry. "Every point of b is a point of (the interior or boundary of) a". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
255
-		    'geoCrosses' => 'Represents a relationship between two geometries (or the places they represent), relating a geometry to another that crosses it: "a crosses b: they have some but not all interior points in common, and the dimension of the intersection is less than that of at least one of them". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
256
-		    'geoDisjoint' => 'Represents spatial relations in which two geometries (or the places they represent) are topologically disjoint: "they have no point in common. They form a set of disconnected geometries." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)',
257
-		    'geoEquals' => 'Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship).',
258
-		    'geoIntersects' => 'Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
259
-		    'geoOverlaps' => 'Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
260
-		    'geoTouches' => 'Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)',
261
-		    'geoWithin' => 'Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
262
-		    'globalLocationNumber' => 'The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.',
263
-		    'hasCredential' => 'A credential awarded to the Person or Organization.',
264
-		    'hasDriveThroughService' => 'Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users.',
265
-		    'hasMap' => 'A URL to a map of the place.',
266
-		    'hasMerchantReturnPolicy' => 'Specifies a MerchantReturnPolicy that may be applicable.',
267
-		    'hasOfferCatalog' => 'Indicates an OfferCatalog listing for this Organization, Person, or Service.',
268
-		    'hasPOS' => 'Points-of-Sales operated by the organization or person.',
269
-		    'identifier' => 'The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.         ',
270
-		    'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
271
-		    'interactionStatistic' => 'The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used.',
272
-		    'isAccessibleForFree' => 'A flag to signal that the item, event, or place is accessible for free.',
273
-		    'isicV4' => 'The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.',
274
-		    'iso6523Code' => 'An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. ',
275
-		    'keywords' => 'Keywords or tags used to describe some item. Multiple textual entries in a keywords list are typically delimited by commas, or by repeating the property.',
276
-		    'knowsAbout' => 'Of a [[Person]], and less typically of an [[Organization]], to indicate a topic that is known about - suggesting possible expertise but not implying it. We do not distinguish skill levels here, or relate this to educational content, events, objectives or [[JobPosting]] descriptions.',
277
-		    'knowsLanguage' => 'Of a [[Person]], and less typically of an [[Organization]], to indicate a known language. We do not distinguish skill levels or reading/writing/speaking/signing here. Use language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47).',
278
-		    'latitude' => 'The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).',
279
-		    'legalName' => 'The official name of the organization, e.g. the registered company name.',
280
-		    'leiCode' => 'An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.',
281
-		    'location' => 'The location of, for example, where an event is happening, where an organization is located, or where an action takes place.',
282
-		    'logo' => 'An associated logo.',
283
-		    'longitude' => 'The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).',
284
-		    'mainEntityOfPage' => 'Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.',
285
-		    'makesOffer' => 'A pointer to products or services offered by the organization or person.',
286
-		    'map' => 'A URL to a map of the place.',
287
-		    'maps' => 'A URL to a map of the place.',
288
-		    'maximumAttendeeCapacity' => 'The total number of individuals that may attend an event or venue.',
289
-		    'member' => 'A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.',
290
-		    'memberOf' => 'An Organization (or ProgramMembership) to which this Person or Organization belongs.',
291
-		    'members' => 'A member of this organization.',
292
-		    'naics' => 'The North American Industry Classification System (NAICS) code for a particular organization or business person.',
293
-		    'name' => 'The name of the item.',
294
-		    'nonprofitStatus' => 'nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business.',
295
-		    'numberOfEmployees' => 'The number of employees in an organization, e.g. business.',
296
-		    'openingHours' => 'The general opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas \',\' separating each day. Day or time ranges are specified using a hyphen \'-\'.  * Days are specified using the following two-letter combinations: ```Mo```, ```Tu```, ```We```, ```Th```, ```Fr```, ```Sa```, ```Su```. * Times are specified using 24:00 format. For example, 3pm is specified as ```15:00```, 10am as ```10:00```.  * Here is an example: <code><time itemprop="openingHours" datetime="Tu,Th 16:00-20:00">Tuesdays and Thursdays 4-8pm</time></code>. * If a business is open 7 days a week, then it can be specified as <code><time itemprop="openingHours" datetime="Mo-Su">Monday through Sunday, all day</time></code>.',
297
-		    'openingHoursSpecification' => 'The opening hours of a certain place.',
298
-		    'ownershipFundingInfo' => 'For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a description of organizational ownership structure; funding and grants. In a news/media setting, this is with particular reference to editorial independence.   Note that the [[funder]] is also available and can be used to make basic funder information machine-readable.',
299
-		    'owns' => 'Products owned by the organization or person.',
300
-		    'parentOrganization' => 'The larger organization that this organization is a [[subOrganization]] of, if any.',
301
-		    'paymentAccepted' => 'Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.',
302
-		    'photo' => 'A photograph of this place.',
303
-		    'photos' => 'Photographs of this place.',
304
-		    'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
305
-		    'priceRange' => 'The price range of the business, for example ```$$$```.',
306
-		    'publicAccess' => 'A flag to signal that the [[Place]] is open to public visitors.  If this property is omitted there is no assumed default boolean value',
307
-		    'publishingPrinciples' => 'The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual, e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]].  While such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology. ',
308
-		    'review' => 'A review of the item.',
309
-		    'reviews' => 'Review of the item.',
310
-		    'sameAs' => 'URL of a reference Web page that unambiguously indicates the item\'s identity. E.g. the URL of the item\'s Wikipedia page, Wikidata entry, or official website.',
311
-		    'seeks' => 'A pointer to products or services sought by the organization or person (demand).',
312
-		    'serviceArea' => 'The geographic area where the service is provided.',
313
-		    'slogan' => 'A slogan or motto associated with the item.',
314
-		    'smokingAllowed' => 'Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room.',
315
-		    'specialOpeningHoursSpecification' => 'The special opening hours of a certain place.  Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].       ',
316
-		    'sponsor' => 'A person or organization that supports a thing through a pledge, promise, or financial contribution. E.g. a sponsor of a Medical Study or a corporate sponsor of an event.',
317
-		    'subOrganization' => 'A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific \'department\' property.',
318
-		    'subjectOf' => 'A CreativeWork or Event about this Thing.',
319
-		    'supersededBy' => 'Relates a term (i.e. a property, class or enumeration) to one that supersedes it.',
320
-		    'taxID' => 'The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.',
321
-		    'telephone' => 'The telephone number.',
322
-		    'tourBookingPage' => 'A page providing information on how to book a tour of some [[Place]], such as an [[Accommodation]] or [[ApartmentComplex]] in a real estate setting, as well as other kinds of tours as appropriate.',
323
-		    'unnamedSourcesPolicy' => 'For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required.',
324
-		    'url' => 'URL of the item.',
325
-		    'vatID' => 'The Value-added Tax ID of the organization or person.'
326
-		];
327
-	}
204
+    /**
205
+     * @inheritdoc
206
+     */
207
+    public function getSchemaPropertyDescriptions(): array
208
+    {
209
+        return [
210
+            'actionableFeedbackPolicy' => 'For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement about public engagement activities (for news media, the newsroom’s), including involving the public - digitally or otherwise -- in coverage decisions, reporting and activities after publication.',
211
+            'additionalProperty' => 'A property-value pair representing an additional characteristic of the entity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.  Note: Publishers should be aware that applications designed to use specific schema.org properties (e.g. https://schema.org/width, https://schema.org/color, https://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism. ',
212
+            'additionalType' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the \'typeof\' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.',
213
+            'address' => 'Physical address of the item.',
214
+            'aggregateRating' => 'The overall rating, based on a collection of reviews or ratings, of the item.',
215
+            'alternateName' => 'An alias for the item.',
216
+            'alumni' => 'Alumni of an organization.',
217
+            'amenityFeature' => 'An amenity feature (e.g. a characteristic or service) of the Accommodation. This generic property does not make a statement about whether the feature is included in an offer for the main accommodation or available at extra costs.',
218
+            'areaServed' => 'The geographic area where a service or offered item is provided.',
219
+            'award' => 'An award won by or for this item.',
220
+            'awards' => 'Awards won by or for this item.',
221
+            'branchCode' => 'A short textual code (also called "store code") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs.  For example, in the URL http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code "3047" is a branchCode for a particular branch.       ',
222
+            'branchOf' => 'The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]].',
223
+            'brand' => 'The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.',
224
+            'contactPoint' => 'A contact point for a person or organization.',
225
+            'contactPoints' => 'A contact point for a person or organization.',
226
+            'containedIn' => 'The basic containment relation between a place and one that contains it.',
227
+            'containedInPlace' => 'The basic containment relation between a place and one that contains it.',
228
+            'containsPlace' => 'The basic containment relation between a place and another that it contains.',
229
+            'correctionsPolicy' => 'For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors.',
230
+            'currenciesAccepted' => 'The currency accepted.  Use standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. "BTC"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. "Ithaca HOUR".',
231
+            'department' => 'A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.',
232
+            'description' => 'A description of the item.',
233
+            'disambiguatingDescription' => 'A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.',
234
+            'dissolutionDate' => 'The date that this organization was dissolved.',
235
+            'diversityPolicy' => 'Statement on diversity policy by an [[Organization]] e.g. a [[NewsMediaOrganization]]. For a [[NewsMediaOrganization]], a statement describing the newsroom’s diversity policy on both staffing and sources, typically providing staffing data.',
236
+            'diversityStaffingReport' => 'For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a report on staffing diversity issues. In a news context this might be for example ASNE or RTDNA (US) reports, or self-reported.',
237
+            'duns' => 'The Dun & Bradstreet DUNS number for identifying an organization or business person.',
238
+            'email' => 'Email address.',
239
+            'employee' => 'Someone working for this organization.',
240
+            'employees' => 'People working for this organization.',
241
+            'ethicsPolicy' => 'Statement about ethics policy, e.g. of a [[NewsMediaOrganization]] regarding journalistic and publishing practices, or of a [[Restaurant]], a page describing food source policies. In the case of a [[NewsMediaOrganization]], an ethicsPolicy is typically a statement describing the personal, organizational, and corporate standards of behavior expected by the organization.',
242
+            'event' => 'Upcoming or past event associated with this place, organization, or action.',
243
+            'events' => 'Upcoming or past events associated with this place or organization.',
244
+            'faxNumber' => 'The fax number.',
245
+            'founder' => 'A person who founded this organization.',
246
+            'founders' => 'A person who founded this organization.',
247
+            'foundingDate' => 'The date that this organization was founded.',
248
+            'foundingLocation' => 'The place where the Organization was founded.',
249
+            'funder' => 'A person or organization that supports (sponsors) something through some kind of financial contribution.',
250
+            'funding' => 'A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]].',
251
+            'geo' => 'The geo coordinates of the place.',
252
+            'geoContains' => 'Represents a relationship between two geometries (or the places they represent), relating a containing geometry to a contained geometry. "a contains b iff no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
253
+            'geoCoveredBy' => 'Represents a relationship between two geometries (or the places they represent), relating a geometry to another that covers it. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
254
+            'geoCovers' => 'Represents a relationship between two geometries (or the places they represent), relating a covering geometry to a covered geometry. "Every point of b is a point of (the interior or boundary of) a". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
255
+            'geoCrosses' => 'Represents a relationship between two geometries (or the places they represent), relating a geometry to another that crosses it: "a crosses b: they have some but not all interior points in common, and the dimension of the intersection is less than that of at least one of them". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
256
+            'geoDisjoint' => 'Represents spatial relations in which two geometries (or the places they represent) are topologically disjoint: "they have no point in common. They form a set of disconnected geometries." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)',
257
+            'geoEquals' => 'Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship).',
258
+            'geoIntersects' => 'Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
259
+            'geoOverlaps' => 'Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
260
+            'geoTouches' => 'Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)',
261
+            'geoWithin' => 'Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).',
262
+            'globalLocationNumber' => 'The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.',
263
+            'hasCredential' => 'A credential awarded to the Person or Organization.',
264
+            'hasDriveThroughService' => 'Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users.',
265
+            'hasMap' => 'A URL to a map of the place.',
266
+            'hasMerchantReturnPolicy' => 'Specifies a MerchantReturnPolicy that may be applicable.',
267
+            'hasOfferCatalog' => 'Indicates an OfferCatalog listing for this Organization, Person, or Service.',
268
+            'hasPOS' => 'Points-of-Sales operated by the organization or person.',
269
+            'identifier' => 'The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.         ',
270
+            'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
271
+            'interactionStatistic' => 'The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used.',
272
+            'isAccessibleForFree' => 'A flag to signal that the item, event, or place is accessible for free.',
273
+            'isicV4' => 'The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.',
274
+            'iso6523Code' => 'An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. ',
275
+            'keywords' => 'Keywords or tags used to describe some item. Multiple textual entries in a keywords list are typically delimited by commas, or by repeating the property.',
276
+            'knowsAbout' => 'Of a [[Person]], and less typically of an [[Organization]], to indicate a topic that is known about - suggesting possible expertise but not implying it. We do not distinguish skill levels here, or relate this to educational content, events, objectives or [[JobPosting]] descriptions.',
277
+            'knowsLanguage' => 'Of a [[Person]], and less typically of an [[Organization]], to indicate a known language. We do not distinguish skill levels or reading/writing/speaking/signing here. Use language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47).',
278
+            'latitude' => 'The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).',
279
+            'legalName' => 'The official name of the organization, e.g. the registered company name.',
280
+            'leiCode' => 'An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.',
281
+            'location' => 'The location of, for example, where an event is happening, where an organization is located, or where an action takes place.',
282
+            'logo' => 'An associated logo.',
283
+            'longitude' => 'The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).',
284
+            'mainEntityOfPage' => 'Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.',
285
+            'makesOffer' => 'A pointer to products or services offered by the organization or person.',
286
+            'map' => 'A URL to a map of the place.',
287
+            'maps' => 'A URL to a map of the place.',
288
+            'maximumAttendeeCapacity' => 'The total number of individuals that may attend an event or venue.',
289
+            'member' => 'A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.',
290
+            'memberOf' => 'An Organization (or ProgramMembership) to which this Person or Organization belongs.',
291
+            'members' => 'A member of this organization.',
292
+            'naics' => 'The North American Industry Classification System (NAICS) code for a particular organization or business person.',
293
+            'name' => 'The name of the item.',
294
+            'nonprofitStatus' => 'nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business.',
295
+            'numberOfEmployees' => 'The number of employees in an organization, e.g. business.',
296
+            'openingHours' => 'The general opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas \',\' separating each day. Day or time ranges are specified using a hyphen \'-\'.  * Days are specified using the following two-letter combinations: ```Mo```, ```Tu```, ```We```, ```Th```, ```Fr```, ```Sa```, ```Su```. * Times are specified using 24:00 format. For example, 3pm is specified as ```15:00```, 10am as ```10:00```.  * Here is an example: <code><time itemprop="openingHours" datetime="Tu,Th 16:00-20:00">Tuesdays and Thursdays 4-8pm</time></code>. * If a business is open 7 days a week, then it can be specified as <code><time itemprop="openingHours" datetime="Mo-Su">Monday through Sunday, all day</time></code>.',
297
+            'openingHoursSpecification' => 'The opening hours of a certain place.',
298
+            'ownershipFundingInfo' => 'For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a description of organizational ownership structure; funding and grants. In a news/media setting, this is with particular reference to editorial independence.   Note that the [[funder]] is also available and can be used to make basic funder information machine-readable.',
299
+            'owns' => 'Products owned by the organization or person.',
300
+            'parentOrganization' => 'The larger organization that this organization is a [[subOrganization]] of, if any.',
301
+            'paymentAccepted' => 'Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.',
302
+            'photo' => 'A photograph of this place.',
303
+            'photos' => 'Photographs of this place.',
304
+            'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
305
+            'priceRange' => 'The price range of the business, for example ```$$$```.',
306
+            'publicAccess' => 'A flag to signal that the [[Place]] is open to public visitors.  If this property is omitted there is no assumed default boolean value',
307
+            'publishingPrinciples' => 'The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual, e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]].  While such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology. ',
308
+            'review' => 'A review of the item.',
309
+            'reviews' => 'Review of the item.',
310
+            'sameAs' => 'URL of a reference Web page that unambiguously indicates the item\'s identity. E.g. the URL of the item\'s Wikipedia page, Wikidata entry, or official website.',
311
+            'seeks' => 'A pointer to products or services sought by the organization or person (demand).',
312
+            'serviceArea' => 'The geographic area where the service is provided.',
313
+            'slogan' => 'A slogan or motto associated with the item.',
314
+            'smokingAllowed' => 'Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room.',
315
+            'specialOpeningHoursSpecification' => 'The special opening hours of a certain place.  Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].       ',
316
+            'sponsor' => 'A person or organization that supports a thing through a pledge, promise, or financial contribution. E.g. a sponsor of a Medical Study or a corporate sponsor of an event.',
317
+            'subOrganization' => 'A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific \'department\' property.',
318
+            'subjectOf' => 'A CreativeWork or Event about this Thing.',
319
+            'supersededBy' => 'Relates a term (i.e. a property, class or enumeration) to one that supersedes it.',
320
+            'taxID' => 'The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.',
321
+            'telephone' => 'The telephone number.',
322
+            'tourBookingPage' => 'A page providing information on how to book a tour of some [[Place]], such as an [[Accommodation]] or [[ApartmentComplex]] in a real estate setting, as well as other kinds of tours as appropriate.',
323
+            'unnamedSourcesPolicy' => 'For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required.',
324
+            'url' => 'URL of the item.',
325
+            'vatID' => 'The Value-added Tax ID of the organization or person.'
326
+        ];
327
+    }
328 328
 
329 329
 
330
-	/**
331
-	 * @inheritdoc
332
-	 */
333
-	public function getGoogleRequiredSchema(): array
334
-	{
335
-		return ['description', 'name'];
336
-	}
330
+    /**
331
+     * @inheritdoc
332
+     */
333
+    public function getGoogleRequiredSchema(): array
334
+    {
335
+        return ['description', 'name'];
336
+    }
337 337
 
338 338
 
339
-	/**
340
-	 * @inheritdoc
341
-	 */
342
-	public function getGoogleRecommendedSchema(): array
343
-	{
344
-		return ['image', 'url'];
345
-	}
339
+    /**
340
+     * @inheritdoc
341
+     */
342
+    public function getGoogleRecommendedSchema(): array
343
+    {
344
+        return ['image', 'url'];
345
+    }
346 346
 
347 347
 
348
-	/**
349
-	 * @inheritdoc
350
-	 */
351
-	public function defineRules(): array
352
-	{
353
-		$rules = parent::defineRules();
354
-		    $rules = array_merge($rules, [
355
-		        [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
356
-		        [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
357
-		        [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
358
-		    ]);
348
+    /**
349
+     * @inheritdoc
350
+     */
351
+    public function defineRules(): array
352
+    {
353
+        $rules = parent::defineRules();
354
+            $rules = array_merge($rules, [
355
+                [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
356
+                [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
357
+                [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
358
+            ]);
359 359
 
360
-		    return $rules;
361
-	}
360
+            return $rules;
361
+    }
362 362
 }
Please login to merge, or discard this patch.
src/models/jsonld/StoreCreditRefund.php 1 patch
Indentation   +122 added lines, -122 removed lines patch added patch discarded remove patch
@@ -24,126 +24,126 @@
 block discarded – undo
24 24
  */
25 25
 class StoreCreditRefund extends MetaJsonLd implements StoreCreditRefundInterface, RefundTypeEnumerationInterface, EnumerationInterface, IntangibleInterface, ThingInterface
26 26
 {
27
-	use StoreCreditRefundTrait;
28
-	use RefundTypeEnumerationTrait;
29
-	use EnumerationTrait;
30
-	use IntangibleTrait;
31
-	use ThingTrait;
32
-
33
-	/**
34
-	 * The Schema.org Type Name
35
-	 *
36
-	 * @var string
37
-	 */
38
-	public static $schemaTypeName = 'StoreCreditRefund';
39
-
40
-	/**
41
-	 * The Schema.org Type Scope
42
-	 *
43
-	 * @var string
44
-	 */
45
-	public static $schemaTypeScope = 'https://schema.org/StoreCreditRefund';
46
-
47
-	/**
48
-	 * The Schema.org Type Extends
49
-	 *
50
-	 * @var string
51
-	 */
52
-	public static $schemaTypeExtends = 'RefundTypeEnumeration';
53
-
54
-	/**
55
-	 * The Schema.org Type Description
56
-	 *
57
-	 * @var string
58
-	 */
59
-	public static $schemaTypeDescription = 'Specifies that the customer receives a store credit as refund when returning a product.';
60
-
61
-
62
-	/**
63
-	 * @inheritdoc
64
-	 */
65
-	public function getSchemaPropertyNames(): array
66
-	{
67
-		return array_keys($this->getSchemaPropertyExpectedTypes());
68
-	}
69
-
70
-
71
-	/**
72
-	 * @inheritdoc
73
-	 */
74
-	public function getSchemaPropertyExpectedTypes(): array
75
-	{
76
-		return [
77
-		    'additionalType' => ['URL'],
78
-		    'alternateName' => ['Text'],
79
-		    'description' => ['Text'],
80
-		    'disambiguatingDescription' => ['Text'],
81
-		    'identifier' => ['PropertyValue', 'URL', 'Text'],
82
-		    'image' => ['URL', 'ImageObject'],
83
-		    'mainEntityOfPage' => ['URL', 'CreativeWork'],
84
-		    'name' => ['Text'],
85
-		    'potentialAction' => ['Action'],
86
-		    'sameAs' => ['URL'],
87
-		    'subjectOf' => ['Event', 'CreativeWork'],
88
-		    'supersededBy' => ['Class', 'Property', 'Enumeration'],
89
-		    'url' => ['URL']
90
-		];
91
-	}
92
-
93
-
94
-	/**
95
-	 * @inheritdoc
96
-	 */
97
-	public function getSchemaPropertyDescriptions(): array
98
-	{
99
-		return [
100
-		    'additionalType' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the \'typeof\' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.',
101
-		    'alternateName' => 'An alias for the item.',
102
-		    'description' => 'A description of the item.',
103
-		    'disambiguatingDescription' => 'A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.',
104
-		    'identifier' => 'The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.         ',
105
-		    'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
106
-		    'mainEntityOfPage' => 'Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.',
107
-		    'name' => 'The name of the item.',
108
-		    'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
109
-		    'sameAs' => 'URL of a reference Web page that unambiguously indicates the item\'s identity. E.g. the URL of the item\'s Wikipedia page, Wikidata entry, or official website.',
110
-		    'subjectOf' => 'A CreativeWork or Event about this Thing.',
111
-		    'supersededBy' => 'Relates a term (i.e. a property, class or enumeration) to one that supersedes it.',
112
-		    'url' => 'URL of the item.'
113
-		];
114
-	}
115
-
116
-
117
-	/**
118
-	 * @inheritdoc
119
-	 */
120
-	public function getGoogleRequiredSchema(): array
121
-	{
122
-		return ['description', 'name'];
123
-	}
124
-
125
-
126
-	/**
127
-	 * @inheritdoc
128
-	 */
129
-	public function getGoogleRecommendedSchema(): array
130
-	{
131
-		return ['image', 'url'];
132
-	}
133
-
134
-
135
-	/**
136
-	 * @inheritdoc
137
-	 */
138
-	public function defineRules(): array
139
-	{
140
-		$rules = parent::defineRules();
141
-		    $rules = array_merge($rules, [
142
-		        [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
143
-		        [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
144
-		        [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
145
-		    ]);
146
-
147
-		    return $rules;
148
-	}
27
+    use StoreCreditRefundTrait;
28
+    use RefundTypeEnumerationTrait;
29
+    use EnumerationTrait;
30
+    use IntangibleTrait;
31
+    use ThingTrait;
32
+
33
+    /**
34
+     * The Schema.org Type Name
35
+     *
36
+     * @var string
37
+     */
38
+    public static $schemaTypeName = 'StoreCreditRefund';
39
+
40
+    /**
41
+     * The Schema.org Type Scope
42
+     *
43
+     * @var string
44
+     */
45
+    public static $schemaTypeScope = 'https://schema.org/StoreCreditRefund';
46
+
47
+    /**
48
+     * The Schema.org Type Extends
49
+     *
50
+     * @var string
51
+     */
52
+    public static $schemaTypeExtends = 'RefundTypeEnumeration';
53
+
54
+    /**
55
+     * The Schema.org Type Description
56
+     *
57
+     * @var string
58
+     */
59
+    public static $schemaTypeDescription = 'Specifies that the customer receives a store credit as refund when returning a product.';
60
+
61
+
62
+    /**
63
+     * @inheritdoc
64
+     */
65
+    public function getSchemaPropertyNames(): array
66
+    {
67
+        return array_keys($this->getSchemaPropertyExpectedTypes());
68
+    }
69
+
70
+
71
+    /**
72
+     * @inheritdoc
73
+     */
74
+    public function getSchemaPropertyExpectedTypes(): array
75
+    {
76
+        return [
77
+            'additionalType' => ['URL'],
78
+            'alternateName' => ['Text'],
79
+            'description' => ['Text'],
80
+            'disambiguatingDescription' => ['Text'],
81
+            'identifier' => ['PropertyValue', 'URL', 'Text'],
82
+            'image' => ['URL', 'ImageObject'],
83
+            'mainEntityOfPage' => ['URL', 'CreativeWork'],
84
+            'name' => ['Text'],
85
+            'potentialAction' => ['Action'],
86
+            'sameAs' => ['URL'],
87
+            'subjectOf' => ['Event', 'CreativeWork'],
88
+            'supersededBy' => ['Class', 'Property', 'Enumeration'],
89
+            'url' => ['URL']
90
+        ];
91
+    }
92
+
93
+
94
+    /**
95
+     * @inheritdoc
96
+     */
97
+    public function getSchemaPropertyDescriptions(): array
98
+    {
99
+        return [
100
+            'additionalType' => 'An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the \'typeof\' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.',
101
+            'alternateName' => 'An alias for the item.',
102
+            'description' => 'A description of the item.',
103
+            'disambiguatingDescription' => 'A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.',
104
+            'identifier' => 'The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.         ',
105
+            'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
106
+            'mainEntityOfPage' => 'Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.',
107
+            'name' => 'The name of the item.',
108
+            'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
109
+            'sameAs' => 'URL of a reference Web page that unambiguously indicates the item\'s identity. E.g. the URL of the item\'s Wikipedia page, Wikidata entry, or official website.',
110
+            'subjectOf' => 'A CreativeWork or Event about this Thing.',
111
+            'supersededBy' => 'Relates a term (i.e. a property, class or enumeration) to one that supersedes it.',
112
+            'url' => 'URL of the item.'
113
+        ];
114
+    }
115
+
116
+
117
+    /**
118
+     * @inheritdoc
119
+     */
120
+    public function getGoogleRequiredSchema(): array
121
+    {
122
+        return ['description', 'name'];
123
+    }
124
+
125
+
126
+    /**
127
+     * @inheritdoc
128
+     */
129
+    public function getGoogleRecommendedSchema(): array
130
+    {
131
+        return ['image', 'url'];
132
+    }
133
+
134
+
135
+    /**
136
+     * @inheritdoc
137
+     */
138
+    public function defineRules(): array
139
+    {
140
+        $rules = parent::defineRules();
141
+            $rules = array_merge($rules, [
142
+                [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
143
+                [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
144
+                [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
145
+            ]);
146
+
147
+            return $rules;
148
+    }
149 149
 }
Please login to merge, or discard this patch.