12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "type": "array",
- "title": "Embedded videos",
- "items": {
- "type": "object",
- "title": "Embed",
- "options": {
- "collapsed": "true"
- },
- "headerTemplate": "{{self.id}}",
- "properties": {
- "id": {
- "type": "string"
- },
- "url": {
- "type": "string",
- "links": [
- {
- "rel": "Preview video",
- "class": "link-info",
- "href": "{{self}}"
- }
- ]
- },
- "url_extras": {
- "type": "string"
- },
- "proportions": {
- "type": "string",
- "enum": [ "16x9", "4x3" ]
- },
- "description": {
- "type": "string"
- }
- },
- "required": [
- "id",
- "url",
- "proportions",
- "description"
- ]
- }
- }
|