Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. {
  2. "name": "PodcastEpisode",
  3. "description": "Joystream class schema for a podcast episode",
  4. "properties": [
  5. {
  6. "name": "title",
  7. "type": "Text",
  8. "required": true,
  9. "maxTextLength": 100
  10. },
  11. {
  12. "name": "itunes:title",
  13. "type": "Text",
  14. "maxTextLength": 100
  15. },
  16. {
  17. "name": "pubDate",
  18. "type": "Text",
  19. "required": true,
  20. "maxTextLength": 100
  21. },
  22. {
  23. "name": "guid",
  24. "type": "Text",
  25. "maxTextLength": 32
  26. },
  27. {
  28. "name": "link",
  29. "type": "Text",
  30. "maxTextLength": 1000
  31. },
  32. {
  33. "name": "itunes:image",
  34. "type": "Text",
  35. "maxTextLength": 1000
  36. },
  37. {
  38. "name": "description",
  39. "type": "Text",
  40. "maxTextLength": 2000
  41. },
  42. {
  43. "name": "content:encoded",
  44. "type": "Text",
  45. "maxTextLength": 2000
  46. },
  47. {
  48. "name": "enclosure/length",
  49. "type": "Uint64",
  50. "description": "Size of this episode in bytes. Example: 74063411"
  51. },
  52. {
  53. "name": "enclosure/type",
  54. "type": "Text",
  55. "maxTextLength": 50,
  56. "description": "Example: 'audio/mpeg'"
  57. },
  58. {
  59. "name": "enclosure/url",
  60. "type": "Text",
  61. "maxTextLength": 1000,
  62. "description": "URL of the actual content."
  63. },
  64. {
  65. "name": "itunes:duration",
  66. "type": "Text",
  67. "maxTextLength": 20,
  68. "description": "Example: '30:52'"
  69. },
  70. {
  71. "name": "itunes:explicit",
  72. "type": "Text",
  73. "maxTextLength": 10
  74. },
  75. {
  76. "name": "itunes:keywords",
  77. "type": "TextVec",
  78. "maxItems": 20,
  79. "maxTextLength": 50
  80. },
  81. {
  82. "name": "itunes:subtitle",
  83. "type": "Text",
  84. "maxTextLength": 100
  85. },
  86. {
  87. "name": "itunes:summary",
  88. "type": "Text",
  89. "maxTextLength": 2000
  90. },
  91. {
  92. "name": "itunes:season",
  93. "type": "Uint16"
  94. },
  95. {
  96. "name": "itunes:episode",
  97. "type": "Uint16"
  98. },
  99. {
  100. "name": "itunes:episodeType",
  101. "type": "Text",
  102. "maxTextLength": 20,
  103. "description": "Example: 'full'"
  104. },
  105. {
  106. "name": "itunes:author",
  107. "type": "Text",
  108. "maxTextLength": 100
  109. }
  110. ]
  111. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement