UNPKG

decentralized-internet

Version:

An NPM library of programs to create decentralized web and distributed computing projects

34 lines (32 loc) 727 B
# Copyright BigchainDB GmbH and BigchainDB contributors # SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0) # Code is Apache-2.0 and docs are CC-BY-4.0 --- "$schema": "http://json-schema.org/draft-04/schema#" type: object title: Transaction Schema - TRANSFER specific properties required: - asset properties: asset: additionalProperties: false properties: id: "$ref": "#/definitions/sha3_hexdigest" required: - id inputs: type: array title: "Transaction inputs" minItems: 1 items: type: "object" required: - fulfills properties: fulfills: type: "object" definitions: sha3_hexdigest: pattern: "[0-9a-f]{64}" type: string