@0xcert/conventions
Version:
Module with implementation of all confirmed conventions.
82 lines (81 loc) • 2.51 kB
TypeScript
export interface Schema87 {
$schema: string;
data: {
nodes: {
index: number;
hash: string;
}[];
path: (string | number)[];
values: {
index: number;
value: string;
nonce: string;
}[];
}[];
}
export declare const schema87: {
$schema: string;
description: string;
properties: {
$schema: {
description: string;
type: string;
};
data: {
description: string;
items: {
type: string;
properties: {
nodes: {
description: string;
items: {
properties: {
index: {
description: string;
type: string;
};
hash: {
description: string;
type: string;
};
};
type: string;
};
type: string;
};
path: {
description: string;
items: {
type: string;
};
type: string;
};
values: {
description: string;
items: {
properties: {
index: {
description: string;
type: string;
};
value: {
description: string;
type: string;
};
nonce: {
description: string;
type: string;
};
};
type: string;
};
type: string;
};
};
};
type: string;
};
};
title: string;
type: string;
};