Add controlled list of research status (for now for actors)

This commit is contained in:
Joshua Ramon Enslin 2021-10-09 14:07:35 +02:00
parent 4daf580355
commit 35b713f1c9
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

View File

@ -0,0 +1,23 @@
<?PHP
/**
* Research status.
*
* @see https://tools.ietf.org/html/rfc2426
* @see https://tools.ietf.org/html/rfc6350
*
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
*/
declare(strict_types = 1);
/**
* Class containing available place types.
*/
final class MDResearchStatusSet extends MDValueSet {
const RESEARCH_STATUS = [
'bad',
'medium',
'good',
];
}