freeCodeCamp/common/models/bonfire.json

45 lines
773 B
JSON
Raw Normal View History

2015-06-02 23:08:50 +00:00
{
"name": "bonfire",
"base": "PersistedModel",
"idInjection": true,
2015-06-11 06:59:42 +00:00
"trackChanges": false,
2015-06-02 23:08:50 +00:00
"properties": {
"name": {
"type": "string",
"unique": true
},
2015-06-11 06:59:42 +00:00
"difficulty": {
"type": "string"
},
"description": {
"type": "array"
},
"tests": {
"type": "array"
},
"challengeSeed": {
"type": "array"
},
2015-06-02 23:08:50 +00:00
"MDNlinks": {
"type": "array"
}
},
"validations": [],
"relations": {},
2015-06-11 06:59:42 +00:00
"acls": [
{
"accessType": "*",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "DENY"
},
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$authenticated",
"permission": "ALLOW"
}
],
2015-06-02 23:08:50 +00:00
"methods": []
}