Files
divkit/schema/div-action-copy-to-clipboard-content.json
man-y 7f00e3b5aa Mark supported features of Flutter
e5a6a0f23d3e399f39c492c585359ca1666ccddf
2024-05-14 11:19:28 +03:00

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"
]
}