textiot
Version:
A framework for building web and native (IoT) Dapps on the IPFS network
47 lines (46 loc) • 1.05 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.schema = void 0;
exports.schema = {
name: 'media',
pin: true,
plaintext: false,
mill: 'skip',
opts: {},
json_schema: {},
links: {
thumb: {
use: 'large',
pin: true,
plaintext: false,
mill: '/image/resize',
opts: {
quality: '80',
width: '100'
},
json_schema: {}
},
large: {
use: ':file',
pin: false,
plaintext: false,
mill: '/image/resize',
opts: {
quality: '80',
width: '800'
},
json_schema: {}
},
small: {
use: ':file',
pin: false,
plaintext: false,
mill: '/image/resize',
opts: {
quality: '80',
width: '320'
},
json_schema: {}
}
}
};