mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
23 lines
554 B
TypeScript
23 lines
554 B
TypeScript
export default {
|
|
id: { type: 'string', primary: true },
|
|
lat: { type: 'number' },
|
|
lng: { type: 'number' },
|
|
type: { type: 'string' },
|
|
name: { type: 'string' },
|
|
nameES: { type: 'string' },
|
|
nameFR: { type: 'string' },
|
|
nameIT: { type: 'string' },
|
|
nameEN: { type: 'string' },
|
|
namePT: { type: 'string' },
|
|
nameDE: { type: 'string' },
|
|
nameNL: { type: 'string' },
|
|
namePL: { type: 'string' },
|
|
nameRU: { type: 'string' },
|
|
isIn: {
|
|
type: 'relationship',
|
|
relationship: 'IS_IN',
|
|
target: 'Location',
|
|
direction: 'out',
|
|
},
|
|
}
|