mirror of
https://github.com/divkit/divkit.git
synced 2026-05-07 20:02:32 +00:00
7f00e3b5aa
e5a6a0f23d3e399f39c492c585359ca1666ccddf
54 lines
836 B
JSON
54 lines
836 B
JSON
{
|
|
"definitions": {
|
|
"content_text": {
|
|
"type": "object",
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"enum": [
|
|
"text"
|
|
]
|
|
},
|
|
"value": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"type",
|
|
"value"
|
|
]
|
|
},
|
|
"content_url": {
|
|
"type": "object",
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"enum": [
|
|
"url"
|
|
]
|
|
},
|
|
"value": {
|
|
"$ref": "common.json#/url"
|
|
}
|
|
},
|
|
"required": [
|
|
"type",
|
|
"value"
|
|
]
|
|
}
|
|
},
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/content_text"
|
|
},
|
|
{
|
|
"$ref": "#/definitions/content_url"
|
|
}
|
|
],
|
|
"platforms": [
|
|
"android",
|
|
"ios",
|
|
"web"
|
|
]
|
|
}
|