mirror of
https://github.com/Xahau/xahau.js.git
synced 2026-08-23 00:20:52 +00:00
23 lines
532 B
JSON
23 lines
532 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"title": "memo",
|
|
"description": "Memo objects represent arbitrary data that can be included in a transaction",
|
|
"type": "object",
|
|
"properties": {
|
|
"type": {
|
|
"pattern": "^[A-Za-z0-9\\-._~:/?#[\\]@!$&'()*+,;=%]*$"
|
|
},
|
|
"format": {
|
|
"pattern": "^[A-Za-z0-9\\-._~:/?#[\\]@!$&'()*+,;=%]*$"
|
|
},
|
|
"data": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"anyOf": [
|
|
{"required": ["data"]},
|
|
{"required": ["type"]}
|
|
]
|
|
}
|