2016-09-21 17:22:40 +00:00
|
|
|
{
|
|
|
|
"name": "Map",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"$ref": "_id.json"
|
|
|
|
},
|
|
|
|
"name": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"desc": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"permission": {
|
|
|
|
"$ref": "_permission.json"
|
|
|
|
},
|
|
|
|
"screenshot": {
|
|
|
|
"format": "uri",
|
|
|
|
"type": "string"
|
|
|
|
},
|
2016-10-05 14:36:03 +00:00
|
|
|
"starred": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
2016-09-21 17:22:40 +00:00
|
|
|
"created_at": {
|
|
|
|
"$ref": "_datetimestamp.json"
|
|
|
|
},
|
|
|
|
"updated_at": {
|
|
|
|
"$ref": "_datetimestamp.json"
|
|
|
|
},
|
|
|
|
"topic_ids": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "_id.json"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"synapse_ids": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "_id.json"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"mapping_ids": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "_id.json"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"contributor_ids": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "_id.json"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"collaborator_ids": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "_id.json"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"id",
|
|
|
|
"name",
|
|
|
|
"desc",
|
|
|
|
"permission",
|
|
|
|
"screenshot",
|
2016-10-05 14:36:03 +00:00
|
|
|
"starred",
|
2016-09-21 17:22:40 +00:00
|
|
|
"created_at",
|
|
|
|
"updated_at"
|
|
|
|
]
|
|
|
|
}
|