Terminology

Stitchable JSON

JSON object designed to be integrated/stitched into the page that is requesting it. It will have meta tags, stylesheets, HTML and js scripts for the integrator/requester to include on their page. See fictional example:

{
    meta: {
        html: {
          title: "Some title",
          description: "Seriously cool stuff",
        }
    },
    javascripts: [
        "//imasdk.googleapis.com/js/sdkloader/ima3.js",
        "api.mychannels/js/app.js",
    ],
    stylesheets: [
        "api.mychannels/themes/theoplayer/ui.css",
        "api.mychannels/themes/default/style.css",
        "api.mychannels/themes/some-publishers-theme/style.css",
    ],
    html: "<p>Some HTML</p>",
}
Last Updated: 2/19/2019, 1:40:23 PM