1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/dist/tools/features_yaml2mx/schema.cddl

17 lines
327 B
Plaintext
Raw Normal View History

root = group-toplevel
group-toplevel = group .within { "groups" => any }
group-nested = group .within { "title" => tstr, any => any }
group = {
? "title" => tstr,
? "help" => tstr,
? "features" => [ + feature ],
? "groups" => [ + group-nested ],
}
feature = {
"name" => tstr,
? "help" => tstr,
}