This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"title": "MetadataVersioned", | |
"description": "Versioned ink! project metadata.\n\n# Note\n\nRepresents the version of the serialized metadata *format*, which is distinct from the version of this crate for Rust semantic versioning compatibility.", | |
"oneOf": [ | |
{ | |
"description": "Version 0 placeholder. Represents the original non-versioned metadata format.", | |
"type": "object", | |
"required": [ | |
"V0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"title": "InkProject", | |
"description": "An entire ink! project for metadata file generation purposes.", | |
"type": "object", | |
"required": [ | |
"contract", | |
"source", | |
"spec", | |
"storage", |