components/elements/TextMediaWidget/schema.jsjavascript
/** Content-block contract of the "textMediaWidget" element (pattern: StoryTitle/schema.js). */
export default {
type: "textMediaWidget",
region: "content",
required: [],
properties: {
image: { type: "string", pattern: "^/assets/.+" },
video: { type: "string", pattern: "^/assets/.+" },
text: { type: "string" },
},
};