Download this file

metadata-item.json    33 lines (32 with data), 568 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "metadataItem",
"base": "PersistedModel",
"idInjection": true,
"options": {
"validateUpsert": true
},
"properties": {
"url": {
"type": "string",
"description": "endpoint"
},
"desc": {
"type": "string",
"description": "what this endpoint is used for"
},
"verb": {
"type": "string",
"description": "type of endpoint",
"enum": [
"POST",
"GET",
"PUT",
"DELETE"
]
}
},
"validations": [],
"relations": {},
"acls": [],
"methods": {}
}