Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

embed.schema.json 932B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "type": "array",
  3. "title": "Embedded videos",
  4. "items": {
  5. "type": "object",
  6. "title": "Embed",
  7. "options": {
  8. "collapsed": "true"
  9. },
  10. "headerTemplate": "{{self.id}}",
  11. "properties": {
  12. "id": {
  13. "type": "string"
  14. },
  15. "url": {
  16. "type": "string",
  17. "links": [
  18. {
  19. "rel": "Preview video",
  20. "class": "link-info",
  21. "href": "{{self}}"
  22. }
  23. ]
  24. },
  25. "proportions": {
  26. "type": "string",
  27. "enum": [ "16x9", "4x3" ]
  28. },
  29. "description": {
  30. "type": "string"
  31. }
  32. },
  33. "required": [
  34. "id",
  35. "url",
  36. "proportions",
  37. "description"
  38. ]
  39. }
  40. }