Version 1.2

Attributes

* is required.

Attribute
Description
data format
Example

$schema*

IPFS URL to the schema JSON the given metadata follows. Fixed value for Metadata Version 1.2 in example value.

URL

ipfs://bafkreigj7co62qaqcyhrk35ttpc5pemxu55jxiefxgrkjkww7odh4wdvl4

historyType*

History Type.

string

exhibition

hostLUW

Host LUW, Producer

string

0x8DFea3525EE810A7FEa886Fee69c57e68B5d5052

period*

An object that contains time information of the custom history.

object

{ "from": "2020-01-23", "to": "2020-03-21" }

period.from*

Period from

string

2020-01-23

period.to*

Period to

string

2020-03-21

title*

Title of the exhibition.

string

{

"en": "ABC Exhibition",

"ja": "エキシビション ABC"

}

venue*

Venue of the exhibition. Required if it includes physical exhibition.

string

{

"en": "Online",

"ja": "オンライン",

"zh": "一个标题"

}

hostCountry*

Country where the exhibition held. Required if it includes physical exhibition.

Enumerated string following ISO 3166-2 which is 2-letter code

CN

city

City

string

Beijing

isOnlineOnly

True if the exhibition is only held online, false if it is held physically

boolean

true

Complete Example

{
  "$schema": "ipfs://bafkreigj7co62qaqcyhrk35ttpc5pemxu55jxiefxgrkjkww7odh4wdvl4",
  "historyType": "exhibition",
  "hostLUW": "0x8DFea3525EE810A7FEa886Fee69c57e68B5d5052",
  "period": {
    "from": "2020-01-23",
    "to": "2020-03-21"
  },
  "title":  {
    "en": "ABC Exhibition",
    "ja": "エキシビション ABC"
  },
  "venue": {
    "en": "Online",
    "ja": "オンライン",
    "zh": "一个标题"
  },
  "hostCountry": "CN",
  "city": "Beijing"
}

Last updated

Was this helpful?