Jake Vanderwerf
2026-03-03 772462eeca3002a1d52508aeba485aab2b4742ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
namespace JVBase\managers\SEO\render\Thing\CreativeWork;
 
use JVBase\managers\SEO\render\Thing\Intangible\DefinedTerm;
use JVBase\managers\SEO\render\Thing\Intangible\Quantity\Duration;
use JVBase\managers\SEO\render\Thing\Organization\Organization;
use JVBase\managers\SEO\render\Thing\Place\AdministrativeArea\AdministrativeArea;
 
if (!defined('ABSPATH')) {
    exit;
}
 
class EducationalOccupationalCredential extends CreativeWork {
    /**
     * @var DefinedTerm|string Knowledge, skill, ability or personal attribute that must be demonstrated by a person or other entity in order to do something such as earn an Educational Occupational Credential or understand a LearningResource.
     */
    protected DefinedTerm|string $competencyRequired;
    /**
     * @var DefinedTerm|string The category or type of credential being described, for example "degree”, “certificate”, “badge”, or more specific term.
     */
    protected DefinedTerm|string $credentialCategory;
    /**
     * @var DefinedTerm|string 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.
     */
    protected DefinedTerm|string $educationalLevel;
    /**
     * @var Organization An organization that acknowledges the validity, value or utility of a credential. Note: recognition may include a process of quality assurance or accreditation.
     */
    protected Organization $recognizedBy;
    /**
     * @var Duration The duration of validity of a permit or similar thing.
     */
    protected Duration $validFor;
    /**
     * @var AdministrativeArea The geographic area where the item is valid. Applies for example to a Permit, a Certification, or an EducationalOccupationalCredential.
     */
    protected AdministrativeArea $validIn;
}