2
0

🌐 Add it translations

This commit is contained in:
Baptiste Arnaud
2024-01-19 10:16:09 +01:00
parent f4d315fed5
commit 29bd5f1539
11 changed files with 613 additions and 10 deletions

View File

@ -3836,6 +3836,44 @@
"document",
"timestamp"
]
},
{
"type": "object",
"properties": {
"from": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"location"
]
},
"location": {
"type": "object",
"properties": {
"latitude": {
"type": "number"
},
"longitude": {
"type": "number"
}
},
"required": [
"latitude",
"longitude"
]
},
"timestamp": {
"type": "string"
}
},
"required": [
"from",
"type",
"location",
"timestamp"
]
}
]
}