metamaps--metamaps/doc/api/schemas/_mapping.json

42 lines
671 B
JSON
Raw Normal View History

{
"name": "Mapping",
"type": "object",
"properties": {
"id": {
"$ref": "_id.json"
},
"mappable_id": {
"$ref": "_id.json"
},
"mappable_type": {
"type": "string",
"pattern": "(Topic|Synapse)"
},
"xloc": {
"type": "integer"
},
"yloc": {
"type": "integer"
},
"created_at": {
"$ref": "_datetimestamp.json"
},
"updated_at": {
"$ref": "_datetimestamp.json"
},
"map_id": {
"$ref": "_id.json"
},
"user_id": {
"$ref": "_id.json"
}
},
"required": [
"id",
"mappable_id",
"mappable_type",
"created_at",
"updated_at"
]
}