mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-04-23 16:00:50 -04:00
42 lines
716 B
JSON
42 lines
716 B
JSON
{
|
|
"name": "Survey",
|
|
"description": "Survey responses from campers",
|
|
"base": "PersistedModel",
|
|
"idInjection": true,
|
|
"options": {
|
|
"strict": true
|
|
},
|
|
"properties": {
|
|
"title": {
|
|
"type": "string",
|
|
"required": true
|
|
},
|
|
"responses": {
|
|
"type": [
|
|
{
|
|
"question": "string",
|
|
"response": "string"
|
|
}
|
|
],
|
|
"required": true
|
|
}
|
|
},
|
|
"validations": [],
|
|
"relations": {
|
|
"user": {
|
|
"type": "belongsTo",
|
|
"model": "user",
|
|
"foreignKey": "userId"
|
|
}
|
|
},
|
|
"acls": [
|
|
{
|
|
"accessType": "*",
|
|
"principalType": "ROLE",
|
|
"principalId": "$everyone",
|
|
"permission": "DENY"
|
|
}
|
|
],
|
|
"methods": {}
|
|
}
|