Actions
Task #2885
openPublication data packets schema
Status:
New
Priority:
Normal
Assignee:
-
Category:
-
Start date:
06/12/2015
Due date:
% Done:
0%
Estimated time:
Description
Can be identical to the sync schema.Thoughts?
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "publication requests",
"type": "object",
"properties": {
"add": {
"description": "NDN name URIs to be added",
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true
},
"remove": {
"description": "NDN name URIs to be removed",
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true
}
},
"required": [
"add",
"remove"
]
}
Actions