update metadir

This commit is contained in:
fetsorn 2022-10-02 23:05:09 +04:00
parent 61280a6cfe
commit 13d03e4a02

View File

@ -1,57 +1,101 @@
{ {
"datum": { "datum": {
"type": "string", "type": "string",
"label": "DATUM" "label": "DATUM",
"description": {
"en": "Description of the event",
"ru": "Описание события"
}
}, },
"hostdate": { "hostdate": {
"parent": "datum", "parent": "datum",
"dir": "date", "dir": "date",
"type": "date", "type": "date",
"label": "HOST_DATE" "label": "HOST_DATE",
"description": {
"en": "Date of the event",
"ru": "Дата события"
}
}, },
"hostname": { "hostname": {
"parent": "datum", "parent": "datum",
"dir": "name", "dir": "name",
"label": "HOST_NAME" "label": "HOST_NAME",
"description": {
"en": "Name of the person in the event",
"ru": "Имя человека участвовавшего в событии"
}
}, },
"guestdate": { "guestdate": {
"parent": "datum", "parent": "datum",
"dir": "date", "dir": "date",
"type": "date", "type": "date",
"label": "GUEST_DATE" "label": "GUEST_DATE",
"description": {
"en": "Date of entry",
"ru": "Дата записи"
}
}, },
"guestname": { "guestname": {
"parent": "datum", "parent": "datum",
"dir": "name", "dir": "name",
"label": "GUEST_NAME" "label": "GUEST_NAME",
"description": {
"en": "Name of the person who made the entry",
"ru": "Имя автора записи"
}
}, },
"tag": { "tag": {
"parent": "datum", "parent": "datum",
"label": "TAG" "label": "TAG",
"description": {
"en": "Tag",
"ru": "Тег"
}
}, },
"filepath": { "filepath": {
"parent": "datum", "parent": "datum",
"label": "FILE_PATH", "label": "FILE_PATH",
"type": "string" "type": "string",
"description": {
"en": "Path to a digital asset",
"ru": "Путь к файлу"
}
}, },
"moddate": { "moddate": {
"parent": "filepath", "parent": "filepath",
"dir": "date", "dir": "date",
"type": "date", "type": "date",
"label": "MOD_DATE" "label": "MOD_DATE",
"description": {
"en": "Date of the file",
"ru": "Дата файла"
}
}, },
"filetype": { "filetype": {
"parent": "filepath", "parent": "filepath",
"label": "FILE_TYPE", "label": "FILE_TYPE",
"type": "string" "type": "string",
"description": {
"en": "Type of the file",
"ru": "Тип файла"
}
}, },
"filesize": { "filesize": {
"parent": "filepath", "parent": "filepath",
"label": "FILE_SIZE" "label": "FILE_SIZE",
"description": {
"en": "Size of the file",
"ru": "Размер файла"
}
}, },
"filehash": { "filehash": {
"parent": "filepath", "parent": "filepath",
"label": "FILE_HASH", "label": "FILE_HASH",
"type": "hash" "type": "hash",
"description": {
"en": "Hashsum of the file",
"ru": "Хэш файла"
}
} }
} }