freeCodeCamp/common/models/job.json

41 lines
695 B
JSON
Raw Normal View History

{
"name": "job",
"base": "PersistedModel",
"idInjection": true,
2015-06-11 06:59:42 +00:00
"trackChanges": false,
"properties": {
2015-06-11 06:59:42 +00:00
"position": {
"type": "string"
},
"company": {
"type": "string"
},
"logoUrl": {
"type": "string"
},
"postingUrl": {
"type": "string"
},
"copy": {
"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"
}
],
"methods": []
}