Passed
Push — develop ( 3f2a95...ede512 )
by Andrew
09:17
created
src/models/jsonld/Nonprofit501c16.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 Nonprofit501c16 extends MetaJsonLd implements Nonprofit501c16Interface, USNonprofitTypeInterface, NonprofitTypeInterface, EnumerationInterface, IntangibleInterface, ThingInterface
26 26
 {
27
-	use Nonprofit501c16Trait;
28
-	use USNonprofitTypeTrait;
29
-	use NonprofitTypeTrait;
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 = 'Nonprofit501c16';
40
-
41
-	/**
42
-	 * The Schema.org Type Scope
43
-	 *
44
-	 * @var string
45
-	 */
46
-	public static $schemaTypeScope = 'https://schema.org/Nonprofit501c16';
47
-
48
-	/**
49
-	 * The Schema.org Type Extends
50
-	 *
51
-	 * @var string
52
-	 */
53
-	public static $schemaTypeExtends = 'USNonprofitType';
54
-
55
-	/**
56
-	 * The Schema.org Type Description
57
-	 *
58
-	 * @var string
59
-	 */
60
-	public static $schemaTypeDescription = 'Nonprofit501c16: Non-profit type referring to Cooperative Organizations to Finance Crop Operations.';
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 Nonprofit501c16Trait;
28
+    use USNonprofitTypeTrait;
29
+    use NonprofitTypeTrait;
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 = 'Nonprofit501c16';
40
+
41
+    /**
42
+     * The Schema.org Type Scope
43
+     *
44
+     * @var string
45
+     */
46
+    public static $schemaTypeScope = 'https://schema.org/Nonprofit501c16';
47
+
48
+    /**
49
+     * The Schema.org Type Extends
50
+     *
51
+     * @var string
52
+     */
53
+    public static $schemaTypeExtends = 'USNonprofitType';
54
+
55
+    /**
56
+     * The Schema.org Type Description
57
+     *
58
+     * @var string
59
+     */
60
+    public static $schemaTypeDescription = 'Nonprofit501c16: Non-profit type referring to Cooperative Organizations to Finance Crop Operations.';
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/WearableSizeGroupBoys.php 1 patch
Indentation   +123 added lines, -123 removed lines patch added patch discarded remove patch
@@ -23,127 +23,127 @@
 block discarded – undo
23 23
  */
24 24
 class WearableSizeGroupBoys extends MetaJsonLd implements WearableSizeGroupBoysInterface, WearableSizeGroupEnumerationInterface, SizeGroupEnumerationInterface, EnumerationInterface, IntangibleInterface, ThingInterface
25 25
 {
26
-	use WearableSizeGroupBoysTrait;
27
-	use WearableSizeGroupEnumerationTrait;
28
-	use SizeGroupEnumerationTrait;
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 = 'WearableSizeGroupBoys';
39
-
40
-	/**
41
-	 * The Schema.org Type Scope
42
-	 *
43
-	 * @var string
44
-	 */
45
-	public static $schemaTypeScope = 'https://schema.org/WearableSizeGroupBoys';
46
-
47
-	/**
48
-	 * The Schema.org Type Extends
49
-	 *
50
-	 * @var string
51
-	 */
52
-	public static $schemaTypeExtends = 'WearableSizeGroupEnumeration';
53
-
54
-	/**
55
-	 * The Schema.org Type Description
56
-	 *
57
-	 * @var string
58
-	 */
59
-	public static $schemaTypeDescription = 'Size group "Boys" for wearables.';
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
-	}
26
+    use WearableSizeGroupBoysTrait;
27
+    use WearableSizeGroupEnumerationTrait;
28
+    use SizeGroupEnumerationTrait;
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 = 'WearableSizeGroupBoys';
39
+
40
+    /**
41
+     * The Schema.org Type Scope
42
+     *
43
+     * @var string
44
+     */
45
+    public static $schemaTypeScope = 'https://schema.org/WearableSizeGroupBoys';
46
+
47
+    /**
48
+     * The Schema.org Type Extends
49
+     *
50
+     * @var string
51
+     */
52
+    public static $schemaTypeExtends = 'WearableSizeGroupEnumeration';
53
+
54
+    /**
55
+     * The Schema.org Type Description
56
+     *
57
+     * @var string
58
+     */
59
+    public static $schemaTypeDescription = 'Size group "Boys" for wearables.';
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.
src/models/jsonld/OccupationalExperienceRequirements.php 1 patch
Indentation   +120 added lines, -120 removed lines patch added patch discarded remove patch
@@ -24,124 +24,124 @@
 block discarded – undo
24 24
  */
25 25
 class OccupationalExperienceRequirements extends MetaJsonLd implements OccupationalExperienceRequirementsInterface, IntangibleInterface, ThingInterface
26 26
 {
27
-	use OccupationalExperienceRequirementsTrait;
28
-	use IntangibleTrait;
29
-	use ThingTrait;
30
-
31
-	/**
32
-	 * The Schema.org Type Name
33
-	 *
34
-	 * @var string
35
-	 */
36
-	public static $schemaTypeName = 'OccupationalExperienceRequirements';
37
-
38
-	/**
39
-	 * The Schema.org Type Scope
40
-	 *
41
-	 * @var string
42
-	 */
43
-	public static $schemaTypeScope = 'https://schema.org/OccupationalExperienceRequirements';
44
-
45
-	/**
46
-	 * The Schema.org Type Extends
47
-	 *
48
-	 * @var string
49
-	 */
50
-	public static $schemaTypeExtends = 'Intangible';
51
-
52
-	/**
53
-	 * The Schema.org Type Description
54
-	 *
55
-	 * @var string
56
-	 */
57
-	public static $schemaTypeDescription = 'Indicates employment-related experience requirements, e.g. [[monthsOfExperience]].';
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
-		    'monthsOfExperience' => ['Number'],
83
-		    'name' => ['Text'],
84
-		    'potentialAction' => ['Action'],
85
-		    'sameAs' => ['URL'],
86
-		    'subjectOf' => ['Event', 'CreativeWork'],
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
-		    'monthsOfExperience' => 'Indicates the minimal number of months of experience required for a position.',
106
-		    'name' => 'The name of the item.',
107
-		    'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
108
-		    '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.',
109
-		    'subjectOf' => 'A CreativeWork or Event about this Thing.',
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
-	}
27
+    use OccupationalExperienceRequirementsTrait;
28
+    use IntangibleTrait;
29
+    use ThingTrait;
30
+
31
+    /**
32
+     * The Schema.org Type Name
33
+     *
34
+     * @var string
35
+     */
36
+    public static $schemaTypeName = 'OccupationalExperienceRequirements';
37
+
38
+    /**
39
+     * The Schema.org Type Scope
40
+     *
41
+     * @var string
42
+     */
43
+    public static $schemaTypeScope = 'https://schema.org/OccupationalExperienceRequirements';
44
+
45
+    /**
46
+     * The Schema.org Type Extends
47
+     *
48
+     * @var string
49
+     */
50
+    public static $schemaTypeExtends = 'Intangible';
51
+
52
+    /**
53
+     * The Schema.org Type Description
54
+     *
55
+     * @var string
56
+     */
57
+    public static $schemaTypeDescription = 'Indicates employment-related experience requirements, e.g. [[monthsOfExperience]].';
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
+            'monthsOfExperience' => ['Number'],
83
+            'name' => ['Text'],
84
+            'potentialAction' => ['Action'],
85
+            'sameAs' => ['URL'],
86
+            'subjectOf' => ['Event', 'CreativeWork'],
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
+            'monthsOfExperience' => 'Indicates the minimal number of months of experience required for a position.',
106
+            'name' => 'The name of the item.',
107
+            'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
108
+            '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.',
109
+            'subjectOf' => 'A CreativeWork or Event about this Thing.',
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/Protozoa.php 1 patch
Indentation   +123 added lines, -123 removed lines patch added patch discarded remove patch
@@ -23,127 +23,127 @@
 block discarded – undo
23 23
  */
24 24
 class Protozoa extends MetaJsonLd implements ProtozoaInterface, InfectiousAgentClassInterface, MedicalEnumerationInterface, EnumerationInterface, IntangibleInterface, ThingInterface
25 25
 {
26
-	use ProtozoaTrait;
27
-	use InfectiousAgentClassTrait;
28
-	use MedicalEnumerationTrait;
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 = 'Protozoa';
39
-
40
-	/**
41
-	 * The Schema.org Type Scope
42
-	 *
43
-	 * @var string
44
-	 */
45
-	public static $schemaTypeScope = 'https://schema.org/Protozoa';
46
-
47
-	/**
48
-	 * The Schema.org Type Extends
49
-	 *
50
-	 * @var string
51
-	 */
52
-	public static $schemaTypeExtends = 'InfectiousAgentClass';
53
-
54
-	/**
55
-	 * The Schema.org Type Description
56
-	 *
57
-	 * @var string
58
-	 */
59
-	public static $schemaTypeDescription = 'Single-celled organism that causes an infection.';
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
-	}
26
+    use ProtozoaTrait;
27
+    use InfectiousAgentClassTrait;
28
+    use MedicalEnumerationTrait;
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 = 'Protozoa';
39
+
40
+    /**
41
+     * The Schema.org Type Scope
42
+     *
43
+     * @var string
44
+     */
45
+    public static $schemaTypeScope = 'https://schema.org/Protozoa';
46
+
47
+    /**
48
+     * The Schema.org Type Extends
49
+     *
50
+     * @var string
51
+     */
52
+    public static $schemaTypeExtends = 'InfectiousAgentClass';
53
+
54
+    /**
55
+     * The Schema.org Type Description
56
+     *
57
+     * @var string
58
+     */
59
+    public static $schemaTypeDescription = 'Single-celled organism that causes an infection.';
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.
src/models/jsonld/Season.php 1 patch
Indentation   +325 added lines, -325 removed lines patch added patch discarded remove patch
@@ -23,346 +23,346 @@
 block discarded – undo
23 23
  */
24 24
 class Season extends MetaJsonLd implements SeasonInterface, CreativeWorkInterface, ThingInterface
25 25
 {
26
-	use SeasonTrait;
27
-	use CreativeWorkTrait;
28
-	use ThingTrait;
26
+    use SeasonTrait;
27
+    use CreativeWorkTrait;
28
+    use ThingTrait;
29 29
 
30
-	/**
31
-	 * The Schema.org Type Name
32
-	 *
33
-	 * @var string
34
-	 */
35
-	public static $schemaTypeName = 'Season';
30
+    /**
31
+     * The Schema.org Type Name
32
+     *
33
+     * @var string
34
+     */
35
+    public static $schemaTypeName = 'Season';
36 36
 
37
-	/**
38
-	 * The Schema.org Type Scope
39
-	 *
40
-	 * @var string
41
-	 */
42
-	public static $schemaTypeScope = 'https://schema.org/Season';
37
+    /**
38
+     * The Schema.org Type Scope
39
+     *
40
+     * @var string
41
+     */
42
+    public static $schemaTypeScope = 'https://schema.org/Season';
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 media season, e.g. TV, radio, video game etc.';
51
+    /**
52
+     * The Schema.org Type Description
53
+     *
54
+     * @var string
55
+     */
56
+    public static $schemaTypeDescription = 'A media season, e.g. TV, radio, video game etc.';
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
-		    'material' => ['Product', 'URL', 'Text'],
155
-		    'materialExtent' => ['QuantitativeValue', 'Text'],
156
-		    'mentions' => ['Thing'],
157
-		    'name' => ['Text'],
158
-		    'offers' => ['Demand', 'Offer'],
159
-		    'pattern' => ['DefinedTerm', 'Text'],
160
-		    'position' => ['Text', 'Integer'],
161
-		    'potentialAction' => ['Action'],
162
-		    'producer' => ['Organization', 'Person'],
163
-		    'provider' => ['Organization', 'Person'],
164
-		    'publication' => ['PublicationEvent'],
165
-		    'publisher' => ['Organization', 'Person'],
166
-		    'publisherImprint' => ['Organization'],
167
-		    'publishingPrinciples' => ['CreativeWork', 'URL'],
168
-		    'recordedAt' => ['Event'],
169
-		    'releasedEvent' => ['PublicationEvent'],
170
-		    'review' => ['Review'],
171
-		    'reviews' => ['Review'],
172
-		    'sameAs' => ['URL'],
173
-		    'schemaVersion' => ['URL', 'Text'],
174
-		    'sdDatePublished' => ['Date'],
175
-		    'sdLicense' => ['CreativeWork', 'URL'],
176
-		    'sdPublisher' => ['Organization', 'Person'],
177
-		    'size' => ['DefinedTerm', 'QuantitativeValue', 'Text', 'SizeSpecification'],
178
-		    'sourceOrganization' => ['Organization'],
179
-		    'spatial' => ['Place'],
180
-		    'spatialCoverage' => ['Place'],
181
-		    'sponsor' => ['Organization', 'Person'],
182
-		    'subjectOf' => ['Event', 'CreativeWork'],
183
-		    'teaches' => ['DefinedTerm', 'Text'],
184
-		    'temporal' => ['DateTime', 'Text'],
185
-		    'temporalCoverage' => ['URL', 'Text', 'DateTime'],
186
-		    'text' => ['Text'],
187
-		    'thumbnailUrl' => ['URL'],
188
-		    'timeRequired' => ['Duration'],
189
-		    'translationOfWork' => ['CreativeWork'],
190
-		    'translator' => ['Organization', 'Person'],
191
-		    'typicalAgeRange' => ['Text'],
192
-		    'url' => ['URL'],
193
-		    'usageInfo' => ['URL', 'CreativeWork'],
194
-		    'version' => ['Number', 'Text'],
195
-		    'video' => ['VideoObject', 'Clip'],
196
-		    'workExample' => ['CreativeWork'],
197
-		    'workTranslation' => ['CreativeWork']
198
-		];
199
-	}
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
+            'material' => ['Product', 'URL', 'Text'],
155
+            'materialExtent' => ['QuantitativeValue', 'Text'],
156
+            'mentions' => ['Thing'],
157
+            'name' => ['Text'],
158
+            'offers' => ['Demand', 'Offer'],
159
+            'pattern' => ['DefinedTerm', 'Text'],
160
+            'position' => ['Text', 'Integer'],
161
+            'potentialAction' => ['Action'],
162
+            'producer' => ['Organization', 'Person'],
163
+            'provider' => ['Organization', 'Person'],
164
+            'publication' => ['PublicationEvent'],
165
+            'publisher' => ['Organization', 'Person'],
166
+            'publisherImprint' => ['Organization'],
167
+            'publishingPrinciples' => ['CreativeWork', 'URL'],
168
+            'recordedAt' => ['Event'],
169
+            'releasedEvent' => ['PublicationEvent'],
170
+            'review' => ['Review'],
171
+            'reviews' => ['Review'],
172
+            'sameAs' => ['URL'],
173
+            'schemaVersion' => ['URL', 'Text'],
174
+            'sdDatePublished' => ['Date'],
175
+            'sdLicense' => ['CreativeWork', 'URL'],
176
+            'sdPublisher' => ['Organization', 'Person'],
177
+            'size' => ['DefinedTerm', 'QuantitativeValue', 'Text', 'SizeSpecification'],
178
+            'sourceOrganization' => ['Organization'],
179
+            'spatial' => ['Place'],
180
+            'spatialCoverage' => ['Place'],
181
+            'sponsor' => ['Organization', 'Person'],
182
+            'subjectOf' => ['Event', 'CreativeWork'],
183
+            'teaches' => ['DefinedTerm', 'Text'],
184
+            'temporal' => ['DateTime', 'Text'],
185
+            'temporalCoverage' => ['URL', 'Text', 'DateTime'],
186
+            'text' => ['Text'],
187
+            'thumbnailUrl' => ['URL'],
188
+            'timeRequired' => ['Duration'],
189
+            'translationOfWork' => ['CreativeWork'],
190
+            'translator' => ['Organization', 'Person'],
191
+            'typicalAgeRange' => ['Text'],
192
+            'url' => ['URL'],
193
+            'usageInfo' => ['URL', 'CreativeWork'],
194
+            'version' => ['Number', 'Text'],
195
+            'video' => ['VideoObject', 'Clip'],
196
+            'workExample' => ['CreativeWork'],
197
+            'workTranslation' => ['CreativeWork']
198
+        ];
199
+    }
200 200
 
201 201
 
202
-	/**
203
-	 * @inheritdoc
204
-	 */
205
-	public function getSchemaPropertyDescriptions(): array
206
-	{
207
-		return [
208
-		    'about' => 'The subject matter of the content.',
209
-		    'abstract' => 'An abstract is a short description that summarizes a [[CreativeWork]].',
210
-		    '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).',
211
-		    '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).',
212
-		    '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).',
213
-		    '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).',
214
-		    '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).',
215
-		    '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).',
216
-		    '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."',
217
-		    'accountablePerson' => 'Specifies the Person that is legally accountable for the CreativeWork.',
218
-		    'acquireLicensePage' => 'Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item.',
219
-		    '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.',
220
-		    'aggregateRating' => 'The overall rating, based on a collection of reviews or ratings, of the item.',
221
-		    'alternateName' => 'An alias for the item.',
222
-		    'alternativeHeadline' => 'A secondary title of the CreativeWork.',
223
-		    '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.',
224
-		    'assesses' => 'The item being described is intended to assess the competency or learning outcome defined by the referenced term.',
225
-		    'associatedMedia' => 'A media object that encodes this CreativeWork. This property is a synonym for encoding.',
226
-		    'audience' => 'An intended audience, i.e. a group for whom something was created.',
227
-		    'audio' => 'An embedded audio object.',
228
-		    '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.',
229
-		    'award' => 'An award won by or for this item.',
230
-		    'awards' => 'Awards won by or for this item.',
231
-		    'character' => 'Fictional person connected with a creative work.',
232
-		    'citation' => 'A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.',
233
-		    'comment' => 'Comments, typically from users.',
234
-		    '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.',
235
-		    '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 ". ',
236
-		    'contentLocation' => 'The location depicted or described in the content. For example, the location in a photograph or painting.',
237
-		    'contentRating' => 'Official rating of a piece of content—for example, \'MPAA PG-13\'.',
238
-		    '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.',
239
-		    'contributor' => 'A secondary contributor to the CreativeWork or Event.',
240
-		    'copyrightHolder' => 'The party holding the legal copyright to the CreativeWork.',
241
-		    '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.',
242
-		    'copyrightYear' => 'The year during which the claimed copyright for the CreativeWork was first asserted.',
243
-		    'correction' => 'Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document.',
244
-		    '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.',
245
-		    '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.',
246
-		    'creator' => 'The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.',
247
-		    'creditText' => 'Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work.',
248
-		    'dateCreated' => 'The date on which the CreativeWork was created or the item was added to a DataFeed.',
249
-		    'dateModified' => 'The date on which the CreativeWork was most recently modified or when the item\'s entry was modified within a DataFeed.',
250
-		    'datePublished' => 'Date of first broadcast/publication.',
251
-		    'description' => 'A description of the item.',
252
-		    '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.',
253
-		    'discussionUrl' => 'A link to the page containing the comments of the CreativeWork.',
254
-		    '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. ',
255
-		    'editor' => 'Specifies the Person who edited the CreativeWork.',
256
-		    '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.',
257
-		    '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.',
258
-		    'educationalUse' => 'The purpose of a work in the context of education; for example, \'assignment\', \'group work\'.',
259
-		    'encoding' => 'A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.',
260
-		    '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.',
261
-		    'encodings' => 'A media object that encodes this CreativeWork.',
262
-		    'exampleOfWork' => 'A creative work that this work is an example/instance/realization/derivation of.',
263
-		    '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.',
264
-		    '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.',
265
-		    'funder' => 'A person or organization that supports (sponsors) something through some kind of financial contribution.',
266
-		    'funding' => 'A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]].',
267
-		    'genre' => 'Genre of the creative work, broadcast channel or group.',
268
-		    'hasPart' => 'Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).',
269
-		    'headline' => 'Headline of the article.',
270
-		    '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.         ',
271
-		    'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
272
-		    '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]].',
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
-		    'interactivityType' => 'The predominant mode of learning supported by the learning resource. Acceptable values are \'active\', \'expositive\', or \'mixed\'.',
275
-		    '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]].',
276
-		    'isAccessibleForFree' => 'A flag to signal that the item, event, or place is accessible for free.',
277
-		    'isBasedOn' => 'A resource from which this work is derived or from which it is a modification or adaption.',
278
-		    '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.',
279
-		    'isFamilyFriendly' => 'Indicates whether this content is family friendly.',
280
-		    'isPartOf' => 'Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of.',
281
-		    '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.',
282
-		    'learningResourceType' => 'The predominant type or kind characterizing the learning resource. For example, \'presentation\', \'handout\'.',
283
-		    'license' => 'A license document that applies to this content, typically indicated by URL.',
284
-		    'locationCreated' => 'The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork.',
285
-		    'mainEntity' => 'Indicates the primary entity described in some page or other CreativeWork.',
286
-		    '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.',
287
-		    '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.       ',
288
-		    'material' => 'A material that something is made from, e.g. leather, wool, cotton, paper.',
289
-		    'materialExtent' => 'The quantity of the materials being described or an expression of the physical space they occupy.',
290
-		    'mentions' => 'Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.',
291
-		    'name' => 'The name of the item.',
292
-		    '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.       ',
293
-		    '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.',
294
-		    'position' => 'The position of an item in a series or sequence of items.',
295
-		    'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
296
-		    'producer' => 'The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.).',
297
-		    '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.',
298
-		    'publication' => 'A publication event associated with the item.',
299
-		    'publisher' => 'The publisher of the creative work.',
300
-		    'publisherImprint' => 'The publishing division which published the comic.',
301
-		    '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. ',
302
-		    'recordedAt' => 'The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event.',
303
-		    'releasedEvent' => 'The place and time the release was issued, expressed as a PublicationEvent.',
304
-		    'review' => 'A review of the item.',
305
-		    'reviews' => 'Review of the item.',
306
-		    '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.',
307
-		    '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.',
308
-		    'sdDatePublished' => 'Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]]',
309
-		    'sdLicense' => 'A license document that applies to this structured data, typically indicated by URL.',
310
-		    '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.',
311
-		    '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. ',
312
-		    'sourceOrganization' => 'The Organization on whose behalf the creator was working.',
313
-		    'spatial' => 'The "spatial" property can be used in cases when more specific properties (e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.',
314
-		    '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.',
315
-		    '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.',
316
-		    'subjectOf' => 'A CreativeWork or Event about this Thing.',
317
-		    'teaches' => 'The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term.',
318
-		    '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.',
319
-		    '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.',
320
-		    'text' => 'The textual content of this CreativeWork.',
321
-		    'thumbnailUrl' => 'A thumbnail image relevant to the Thing.',
322
-		    '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\'.',
323
-		    'translationOfWork' => 'The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”.',
324
-		    '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.',
325
-		    'typicalAgeRange' => 'The typical expected age range, e.g. \'7-9\', \'11-\'.',
326
-		    'url' => 'URL of the item.',
327
-		    '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.',
328
-		    'version' => 'The version of the CreativeWork embodied by a specified resource.',
329
-		    'video' => 'An embedded video object.',
330
-		    'workExample' => 'Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book.',
331
-		    '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.'
332
-		];
333
-	}
202
+    /**
203
+     * @inheritdoc
204
+     */
205
+    public function getSchemaPropertyDescriptions(): array
206
+    {
207
+        return [
208
+            'about' => 'The subject matter of the content.',
209
+            'abstract' => 'An abstract is a short description that summarizes a [[CreativeWork]].',
210
+            '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).',
211
+            '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).',
212
+            '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).',
213
+            '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).',
214
+            '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).',
215
+            '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).',
216
+            '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."',
217
+            'accountablePerson' => 'Specifies the Person that is legally accountable for the CreativeWork.',
218
+            'acquireLicensePage' => 'Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item.',
219
+            '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.',
220
+            'aggregateRating' => 'The overall rating, based on a collection of reviews or ratings, of the item.',
221
+            'alternateName' => 'An alias for the item.',
222
+            'alternativeHeadline' => 'A secondary title of the CreativeWork.',
223
+            '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.',
224
+            'assesses' => 'The item being described is intended to assess the competency or learning outcome defined by the referenced term.',
225
+            'associatedMedia' => 'A media object that encodes this CreativeWork. This property is a synonym for encoding.',
226
+            'audience' => 'An intended audience, i.e. a group for whom something was created.',
227
+            'audio' => 'An embedded audio object.',
228
+            '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.',
229
+            'award' => 'An award won by or for this item.',
230
+            'awards' => 'Awards won by or for this item.',
231
+            'character' => 'Fictional person connected with a creative work.',
232
+            'citation' => 'A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.',
233
+            'comment' => 'Comments, typically from users.',
234
+            '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.',
235
+            '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 ". ',
236
+            'contentLocation' => 'The location depicted or described in the content. For example, the location in a photograph or painting.',
237
+            'contentRating' => 'Official rating of a piece of content—for example, \'MPAA PG-13\'.',
238
+            '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.',
239
+            'contributor' => 'A secondary contributor to the CreativeWork or Event.',
240
+            'copyrightHolder' => 'The party holding the legal copyright to the CreativeWork.',
241
+            '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.',
242
+            'copyrightYear' => 'The year during which the claimed copyright for the CreativeWork was first asserted.',
243
+            'correction' => 'Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document.',
244
+            '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.',
245
+            '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.',
246
+            'creator' => 'The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.',
247
+            'creditText' => 'Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work.',
248
+            'dateCreated' => 'The date on which the CreativeWork was created or the item was added to a DataFeed.',
249
+            'dateModified' => 'The date on which the CreativeWork was most recently modified or when the item\'s entry was modified within a DataFeed.',
250
+            'datePublished' => 'Date of first broadcast/publication.',
251
+            'description' => 'A description of the item.',
252
+            '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.',
253
+            'discussionUrl' => 'A link to the page containing the comments of the CreativeWork.',
254
+            '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. ',
255
+            'editor' => 'Specifies the Person who edited the CreativeWork.',
256
+            '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.',
257
+            '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.',
258
+            'educationalUse' => 'The purpose of a work in the context of education; for example, \'assignment\', \'group work\'.',
259
+            'encoding' => 'A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.',
260
+            '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.',
261
+            'encodings' => 'A media object that encodes this CreativeWork.',
262
+            'exampleOfWork' => 'A creative work that this work is an example/instance/realization/derivation of.',
263
+            '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.',
264
+            '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.',
265
+            'funder' => 'A person or organization that supports (sponsors) something through some kind of financial contribution.',
266
+            'funding' => 'A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]].',
267
+            'genre' => 'Genre of the creative work, broadcast channel or group.',
268
+            'hasPart' => 'Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).',
269
+            'headline' => 'Headline of the article.',
270
+            '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.         ',
271
+            'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
272
+            '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]].',
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
+            'interactivityType' => 'The predominant mode of learning supported by the learning resource. Acceptable values are \'active\', \'expositive\', or \'mixed\'.',
275
+            '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]].',
276
+            'isAccessibleForFree' => 'A flag to signal that the item, event, or place is accessible for free.',
277
+            'isBasedOn' => 'A resource from which this work is derived or from which it is a modification or adaption.',
278
+            '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.',
279
+            'isFamilyFriendly' => 'Indicates whether this content is family friendly.',
280
+            'isPartOf' => 'Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of.',
281
+            '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.',
282
+            'learningResourceType' => 'The predominant type or kind characterizing the learning resource. For example, \'presentation\', \'handout\'.',
283
+            'license' => 'A license document that applies to this content, typically indicated by URL.',
284
+            'locationCreated' => 'The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork.',
285
+            'mainEntity' => 'Indicates the primary entity described in some page or other CreativeWork.',
286
+            '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.',
287
+            '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.       ',
288
+            'material' => 'A material that something is made from, e.g. leather, wool, cotton, paper.',
289
+            'materialExtent' => 'The quantity of the materials being described or an expression of the physical space they occupy.',
290
+            'mentions' => 'Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.',
291
+            'name' => 'The name of the item.',
292
+            '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.       ',
293
+            '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.',
294
+            'position' => 'The position of an item in a series or sequence of items.',
295
+            'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
296
+            'producer' => 'The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.).',
297
+            '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.',
298
+            'publication' => 'A publication event associated with the item.',
299
+            'publisher' => 'The publisher of the creative work.',
300
+            'publisherImprint' => 'The publishing division which published the comic.',
301
+            '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. ',
302
+            'recordedAt' => 'The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event.',
303
+            'releasedEvent' => 'The place and time the release was issued, expressed as a PublicationEvent.',
304
+            'review' => 'A review of the item.',
305
+            'reviews' => 'Review of the item.',
306
+            '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.',
307
+            '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.',
308
+            'sdDatePublished' => 'Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]]',
309
+            'sdLicense' => 'A license document that applies to this structured data, typically indicated by URL.',
310
+            '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.',
311
+            '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. ',
312
+            'sourceOrganization' => 'The Organization on whose behalf the creator was working.',
313
+            'spatial' => 'The "spatial" property can be used in cases when more specific properties (e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.',
314
+            '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.',
315
+            '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.',
316
+            'subjectOf' => 'A CreativeWork or Event about this Thing.',
317
+            'teaches' => 'The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term.',
318
+            '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.',
319
+            '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.',
320
+            'text' => 'The textual content of this CreativeWork.',
321
+            'thumbnailUrl' => 'A thumbnail image relevant to the Thing.',
322
+            '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\'.',
323
+            'translationOfWork' => 'The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”.',
324
+            '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.',
325
+            'typicalAgeRange' => 'The typical expected age range, e.g. \'7-9\', \'11-\'.',
326
+            'url' => 'URL of the item.',
327
+            '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.',
328
+            'version' => 'The version of the CreativeWork embodied by a specified resource.',
329
+            'video' => 'An embedded video object.',
330
+            'workExample' => 'Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book.',
331
+            '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.'
332
+        ];
333
+    }
334 334
 
335 335
 
336
-	/**
337
-	 * @inheritdoc
338
-	 */
339
-	public function getGoogleRequiredSchema(): array
340
-	{
341
-		return ['description', 'name'];
342
-	}
336
+    /**
337
+     * @inheritdoc
338
+     */
339
+    public function getGoogleRequiredSchema(): array
340
+    {
341
+        return ['description', 'name'];
342
+    }
343 343
 
344 344
 
345
-	/**
346
-	 * @inheritdoc
347
-	 */
348
-	public function getGoogleRecommendedSchema(): array
349
-	{
350
-		return ['image', 'url'];
351
-	}
345
+    /**
346
+     * @inheritdoc
347
+     */
348
+    public function getGoogleRecommendedSchema(): array
349
+    {
350
+        return ['image', 'url'];
351
+    }
352 352
 
353 353
 
354
-	/**
355
-	 * @inheritdoc
356
-	 */
357
-	public function defineRules(): array
358
-	{
359
-		$rules = parent::defineRules();
360
-		    $rules = array_merge($rules, [
361
-		        [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
362
-		        [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
363
-		        [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
364
-		    ]);
354
+    /**
355
+     * @inheritdoc
356
+     */
357
+    public function defineRules(): array
358
+    {
359
+        $rules = parent::defineRules();
360
+            $rules = array_merge($rules, [
361
+                [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
362
+                [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
363
+                [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
364
+            ]);
365 365
 
366
-		    return $rules;
367
-	}
366
+            return $rules;
367
+    }
368 368
 }
Please login to merge, or discard this patch.
src/models/jsonld/UsedCondition.php 1 patch
Indentation   +122 added lines, -122 removed lines patch added patch discarded remove patch
@@ -23,126 +23,126 @@
 block discarded – undo
23 23
  */
24 24
 class UsedCondition extends MetaJsonLd implements UsedConditionInterface, OfferItemConditionInterface, EnumerationInterface, IntangibleInterface, ThingInterface
25 25
 {
26
-	use UsedConditionTrait;
27
-	use OfferItemConditionTrait;
28
-	use EnumerationTrait;
29
-	use IntangibleTrait;
30
-	use ThingTrait;
31
-
32
-	/**
33
-	 * The Schema.org Type Name
34
-	 *
35
-	 * @var string
36
-	 */
37
-	public static $schemaTypeName = 'UsedCondition';
38
-
39
-	/**
40
-	 * The Schema.org Type Scope
41
-	 *
42
-	 * @var string
43
-	 */
44
-	public static $schemaTypeScope = 'https://schema.org/UsedCondition';
45
-
46
-	/**
47
-	 * The Schema.org Type Extends
48
-	 *
49
-	 * @var string
50
-	 */
51
-	public static $schemaTypeExtends = 'OfferItemCondition';
52
-
53
-	/**
54
-	 * The Schema.org Type Description
55
-	 *
56
-	 * @var string
57
-	 */
58
-	public static $schemaTypeDescription = 'Indicates that the item is used.';
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
-		    'mainEntityOfPage' => ['URL', 'CreativeWork'],
83
-		    'name' => ['Text'],
84
-		    'potentialAction' => ['Action'],
85
-		    'sameAs' => ['URL'],
86
-		    'subjectOf' => ['Event', 'CreativeWork'],
87
-		    'supersededBy' => ['Class', 'Property', 'Enumeration'],
88
-		    'url' => ['URL']
89
-		];
90
-	}
91
-
92
-
93
-	/**
94
-	 * @inheritdoc
95
-	 */
96
-	public function getSchemaPropertyDescriptions(): array
97
-	{
98
-		return [
99
-		    '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.',
100
-		    'alternateName' => 'An alias for the item.',
101
-		    'description' => 'A description of the item.',
102
-		    '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.',
103
-		    '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.         ',
104
-		    'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
105
-		    '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.',
106
-		    'name' => 'The name of the item.',
107
-		    'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
108
-		    '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.',
109
-		    'subjectOf' => 'A CreativeWork or Event about this Thing.',
110
-		    'supersededBy' => 'Relates a term (i.e. a property, class or enumeration) to one that supersedes it.',
111
-		    'url' => 'URL of the item.'
112
-		];
113
-	}
114
-
115
-
116
-	/**
117
-	 * @inheritdoc
118
-	 */
119
-	public function getGoogleRequiredSchema(): array
120
-	{
121
-		return ['description', 'name'];
122
-	}
123
-
124
-
125
-	/**
126
-	 * @inheritdoc
127
-	 */
128
-	public function getGoogleRecommendedSchema(): array
129
-	{
130
-		return ['image', 'url'];
131
-	}
132
-
133
-
134
-	/**
135
-	 * @inheritdoc
136
-	 */
137
-	public function defineRules(): array
138
-	{
139
-		$rules = parent::defineRules();
140
-		    $rules = array_merge($rules, [
141
-		        [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
142
-		        [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
143
-		        [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
144
-		    ]);
145
-
146
-		    return $rules;
147
-	}
26
+    use UsedConditionTrait;
27
+    use OfferItemConditionTrait;
28
+    use EnumerationTrait;
29
+    use IntangibleTrait;
30
+    use ThingTrait;
31
+
32
+    /**
33
+     * The Schema.org Type Name
34
+     *
35
+     * @var string
36
+     */
37
+    public static $schemaTypeName = 'UsedCondition';
38
+
39
+    /**
40
+     * The Schema.org Type Scope
41
+     *
42
+     * @var string
43
+     */
44
+    public static $schemaTypeScope = 'https://schema.org/UsedCondition';
45
+
46
+    /**
47
+     * The Schema.org Type Extends
48
+     *
49
+     * @var string
50
+     */
51
+    public static $schemaTypeExtends = 'OfferItemCondition';
52
+
53
+    /**
54
+     * The Schema.org Type Description
55
+     *
56
+     * @var string
57
+     */
58
+    public static $schemaTypeDescription = 'Indicates that the item is used.';
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
+            'mainEntityOfPage' => ['URL', 'CreativeWork'],
83
+            'name' => ['Text'],
84
+            'potentialAction' => ['Action'],
85
+            'sameAs' => ['URL'],
86
+            'subjectOf' => ['Event', 'CreativeWork'],
87
+            'supersededBy' => ['Class', 'Property', 'Enumeration'],
88
+            'url' => ['URL']
89
+        ];
90
+    }
91
+
92
+
93
+    /**
94
+     * @inheritdoc
95
+     */
96
+    public function getSchemaPropertyDescriptions(): array
97
+    {
98
+        return [
99
+            '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.',
100
+            'alternateName' => 'An alias for the item.',
101
+            'description' => 'A description of the item.',
102
+            '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.',
103
+            '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.         ',
104
+            'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
105
+            '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.',
106
+            'name' => 'The name of the item.',
107
+            'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
108
+            '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.',
109
+            'subjectOf' => 'A CreativeWork or Event about this Thing.',
110
+            'supersededBy' => 'Relates a term (i.e. a property, class or enumeration) to one that supersedes it.',
111
+            'url' => 'URL of the item.'
112
+        ];
113
+    }
114
+
115
+
116
+    /**
117
+     * @inheritdoc
118
+     */
119
+    public function getGoogleRequiredSchema(): array
120
+    {
121
+        return ['description', 'name'];
122
+    }
123
+
124
+
125
+    /**
126
+     * @inheritdoc
127
+     */
128
+    public function getGoogleRecommendedSchema(): array
129
+    {
130
+        return ['image', 'url'];
131
+    }
132
+
133
+
134
+    /**
135
+     * @inheritdoc
136
+     */
137
+    public function defineRules(): array
138
+    {
139
+        $rules = parent::defineRules();
140
+            $rules = array_merge($rules, [
141
+                [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
142
+                [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
143
+                [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
144
+            ]);
145
+
146
+            return $rules;
147
+    }
148 148
 }
Please login to merge, or discard this patch.
src/models/jsonld/CDCPMDRecord.php 1 patch
Indentation   +153 added lines, -153 removed lines patch added patch discarded remove patch
@@ -27,157 +27,157 @@
 block discarded – undo
27 27
  */
28 28
 class CDCPMDRecord extends MetaJsonLd implements CDCPMDRecordInterface, StructuredValueInterface, IntangibleInterface, ThingInterface
29 29
 {
30
-	use CDCPMDRecordTrait;
31
-	use StructuredValueTrait;
32
-	use IntangibleTrait;
33
-	use ThingTrait;
34
-
35
-	/**
36
-	 * The Schema.org Type Name
37
-	 *
38
-	 * @var string
39
-	 */
40
-	public static $schemaTypeName = 'CDCPMDRecord';
41
-
42
-	/**
43
-	 * The Schema.org Type Scope
44
-	 *
45
-	 * @var string
46
-	 */
47
-	public static $schemaTypeScope = 'https://schema.org/CDCPMDRecord';
48
-
49
-	/**
50
-	 * The Schema.org Type Extends
51
-	 *
52
-	 * @var string
53
-	 */
54
-	public static $schemaTypeExtends = 'StructuredValue';
55
-
56
-	/**
57
-	 * The Schema.org Type Description
58
-	 *
59
-	 * @var string
60
-	 */
61
-	public static $schemaTypeDescription = "A CDCPMDRecord is a data structure representing a record in a CDC tabular data format\n      used for hospital data reporting. See [documentation](/docs/cdc-covid.html) for details, and the linked CDC materials for authoritative\n      definitions used as the source here.\n      ";
62
-
63
-
64
-	/**
65
-	 * @inheritdoc
66
-	 */
67
-	public function getSchemaPropertyNames(): array
68
-	{
69
-		return array_keys($this->getSchemaPropertyExpectedTypes());
70
-	}
71
-
72
-
73
-	/**
74
-	 * @inheritdoc
75
-	 */
76
-	public function getSchemaPropertyExpectedTypes(): array
77
-	{
78
-		return [
79
-		    'additionalType' => ['URL'],
80
-		    'alternateName' => ['Text'],
81
-		    'cvdCollectionDate' => ['DateTime', 'Text'],
82
-		    'cvdFacilityCounty' => ['Text'],
83
-		    'cvdFacilityId' => ['Text'],
84
-		    'cvdNumBeds' => ['Number'],
85
-		    'cvdNumBedsOcc' => ['Number'],
86
-		    'cvdNumC19Died' => ['Number'],
87
-		    'cvdNumC19HOPats' => ['Number'],
88
-		    'cvdNumC19HospPats' => ['Number'],
89
-		    'cvdNumC19MechVentPats' => ['Number'],
90
-		    'cvdNumC19OFMechVentPats' => ['Number'],
91
-		    'cvdNumC19OverflowPats' => ['Number'],
92
-		    'cvdNumICUBeds' => ['Number'],
93
-		    'cvdNumICUBedsOcc' => ['Number'],
94
-		    'cvdNumTotBeds' => ['Number'],
95
-		    'cvdNumVent' => ['Number'],
96
-		    'cvdNumVentUse' => ['Number'],
97
-		    'datePosted' => ['DateTime', 'Date'],
98
-		    'description' => ['Text'],
99
-		    'disambiguatingDescription' => ['Text'],
100
-		    'identifier' => ['PropertyValue', 'URL', 'Text'],
101
-		    'image' => ['URL', 'ImageObject'],
102
-		    'mainEntityOfPage' => ['URL', 'CreativeWork'],
103
-		    'name' => ['Text'],
104
-		    'potentialAction' => ['Action'],
105
-		    'sameAs' => ['URL'],
106
-		    'subjectOf' => ['Event', 'CreativeWork'],
107
-		    'url' => ['URL']
108
-		];
109
-	}
110
-
111
-
112
-	/**
113
-	 * @inheritdoc
114
-	 */
115
-	public function getSchemaPropertyDescriptions(): array
116
-	{
117
-		return [
118
-		    '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.',
119
-		    'alternateName' => 'An alias for the item.',
120
-		    'cvdCollectionDate' => 'collectiondate - Date for which patient counts are reported.',
121
-		    'cvdFacilityCounty' => 'Name of the County of the NHSN facility that this data record applies to. Use [[cvdFacilityId]] to identify the facility. To provide other details, [[healthcareReportingData]] can be used on a [[Hospital]] entry.',
122
-		    'cvdFacilityId' => 'Identifier of the NHSN facility that this data record applies to. Use [[cvdFacilityCounty]] to indicate the county. To provide other details, [[healthcareReportingData]] can be used on a [[Hospital]] entry.',
123
-		    'cvdNumBeds' => 'numbeds - HOSPITAL INPATIENT BEDS: Inpatient beds, including all staffed, licensed, and overflow (surge) beds used for inpatients.',
124
-		    'cvdNumBedsOcc' => 'numbedsocc - HOSPITAL INPATIENT BED OCCUPANCY: Total number of staffed inpatient beds that are occupied.',
125
-		    'cvdNumC19Died' => 'numc19died - DEATHS: Patients with suspected or confirmed COVID-19 who died in the hospital, ED, or any overflow location.',
126
-		    'cvdNumC19HOPats' => 'numc19hopats - HOSPITAL ONSET: Patients hospitalized in an NHSN inpatient care location with onset of suspected or confirmed COVID-19 14 or more days after hospitalization.',
127
-		    'cvdNumC19HospPats' => 'numc19hosppats - HOSPITALIZED: Patients currently hospitalized in an inpatient care location who have suspected or confirmed COVID-19.',
128
-		    'cvdNumC19MechVentPats' => 'numc19mechventpats - HOSPITALIZED and VENTILATED: Patients hospitalized in an NHSN inpatient care location who have suspected or confirmed COVID-19 and are on a mechanical ventilator.',
129
-		    'cvdNumC19OFMechVentPats' => 'numc19ofmechventpats - ED/OVERFLOW and VENTILATED: Patients with suspected or confirmed COVID-19 who are in the ED or any overflow location awaiting an inpatient bed and on a mechanical ventilator.',
130
-		    'cvdNumC19OverflowPats' => 'numc19overflowpats - ED/OVERFLOW: Patients with suspected or confirmed COVID-19 who are in the ED or any overflow location awaiting an inpatient bed.',
131
-		    'cvdNumICUBeds' => 'numicubeds - ICU BEDS: Total number of staffed inpatient intensive care unit (ICU) beds.',
132
-		    'cvdNumICUBedsOcc' => 'numicubedsocc - ICU BED OCCUPANCY: Total number of staffed inpatient ICU beds that are occupied.',
133
-		    'cvdNumTotBeds' => 'numtotbeds - ALL HOSPITAL BEDS: Total number of all inpatient and outpatient beds, including all staffed, ICU, licensed, and overflow (surge) beds used for inpatients or outpatients.',
134
-		    'cvdNumVent' => 'numvent - MECHANICAL VENTILATORS: Total number of ventilators available.',
135
-		    'cvdNumVentUse' => 'numventuse - MECHANICAL VENTILATORS IN USE: Total number of ventilators in use.',
136
-		    'datePosted' => 'Publication date of an online listing.',
137
-		    'description' => 'A description of the item.',
138
-		    '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.',
139
-		    '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.         ',
140
-		    'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
141
-		    '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.',
142
-		    'name' => 'The name of the item.',
143
-		    'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
144
-		    '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.',
145
-		    'subjectOf' => 'A CreativeWork or Event about this Thing.',
146
-		    'url' => 'URL of the item.'
147
-		];
148
-	}
149
-
150
-
151
-	/**
152
-	 * @inheritdoc
153
-	 */
154
-	public function getGoogleRequiredSchema(): array
155
-	{
156
-		return ['description', 'name'];
157
-	}
158
-
159
-
160
-	/**
161
-	 * @inheritdoc
162
-	 */
163
-	public function getGoogleRecommendedSchema(): array
164
-	{
165
-		return ['image', 'url'];
166
-	}
167
-
168
-
169
-	/**
170
-	 * @inheritdoc
171
-	 */
172
-	public function defineRules(): array
173
-	{
174
-		$rules = parent::defineRules();
175
-		    $rules = array_merge($rules, [
176
-		        [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
177
-		        [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
178
-		        [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
179
-		    ]);
180
-
181
-		    return $rules;
182
-	}
30
+    use CDCPMDRecordTrait;
31
+    use StructuredValueTrait;
32
+    use IntangibleTrait;
33
+    use ThingTrait;
34
+
35
+    /**
36
+     * The Schema.org Type Name
37
+     *
38
+     * @var string
39
+     */
40
+    public static $schemaTypeName = 'CDCPMDRecord';
41
+
42
+    /**
43
+     * The Schema.org Type Scope
44
+     *
45
+     * @var string
46
+     */
47
+    public static $schemaTypeScope = 'https://schema.org/CDCPMDRecord';
48
+
49
+    /**
50
+     * The Schema.org Type Extends
51
+     *
52
+     * @var string
53
+     */
54
+    public static $schemaTypeExtends = 'StructuredValue';
55
+
56
+    /**
57
+     * The Schema.org Type Description
58
+     *
59
+     * @var string
60
+     */
61
+    public static $schemaTypeDescription = "A CDCPMDRecord is a data structure representing a record in a CDC tabular data format\n      used for hospital data reporting. See [documentation](/docs/cdc-covid.html) for details, and the linked CDC materials for authoritative\n      definitions used as the source here.\n      ";
62
+
63
+
64
+    /**
65
+     * @inheritdoc
66
+     */
67
+    public function getSchemaPropertyNames(): array
68
+    {
69
+        return array_keys($this->getSchemaPropertyExpectedTypes());
70
+    }
71
+
72
+
73
+    /**
74
+     * @inheritdoc
75
+     */
76
+    public function getSchemaPropertyExpectedTypes(): array
77
+    {
78
+        return [
79
+            'additionalType' => ['URL'],
80
+            'alternateName' => ['Text'],
81
+            'cvdCollectionDate' => ['DateTime', 'Text'],
82
+            'cvdFacilityCounty' => ['Text'],
83
+            'cvdFacilityId' => ['Text'],
84
+            'cvdNumBeds' => ['Number'],
85
+            'cvdNumBedsOcc' => ['Number'],
86
+            'cvdNumC19Died' => ['Number'],
87
+            'cvdNumC19HOPats' => ['Number'],
88
+            'cvdNumC19HospPats' => ['Number'],
89
+            'cvdNumC19MechVentPats' => ['Number'],
90
+            'cvdNumC19OFMechVentPats' => ['Number'],
91
+            'cvdNumC19OverflowPats' => ['Number'],
92
+            'cvdNumICUBeds' => ['Number'],
93
+            'cvdNumICUBedsOcc' => ['Number'],
94
+            'cvdNumTotBeds' => ['Number'],
95
+            'cvdNumVent' => ['Number'],
96
+            'cvdNumVentUse' => ['Number'],
97
+            'datePosted' => ['DateTime', 'Date'],
98
+            'description' => ['Text'],
99
+            'disambiguatingDescription' => ['Text'],
100
+            'identifier' => ['PropertyValue', 'URL', 'Text'],
101
+            'image' => ['URL', 'ImageObject'],
102
+            'mainEntityOfPage' => ['URL', 'CreativeWork'],
103
+            'name' => ['Text'],
104
+            'potentialAction' => ['Action'],
105
+            'sameAs' => ['URL'],
106
+            'subjectOf' => ['Event', 'CreativeWork'],
107
+            'url' => ['URL']
108
+        ];
109
+    }
110
+
111
+
112
+    /**
113
+     * @inheritdoc
114
+     */
115
+    public function getSchemaPropertyDescriptions(): array
116
+    {
117
+        return [
118
+            '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.',
119
+            'alternateName' => 'An alias for the item.',
120
+            'cvdCollectionDate' => 'collectiondate - Date for which patient counts are reported.',
121
+            'cvdFacilityCounty' => 'Name of the County of the NHSN facility that this data record applies to. Use [[cvdFacilityId]] to identify the facility. To provide other details, [[healthcareReportingData]] can be used on a [[Hospital]] entry.',
122
+            'cvdFacilityId' => 'Identifier of the NHSN facility that this data record applies to. Use [[cvdFacilityCounty]] to indicate the county. To provide other details, [[healthcareReportingData]] can be used on a [[Hospital]] entry.',
123
+            'cvdNumBeds' => 'numbeds - HOSPITAL INPATIENT BEDS: Inpatient beds, including all staffed, licensed, and overflow (surge) beds used for inpatients.',
124
+            'cvdNumBedsOcc' => 'numbedsocc - HOSPITAL INPATIENT BED OCCUPANCY: Total number of staffed inpatient beds that are occupied.',
125
+            'cvdNumC19Died' => 'numc19died - DEATHS: Patients with suspected or confirmed COVID-19 who died in the hospital, ED, or any overflow location.',
126
+            'cvdNumC19HOPats' => 'numc19hopats - HOSPITAL ONSET: Patients hospitalized in an NHSN inpatient care location with onset of suspected or confirmed COVID-19 14 or more days after hospitalization.',
127
+            'cvdNumC19HospPats' => 'numc19hosppats - HOSPITALIZED: Patients currently hospitalized in an inpatient care location who have suspected or confirmed COVID-19.',
128
+            'cvdNumC19MechVentPats' => 'numc19mechventpats - HOSPITALIZED and VENTILATED: Patients hospitalized in an NHSN inpatient care location who have suspected or confirmed COVID-19 and are on a mechanical ventilator.',
129
+            'cvdNumC19OFMechVentPats' => 'numc19ofmechventpats - ED/OVERFLOW and VENTILATED: Patients with suspected or confirmed COVID-19 who are in the ED or any overflow location awaiting an inpatient bed and on a mechanical ventilator.',
130
+            'cvdNumC19OverflowPats' => 'numc19overflowpats - ED/OVERFLOW: Patients with suspected or confirmed COVID-19 who are in the ED or any overflow location awaiting an inpatient bed.',
131
+            'cvdNumICUBeds' => 'numicubeds - ICU BEDS: Total number of staffed inpatient intensive care unit (ICU) beds.',
132
+            'cvdNumICUBedsOcc' => 'numicubedsocc - ICU BED OCCUPANCY: Total number of staffed inpatient ICU beds that are occupied.',
133
+            'cvdNumTotBeds' => 'numtotbeds - ALL HOSPITAL BEDS: Total number of all inpatient and outpatient beds, including all staffed, ICU, licensed, and overflow (surge) beds used for inpatients or outpatients.',
134
+            'cvdNumVent' => 'numvent - MECHANICAL VENTILATORS: Total number of ventilators available.',
135
+            'cvdNumVentUse' => 'numventuse - MECHANICAL VENTILATORS IN USE: Total number of ventilators in use.',
136
+            'datePosted' => 'Publication date of an online listing.',
137
+            'description' => 'A description of the item.',
138
+            '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.',
139
+            '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.         ',
140
+            'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
141
+            '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.',
142
+            'name' => 'The name of the item.',
143
+            'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
144
+            '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.',
145
+            'subjectOf' => 'A CreativeWork or Event about this Thing.',
146
+            'url' => 'URL of the item.'
147
+        ];
148
+    }
149
+
150
+
151
+    /**
152
+     * @inheritdoc
153
+     */
154
+    public function getGoogleRequiredSchema(): array
155
+    {
156
+        return ['description', 'name'];
157
+    }
158
+
159
+
160
+    /**
161
+     * @inheritdoc
162
+     */
163
+    public function getGoogleRecommendedSchema(): array
164
+    {
165
+        return ['image', 'url'];
166
+    }
167
+
168
+
169
+    /**
170
+     * @inheritdoc
171
+     */
172
+    public function defineRules(): array
173
+    {
174
+        $rules = parent::defineRules();
175
+            $rules = array_merge($rules, [
176
+                [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
177
+                [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
178
+                [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
179
+            ]);
180
+
181
+            return $rules;
182
+    }
183 183
 }
Please login to merge, or discard this patch.
src/models/jsonld/Answer.php 1 patch
Indentation   +334 added lines, -334 removed lines patch added patch discarded remove patch
@@ -24,355 +24,355 @@
 block discarded – undo
24 24
  */
25 25
 class Answer extends MetaJsonLd implements AnswerInterface, CommentInterface, CreativeWorkInterface, ThingInterface
26 26
 {
27
-	use AnswerTrait;
28
-	use CommentTrait;
29
-	use CreativeWorkTrait;
30
-	use ThingTrait;
27
+    use AnswerTrait;
28
+    use CommentTrait;
29
+    use CreativeWorkTrait;
30
+    use ThingTrait;
31 31
 
32
-	/**
33
-	 * The Schema.org Type Name
34
-	 *
35
-	 * @var string
36
-	 */
37
-	public static $schemaTypeName = 'Answer';
32
+    /**
33
+     * The Schema.org Type Name
34
+     *
35
+     * @var string
36
+     */
37
+    public static $schemaTypeName = 'Answer';
38 38
 
39
-	/**
40
-	 * The Schema.org Type Scope
41
-	 *
42
-	 * @var string
43
-	 */
44
-	public static $schemaTypeScope = 'https://schema.org/Answer';
39
+    /**
40
+     * The Schema.org Type Scope
41
+     *
42
+     * @var string
43
+     */
44
+    public static $schemaTypeScope = 'https://schema.org/Answer';
45 45
 
46
-	/**
47
-	 * The Schema.org Type Extends
48
-	 *
49
-	 * @var string
50
-	 */
51
-	public static $schemaTypeExtends = 'Comment';
46
+    /**
47
+     * The Schema.org Type Extends
48
+     *
49
+     * @var string
50
+     */
51
+    public static $schemaTypeExtends = 'Comment';
52 52
 
53
-	/**
54
-	 * The Schema.org Type Description
55
-	 *
56
-	 * @var string
57
-	 */
58
-	public static $schemaTypeDescription = 'An answer offered to a question; perhaps correct, perhaps opinionated or wrong.';
53
+    /**
54
+     * The Schema.org Type Description
55
+     *
56
+     * @var string
57
+     */
58
+    public static $schemaTypeDescription = 'An answer offered to a question; perhaps correct, perhaps opinionated or wrong.';
59 59
 
60 60
 
61
-	/**
62
-	 * @inheritdoc
63
-	 */
64
-	public function getSchemaPropertyNames(): array
65
-	{
66
-		return array_keys($this->getSchemaPropertyExpectedTypes());
67
-	}
61
+    /**
62
+     * @inheritdoc
63
+     */
64
+    public function getSchemaPropertyNames(): array
65
+    {
66
+        return array_keys($this->getSchemaPropertyExpectedTypes());
67
+    }
68 68
 
69 69
 
70
-	/**
71
-	 * @inheritdoc
72
-	 */
73
-	public function getSchemaPropertyExpectedTypes(): array
74
-	{
75
-		return [
76
-		    'about' => ['Thing'],
77
-		    'abstract' => ['Text'],
78
-		    'accessMode' => ['Text'],
79
-		    'accessModeSufficient' => ['ItemList'],
80
-		    'accessibilityAPI' => ['Text'],
81
-		    'accessibilityControl' => ['Text'],
82
-		    'accessibilityFeature' => ['Text'],
83
-		    'accessibilityHazard' => ['Text'],
84
-		    'accessibilitySummary' => ['Text'],
85
-		    'accountablePerson' => ['Person'],
86
-		    'acquireLicensePage' => ['CreativeWork', 'URL'],
87
-		    'additionalType' => ['URL'],
88
-		    'aggregateRating' => ['AggregateRating'],
89
-		    'alternateName' => ['Text'],
90
-		    'alternativeHeadline' => ['Text'],
91
-		    'answerExplanation' => ['Comment', 'WebContent'],
92
-		    'archivedAt' => ['WebPage', 'URL'],
93
-		    'assesses' => ['DefinedTerm', 'Text'],
94
-		    'associatedMedia' => ['MediaObject'],
95
-		    'audience' => ['Audience'],
96
-		    'audio' => ['MusicRecording', 'AudioObject', 'Clip'],
97
-		    'author' => ['Organization', 'Person'],
98
-		    'award' => ['Text'],
99
-		    'awards' => ['Text'],
100
-		    'character' => ['Person'],
101
-		    'citation' => ['CreativeWork', 'Text'],
102
-		    'comment' => ['Comment'],
103
-		    'commentCount' => ['Integer'],
104
-		    'conditionsOfAccess' => ['Text'],
105
-		    'contentLocation' => ['Place'],
106
-		    'contentRating' => ['Text', 'Rating'],
107
-		    'contentReferenceTime' => ['DateTime'],
108
-		    'contributor' => ['Organization', 'Person'],
109
-		    'copyrightHolder' => ['Organization', 'Person'],
110
-		    'copyrightNotice' => ['Text'],
111
-		    'copyrightYear' => ['Number'],
112
-		    'correction' => ['URL', 'Text', 'CorrectionComment'],
113
-		    'countryOfOrigin' => ['Country'],
114
-		    'creativeWorkStatus' => ['DefinedTerm', 'Text'],
115
-		    'creator' => ['Person', 'Organization'],
116
-		    'creditText' => ['Text'],
117
-		    'dateCreated' => ['DateTime', 'Date'],
118
-		    'dateModified' => ['DateTime', 'Date'],
119
-		    'datePublished' => ['DateTime', 'Date'],
120
-		    'description' => ['Text'],
121
-		    'disambiguatingDescription' => ['Text'],
122
-		    'discussionUrl' => ['URL'],
123
-		    'downvoteCount' => ['Integer'],
124
-		    'editEIDR' => ['URL', 'Text'],
125
-		    'editor' => ['Person'],
126
-		    'educationalAlignment' => ['AlignmentObject'],
127
-		    'educationalLevel' => ['Text', 'URL', 'DefinedTerm'],
128
-		    'educationalUse' => ['DefinedTerm', 'Text'],
129
-		    'encoding' => ['MediaObject'],
130
-		    'encodingFormat' => ['URL', 'Text'],
131
-		    'encodings' => ['MediaObject'],
132
-		    'exampleOfWork' => ['CreativeWork'],
133
-		    'expires' => ['Date', 'DateTime'],
134
-		    'fileFormat' => ['Text', 'URL'],
135
-		    'funder' => ['Organization', 'Person'],
136
-		    'funding' => ['Grant'],
137
-		    'genre' => ['Text', 'URL'],
138
-		    'hasPart' => ['CreativeWork'],
139
-		    'headline' => ['Text'],
140
-		    'identifier' => ['PropertyValue', 'URL', 'Text'],
141
-		    'image' => ['URL', 'ImageObject'],
142
-		    'inLanguage' => ['Text', 'Language'],
143
-		    'interactionStatistic' => ['InteractionCounter'],
144
-		    'interactivityType' => ['Text'],
145
-		    'interpretedAsClaim' => ['Claim'],
146
-		    'isAccessibleForFree' => ['Boolean'],
147
-		    'isBasedOn' => ['URL', 'Product', 'CreativeWork'],
148
-		    'isBasedOnUrl' => ['URL', 'Product', 'CreativeWork'],
149
-		    'isFamilyFriendly' => ['Boolean'],
150
-		    'isPartOf' => ['URL', 'CreativeWork'],
151
-		    'keywords' => ['URL', 'DefinedTerm', 'Text'],
152
-		    'learningResourceType' => ['DefinedTerm', 'Text'],
153
-		    'license' => ['URL', 'CreativeWork'],
154
-		    'locationCreated' => ['Place'],
155
-		    'mainEntity' => ['Thing'],
156
-		    'mainEntityOfPage' => ['URL', 'CreativeWork'],
157
-		    'maintainer' => ['Person', 'Organization'],
158
-		    'material' => ['Product', 'URL', 'Text'],
159
-		    'materialExtent' => ['QuantitativeValue', 'Text'],
160
-		    'mentions' => ['Thing'],
161
-		    'name' => ['Text'],
162
-		    'offers' => ['Demand', 'Offer'],
163
-		    'parentItem' => ['Comment'],
164
-		    'pattern' => ['DefinedTerm', 'Text'],
165
-		    'position' => ['Text', 'Integer'],
166
-		    'potentialAction' => ['Action'],
167
-		    'producer' => ['Organization', 'Person'],
168
-		    'provider' => ['Organization', 'Person'],
169
-		    'publication' => ['PublicationEvent'],
170
-		    'publisher' => ['Organization', 'Person'],
171
-		    'publisherImprint' => ['Organization'],
172
-		    'publishingPrinciples' => ['CreativeWork', 'URL'],
173
-		    'recordedAt' => ['Event'],
174
-		    'releasedEvent' => ['PublicationEvent'],
175
-		    'review' => ['Review'],
176
-		    'reviews' => ['Review'],
177
-		    'sameAs' => ['URL'],
178
-		    'schemaVersion' => ['URL', 'Text'],
179
-		    'sdDatePublished' => ['Date'],
180
-		    'sdLicense' => ['CreativeWork', 'URL'],
181
-		    'sdPublisher' => ['Organization', 'Person'],
182
-		    'size' => ['DefinedTerm', 'QuantitativeValue', 'Text', 'SizeSpecification'],
183
-		    'sourceOrganization' => ['Organization'],
184
-		    'spatial' => ['Place'],
185
-		    'spatialCoverage' => ['Place'],
186
-		    'sponsor' => ['Organization', 'Person'],
187
-		    'subjectOf' => ['Event', 'CreativeWork'],
188
-		    'teaches' => ['DefinedTerm', 'Text'],
189
-		    'temporal' => ['DateTime', 'Text'],
190
-		    'temporalCoverage' => ['URL', 'Text', 'DateTime'],
191
-		    'text' => ['Text'],
192
-		    'thumbnailUrl' => ['URL'],
193
-		    'timeRequired' => ['Duration'],
194
-		    'translationOfWork' => ['CreativeWork'],
195
-		    'translator' => ['Organization', 'Person'],
196
-		    'typicalAgeRange' => ['Text'],
197
-		    'upvoteCount' => ['Integer'],
198
-		    'url' => ['URL'],
199
-		    'usageInfo' => ['URL', 'CreativeWork'],
200
-		    'version' => ['Number', 'Text'],
201
-		    'video' => ['VideoObject', 'Clip'],
202
-		    'workExample' => ['CreativeWork'],
203
-		    'workTranslation' => ['CreativeWork']
204
-		];
205
-	}
70
+    /**
71
+     * @inheritdoc
72
+     */
73
+    public function getSchemaPropertyExpectedTypes(): array
74
+    {
75
+        return [
76
+            'about' => ['Thing'],
77
+            'abstract' => ['Text'],
78
+            'accessMode' => ['Text'],
79
+            'accessModeSufficient' => ['ItemList'],
80
+            'accessibilityAPI' => ['Text'],
81
+            'accessibilityControl' => ['Text'],
82
+            'accessibilityFeature' => ['Text'],
83
+            'accessibilityHazard' => ['Text'],
84
+            'accessibilitySummary' => ['Text'],
85
+            'accountablePerson' => ['Person'],
86
+            'acquireLicensePage' => ['CreativeWork', 'URL'],
87
+            'additionalType' => ['URL'],
88
+            'aggregateRating' => ['AggregateRating'],
89
+            'alternateName' => ['Text'],
90
+            'alternativeHeadline' => ['Text'],
91
+            'answerExplanation' => ['Comment', 'WebContent'],
92
+            'archivedAt' => ['WebPage', 'URL'],
93
+            'assesses' => ['DefinedTerm', 'Text'],
94
+            'associatedMedia' => ['MediaObject'],
95
+            'audience' => ['Audience'],
96
+            'audio' => ['MusicRecording', 'AudioObject', 'Clip'],
97
+            'author' => ['Organization', 'Person'],
98
+            'award' => ['Text'],
99
+            'awards' => ['Text'],
100
+            'character' => ['Person'],
101
+            'citation' => ['CreativeWork', 'Text'],
102
+            'comment' => ['Comment'],
103
+            'commentCount' => ['Integer'],
104
+            'conditionsOfAccess' => ['Text'],
105
+            'contentLocation' => ['Place'],
106
+            'contentRating' => ['Text', 'Rating'],
107
+            'contentReferenceTime' => ['DateTime'],
108
+            'contributor' => ['Organization', 'Person'],
109
+            'copyrightHolder' => ['Organization', 'Person'],
110
+            'copyrightNotice' => ['Text'],
111
+            'copyrightYear' => ['Number'],
112
+            'correction' => ['URL', 'Text', 'CorrectionComment'],
113
+            'countryOfOrigin' => ['Country'],
114
+            'creativeWorkStatus' => ['DefinedTerm', 'Text'],
115
+            'creator' => ['Person', 'Organization'],
116
+            'creditText' => ['Text'],
117
+            'dateCreated' => ['DateTime', 'Date'],
118
+            'dateModified' => ['DateTime', 'Date'],
119
+            'datePublished' => ['DateTime', 'Date'],
120
+            'description' => ['Text'],
121
+            'disambiguatingDescription' => ['Text'],
122
+            'discussionUrl' => ['URL'],
123
+            'downvoteCount' => ['Integer'],
124
+            'editEIDR' => ['URL', 'Text'],
125
+            'editor' => ['Person'],
126
+            'educationalAlignment' => ['AlignmentObject'],
127
+            'educationalLevel' => ['Text', 'URL', 'DefinedTerm'],
128
+            'educationalUse' => ['DefinedTerm', 'Text'],
129
+            'encoding' => ['MediaObject'],
130
+            'encodingFormat' => ['URL', 'Text'],
131
+            'encodings' => ['MediaObject'],
132
+            'exampleOfWork' => ['CreativeWork'],
133
+            'expires' => ['Date', 'DateTime'],
134
+            'fileFormat' => ['Text', 'URL'],
135
+            'funder' => ['Organization', 'Person'],
136
+            'funding' => ['Grant'],
137
+            'genre' => ['Text', 'URL'],
138
+            'hasPart' => ['CreativeWork'],
139
+            'headline' => ['Text'],
140
+            'identifier' => ['PropertyValue', 'URL', 'Text'],
141
+            'image' => ['URL', 'ImageObject'],
142
+            'inLanguage' => ['Text', 'Language'],
143
+            'interactionStatistic' => ['InteractionCounter'],
144
+            'interactivityType' => ['Text'],
145
+            'interpretedAsClaim' => ['Claim'],
146
+            'isAccessibleForFree' => ['Boolean'],
147
+            'isBasedOn' => ['URL', 'Product', 'CreativeWork'],
148
+            'isBasedOnUrl' => ['URL', 'Product', 'CreativeWork'],
149
+            'isFamilyFriendly' => ['Boolean'],
150
+            'isPartOf' => ['URL', 'CreativeWork'],
151
+            'keywords' => ['URL', 'DefinedTerm', 'Text'],
152
+            'learningResourceType' => ['DefinedTerm', 'Text'],
153
+            'license' => ['URL', 'CreativeWork'],
154
+            'locationCreated' => ['Place'],
155
+            'mainEntity' => ['Thing'],
156
+            'mainEntityOfPage' => ['URL', 'CreativeWork'],
157
+            'maintainer' => ['Person', 'Organization'],
158
+            'material' => ['Product', 'URL', 'Text'],
159
+            'materialExtent' => ['QuantitativeValue', 'Text'],
160
+            'mentions' => ['Thing'],
161
+            'name' => ['Text'],
162
+            'offers' => ['Demand', 'Offer'],
163
+            'parentItem' => ['Comment'],
164
+            'pattern' => ['DefinedTerm', 'Text'],
165
+            'position' => ['Text', 'Integer'],
166
+            'potentialAction' => ['Action'],
167
+            'producer' => ['Organization', 'Person'],
168
+            'provider' => ['Organization', 'Person'],
169
+            'publication' => ['PublicationEvent'],
170
+            'publisher' => ['Organization', 'Person'],
171
+            'publisherImprint' => ['Organization'],
172
+            'publishingPrinciples' => ['CreativeWork', 'URL'],
173
+            'recordedAt' => ['Event'],
174
+            'releasedEvent' => ['PublicationEvent'],
175
+            'review' => ['Review'],
176
+            'reviews' => ['Review'],
177
+            'sameAs' => ['URL'],
178
+            'schemaVersion' => ['URL', 'Text'],
179
+            'sdDatePublished' => ['Date'],
180
+            'sdLicense' => ['CreativeWork', 'URL'],
181
+            'sdPublisher' => ['Organization', 'Person'],
182
+            'size' => ['DefinedTerm', 'QuantitativeValue', 'Text', 'SizeSpecification'],
183
+            'sourceOrganization' => ['Organization'],
184
+            'spatial' => ['Place'],
185
+            'spatialCoverage' => ['Place'],
186
+            'sponsor' => ['Organization', 'Person'],
187
+            'subjectOf' => ['Event', 'CreativeWork'],
188
+            'teaches' => ['DefinedTerm', 'Text'],
189
+            'temporal' => ['DateTime', 'Text'],
190
+            'temporalCoverage' => ['URL', 'Text', 'DateTime'],
191
+            'text' => ['Text'],
192
+            'thumbnailUrl' => ['URL'],
193
+            'timeRequired' => ['Duration'],
194
+            'translationOfWork' => ['CreativeWork'],
195
+            'translator' => ['Organization', 'Person'],
196
+            'typicalAgeRange' => ['Text'],
197
+            'upvoteCount' => ['Integer'],
198
+            'url' => ['URL'],
199
+            'usageInfo' => ['URL', 'CreativeWork'],
200
+            'version' => ['Number', 'Text'],
201
+            'video' => ['VideoObject', 'Clip'],
202
+            'workExample' => ['CreativeWork'],
203
+            'workTranslation' => ['CreativeWork']
204
+        ];
205
+    }
206 206
 
207 207
 
208
-	/**
209
-	 * @inheritdoc
210
-	 */
211
-	public function getSchemaPropertyDescriptions(): array
212
-	{
213
-		return [
214
-		    'about' => 'The subject matter of the content.',
215
-		    'abstract' => 'An abstract is a short description that summarizes a [[CreativeWork]].',
216
-		    '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).',
217
-		    '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).',
218
-		    '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).',
219
-		    '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).',
220
-		    '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).',
221
-		    '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).',
222
-		    '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."',
223
-		    'accountablePerson' => 'Specifies the Person that is legally accountable for the CreativeWork.',
224
-		    'acquireLicensePage' => 'Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item.',
225
-		    '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.',
226
-		    'aggregateRating' => 'The overall rating, based on a collection of reviews or ratings, of the item.',
227
-		    'alternateName' => 'An alias for the item.',
228
-		    'alternativeHeadline' => 'A secondary title of the CreativeWork.',
229
-		    'answerExplanation' => 'A step-by-step or full explanation about Answer. Can outline how this Answer was achieved or contain more broad clarification or statement about it. ',
230
-		    '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.',
231
-		    'assesses' => 'The item being described is intended to assess the competency or learning outcome defined by the referenced term.',
232
-		    'associatedMedia' => 'A media object that encodes this CreativeWork. This property is a synonym for encoding.',
233
-		    'audience' => 'An intended audience, i.e. a group for whom something was created.',
234
-		    'audio' => 'An embedded audio object.',
235
-		    '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.',
236
-		    'award' => 'An award won by or for this item.',
237
-		    'awards' => 'Awards won by or for this item.',
238
-		    'character' => 'Fictional person connected with a creative work.',
239
-		    'citation' => 'A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.',
240
-		    'comment' => 'Comments, typically from users.',
241
-		    '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.',
242
-		    '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 ". ',
243
-		    'contentLocation' => 'The location depicted or described in the content. For example, the location in a photograph or painting.',
244
-		    'contentRating' => 'Official rating of a piece of content—for example, \'MPAA PG-13\'.',
245
-		    '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.',
246
-		    'contributor' => 'A secondary contributor to the CreativeWork or Event.',
247
-		    'copyrightHolder' => 'The party holding the legal copyright to the CreativeWork.',
248
-		    '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.',
249
-		    'copyrightYear' => 'The year during which the claimed copyright for the CreativeWork was first asserted.',
250
-		    'correction' => 'Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document.',
251
-		    '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.',
252
-		    '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.',
253
-		    'creator' => 'The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.',
254
-		    'creditText' => 'Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work.',
255
-		    'dateCreated' => 'The date on which the CreativeWork was created or the item was added to a DataFeed.',
256
-		    'dateModified' => 'The date on which the CreativeWork was most recently modified or when the item\'s entry was modified within a DataFeed.',
257
-		    'datePublished' => 'Date of first broadcast/publication.',
258
-		    'description' => 'A description of the item.',
259
-		    '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.',
260
-		    'discussionUrl' => 'A link to the page containing the comments of the CreativeWork.',
261
-		    'downvoteCount' => 'The number of downvotes this question, answer or comment has received from the community.',
262
-		    '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. ',
263
-		    'editor' => 'Specifies the Person who edited the CreativeWork.',
264
-		    '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.',
265
-		    '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.',
266
-		    'educationalUse' => 'The purpose of a work in the context of education; for example, \'assignment\', \'group work\'.',
267
-		    'encoding' => 'A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.',
268
-		    '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.',
269
-		    'encodings' => 'A media object that encodes this CreativeWork.',
270
-		    'exampleOfWork' => 'A creative work that this work is an example/instance/realization/derivation of.',
271
-		    '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.',
272
-		    '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.',
273
-		    'funder' => 'A person or organization that supports (sponsors) something through some kind of financial contribution.',
274
-		    'funding' => 'A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]].',
275
-		    'genre' => 'Genre of the creative work, broadcast channel or group.',
276
-		    'hasPart' => 'Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).',
277
-		    'headline' => 'Headline of the article.',
278
-		    '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.         ',
279
-		    'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
280
-		    '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]].',
281
-		    'interactionStatistic' => 'The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used.',
282
-		    'interactivityType' => 'The predominant mode of learning supported by the learning resource. Acceptable values are \'active\', \'expositive\', or \'mixed\'.',
283
-		    '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]].',
284
-		    'isAccessibleForFree' => 'A flag to signal that the item, event, or place is accessible for free.',
285
-		    'isBasedOn' => 'A resource from which this work is derived or from which it is a modification or adaption.',
286
-		    '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.',
287
-		    'isFamilyFriendly' => 'Indicates whether this content is family friendly.',
288
-		    'isPartOf' => 'Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of.',
289
-		    '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.',
290
-		    'learningResourceType' => 'The predominant type or kind characterizing the learning resource. For example, \'presentation\', \'handout\'.',
291
-		    'license' => 'A license document that applies to this content, typically indicated by URL.',
292
-		    'locationCreated' => 'The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork.',
293
-		    'mainEntity' => 'Indicates the primary entity described in some page or other CreativeWork.',
294
-		    '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.',
295
-		    '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.       ',
296
-		    'material' => 'A material that something is made from, e.g. leather, wool, cotton, paper.',
297
-		    'materialExtent' => 'The quantity of the materials being described or an expression of the physical space they occupy.',
298
-		    'mentions' => 'Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.',
299
-		    'name' => 'The name of the item.',
300
-		    '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.       ',
301
-		    'parentItem' => 'The parent of a question, answer or item in general.',
302
-		    '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.',
303
-		    'position' => 'The position of an item in a series or sequence of items.',
304
-		    'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
305
-		    'producer' => 'The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.).',
306
-		    '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.',
307
-		    'publication' => 'A publication event associated with the item.',
308
-		    'publisher' => 'The publisher of the creative work.',
309
-		    'publisherImprint' => 'The publishing division which published the comic.',
310
-		    '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. ',
311
-		    'recordedAt' => 'The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event.',
312
-		    'releasedEvent' => 'The place and time the release was issued, expressed as a PublicationEvent.',
313
-		    'review' => 'A review of the item.',
314
-		    'reviews' => 'Review of the item.',
315
-		    '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.',
316
-		    '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.',
317
-		    'sdDatePublished' => 'Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]]',
318
-		    'sdLicense' => 'A license document that applies to this structured data, typically indicated by URL.',
319
-		    '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.',
320
-		    '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. ',
321
-		    'sourceOrganization' => 'The Organization on whose behalf the creator was working.',
322
-		    'spatial' => 'The "spatial" property can be used in cases when more specific properties (e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.',
323
-		    '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.',
324
-		    '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.',
325
-		    'subjectOf' => 'A CreativeWork or Event about this Thing.',
326
-		    'teaches' => 'The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term.',
327
-		    '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.',
328
-		    '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.',
329
-		    'text' => 'The textual content of this CreativeWork.',
330
-		    'thumbnailUrl' => 'A thumbnail image relevant to the Thing.',
331
-		    '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\'.',
332
-		    'translationOfWork' => 'The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”.',
333
-		    '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.',
334
-		    'typicalAgeRange' => 'The typical expected age range, e.g. \'7-9\', \'11-\'.',
335
-		    'upvoteCount' => 'The number of upvotes this question, answer or comment has received from the community.',
336
-		    'url' => 'URL of the item.',
337
-		    '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.',
338
-		    'version' => 'The version of the CreativeWork embodied by a specified resource.',
339
-		    'video' => 'An embedded video object.',
340
-		    'workExample' => 'Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book.',
341
-		    '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.'
342
-		];
343
-	}
208
+    /**
209
+     * @inheritdoc
210
+     */
211
+    public function getSchemaPropertyDescriptions(): array
212
+    {
213
+        return [
214
+            'about' => 'The subject matter of the content.',
215
+            'abstract' => 'An abstract is a short description that summarizes a [[CreativeWork]].',
216
+            '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).',
217
+            '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).',
218
+            '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).',
219
+            '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).',
220
+            '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).',
221
+            '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).',
222
+            '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."',
223
+            'accountablePerson' => 'Specifies the Person that is legally accountable for the CreativeWork.',
224
+            'acquireLicensePage' => 'Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item.',
225
+            '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.',
226
+            'aggregateRating' => 'The overall rating, based on a collection of reviews or ratings, of the item.',
227
+            'alternateName' => 'An alias for the item.',
228
+            'alternativeHeadline' => 'A secondary title of the CreativeWork.',
229
+            'answerExplanation' => 'A step-by-step or full explanation about Answer. Can outline how this Answer was achieved or contain more broad clarification or statement about it. ',
230
+            '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.',
231
+            'assesses' => 'The item being described is intended to assess the competency or learning outcome defined by the referenced term.',
232
+            'associatedMedia' => 'A media object that encodes this CreativeWork. This property is a synonym for encoding.',
233
+            'audience' => 'An intended audience, i.e. a group for whom something was created.',
234
+            'audio' => 'An embedded audio object.',
235
+            '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.',
236
+            'award' => 'An award won by or for this item.',
237
+            'awards' => 'Awards won by or for this item.',
238
+            'character' => 'Fictional person connected with a creative work.',
239
+            'citation' => 'A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.',
240
+            'comment' => 'Comments, typically from users.',
241
+            '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.',
242
+            '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 ". ',
243
+            'contentLocation' => 'The location depicted or described in the content. For example, the location in a photograph or painting.',
244
+            'contentRating' => 'Official rating of a piece of content—for example, \'MPAA PG-13\'.',
245
+            '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.',
246
+            'contributor' => 'A secondary contributor to the CreativeWork or Event.',
247
+            'copyrightHolder' => 'The party holding the legal copyright to the CreativeWork.',
248
+            '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.',
249
+            'copyrightYear' => 'The year during which the claimed copyright for the CreativeWork was first asserted.',
250
+            'correction' => 'Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document.',
251
+            '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.',
252
+            '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.',
253
+            'creator' => 'The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.',
254
+            'creditText' => 'Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work.',
255
+            'dateCreated' => 'The date on which the CreativeWork was created or the item was added to a DataFeed.',
256
+            'dateModified' => 'The date on which the CreativeWork was most recently modified or when the item\'s entry was modified within a DataFeed.',
257
+            'datePublished' => 'Date of first broadcast/publication.',
258
+            'description' => 'A description of the item.',
259
+            '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.',
260
+            'discussionUrl' => 'A link to the page containing the comments of the CreativeWork.',
261
+            'downvoteCount' => 'The number of downvotes this question, answer or comment has received from the community.',
262
+            '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. ',
263
+            'editor' => 'Specifies the Person who edited the CreativeWork.',
264
+            '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.',
265
+            '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.',
266
+            'educationalUse' => 'The purpose of a work in the context of education; for example, \'assignment\', \'group work\'.',
267
+            'encoding' => 'A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.',
268
+            '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.',
269
+            'encodings' => 'A media object that encodes this CreativeWork.',
270
+            'exampleOfWork' => 'A creative work that this work is an example/instance/realization/derivation of.',
271
+            '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.',
272
+            '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.',
273
+            'funder' => 'A person or organization that supports (sponsors) something through some kind of financial contribution.',
274
+            'funding' => 'A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]].',
275
+            'genre' => 'Genre of the creative work, broadcast channel or group.',
276
+            'hasPart' => 'Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).',
277
+            'headline' => 'Headline of the article.',
278
+            '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.         ',
279
+            'image' => 'An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].',
280
+            '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]].',
281
+            'interactionStatistic' => 'The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used.',
282
+            'interactivityType' => 'The predominant mode of learning supported by the learning resource. Acceptable values are \'active\', \'expositive\', or \'mixed\'.',
283
+            '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]].',
284
+            'isAccessibleForFree' => 'A flag to signal that the item, event, or place is accessible for free.',
285
+            'isBasedOn' => 'A resource from which this work is derived or from which it is a modification or adaption.',
286
+            '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.',
287
+            'isFamilyFriendly' => 'Indicates whether this content is family friendly.',
288
+            'isPartOf' => 'Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of.',
289
+            '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.',
290
+            'learningResourceType' => 'The predominant type or kind characterizing the learning resource. For example, \'presentation\', \'handout\'.',
291
+            'license' => 'A license document that applies to this content, typically indicated by URL.',
292
+            'locationCreated' => 'The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork.',
293
+            'mainEntity' => 'Indicates the primary entity described in some page or other CreativeWork.',
294
+            '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.',
295
+            '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.       ',
296
+            'material' => 'A material that something is made from, e.g. leather, wool, cotton, paper.',
297
+            'materialExtent' => 'The quantity of the materials being described or an expression of the physical space they occupy.',
298
+            'mentions' => 'Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.',
299
+            'name' => 'The name of the item.',
300
+            '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.       ',
301
+            'parentItem' => 'The parent of a question, answer or item in general.',
302
+            '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.',
303
+            'position' => 'The position of an item in a series or sequence of items.',
304
+            'potentialAction' => 'Indicates a potential Action, which describes an idealized action in which this thing would play an \'object\' role.',
305
+            'producer' => 'The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.).',
306
+            '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.',
307
+            'publication' => 'A publication event associated with the item.',
308
+            'publisher' => 'The publisher of the creative work.',
309
+            'publisherImprint' => 'The publishing division which published the comic.',
310
+            '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. ',
311
+            'recordedAt' => 'The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event.',
312
+            'releasedEvent' => 'The place and time the release was issued, expressed as a PublicationEvent.',
313
+            'review' => 'A review of the item.',
314
+            'reviews' => 'Review of the item.',
315
+            '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.',
316
+            '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.',
317
+            'sdDatePublished' => 'Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]]',
318
+            'sdLicense' => 'A license document that applies to this structured data, typically indicated by URL.',
319
+            '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.',
320
+            '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. ',
321
+            'sourceOrganization' => 'The Organization on whose behalf the creator was working.',
322
+            'spatial' => 'The "spatial" property can be used in cases when more specific properties (e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.',
323
+            '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.',
324
+            '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.',
325
+            'subjectOf' => 'A CreativeWork or Event about this Thing.',
326
+            'teaches' => 'The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term.',
327
+            '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.',
328
+            '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.',
329
+            'text' => 'The textual content of this CreativeWork.',
330
+            'thumbnailUrl' => 'A thumbnail image relevant to the Thing.',
331
+            '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\'.',
332
+            'translationOfWork' => 'The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”.',
333
+            '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.',
334
+            'typicalAgeRange' => 'The typical expected age range, e.g. \'7-9\', \'11-\'.',
335
+            'upvoteCount' => 'The number of upvotes this question, answer or comment has received from the community.',
336
+            'url' => 'URL of the item.',
337
+            '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.',
338
+            'version' => 'The version of the CreativeWork embodied by a specified resource.',
339
+            'video' => 'An embedded video object.',
340
+            'workExample' => 'Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book.',
341
+            '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.'
342
+        ];
343
+    }
344 344
 
345 345
 
346
-	/**
347
-	 * @inheritdoc
348
-	 */
349
-	public function getGoogleRequiredSchema(): array
350
-	{
351
-		return ['description', 'name'];
352
-	}
346
+    /**
347
+     * @inheritdoc
348
+     */
349
+    public function getGoogleRequiredSchema(): array
350
+    {
351
+        return ['description', 'name'];
352
+    }
353 353
 
354 354
 
355
-	/**
356
-	 * @inheritdoc
357
-	 */
358
-	public function getGoogleRecommendedSchema(): array
359
-	{
360
-		return ['image', 'url'];
361
-	}
355
+    /**
356
+     * @inheritdoc
357
+     */
358
+    public function getGoogleRecommendedSchema(): array
359
+    {
360
+        return ['image', 'url'];
361
+    }
362 362
 
363 363
 
364
-	/**
365
-	 * @inheritdoc
366
-	 */
367
-	public function defineRules(): array
368
-	{
369
-		$rules = parent::defineRules();
370
-		    $rules = array_merge($rules, [
371
-		        [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
372
-		        [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
373
-		        [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
374
-		    ]);
364
+    /**
365
+     * @inheritdoc
366
+     */
367
+    public function defineRules(): array
368
+    {
369
+        $rules = parent::defineRules();
370
+            $rules = array_merge($rules, [
371
+                [$this->getSchemaPropertyNames(), 'validateJsonSchema'],
372
+                [$this->getGoogleRequiredSchema(), 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
373
+                [$this->getGoogleRecommendedSchema(), 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
374
+            ]);
375 375
 
376
-		    return $rules;
377
-	}
376
+            return $rules;
377
+    }
378 378
 }
Please login to merge, or discard this patch.
src/models/jsonld/PreventionHealthAspect.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 PreventionHealthAspect extends MetaJsonLd implements PreventionHealthAspectInterface, HealthAspectEnumerationInterface, EnumerationInterface, IntangibleInterface, ThingInterface
26 26
 {
27
-	use PreventionHealthAspectTrait;
28
-	use HealthAspectEnumerationTrait;
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 = 'PreventionHealthAspect';
39
-
40
-	/**
41
-	 * The Schema.org Type Scope
42
-	 *
43
-	 * @var string
44
-	 */
45
-	public static $schemaTypeScope = 'https://schema.org/PreventionHealthAspect';
46
-
47
-	/**
48
-	 * The Schema.org Type Extends
49
-	 *
50
-	 * @var string
51
-	 */
52
-	public static $schemaTypeExtends = 'HealthAspectEnumeration';
53
-
54
-	/**
55
-	 * The Schema.org Type Description
56
-	 *
57
-	 * @var string
58
-	 */
59
-	public static $schemaTypeDescription = 'Information about actions or measures that can be taken to avoid getting the topic or reaching a critical situation related to the topic.';
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 PreventionHealthAspectTrait;
28
+    use HealthAspectEnumerationTrait;
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 = 'PreventionHealthAspect';
39
+
40
+    /**
41
+     * The Schema.org Type Scope
42
+     *
43
+     * @var string
44
+     */
45
+    public static $schemaTypeScope = 'https://schema.org/PreventionHealthAspect';
46
+
47
+    /**
48
+     * The Schema.org Type Extends
49
+     *
50
+     * @var string
51
+     */
52
+    public static $schemaTypeExtends = 'HealthAspectEnumeration';
53
+
54
+    /**
55
+     * The Schema.org Type Description
56
+     *
57
+     * @var string
58
+     */
59
+    public static $schemaTypeDescription = 'Information about actions or measures that can be taken to avoid getting the topic or reaching a critical situation related to the topic.';
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.