<?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;
|
}
|