This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these template messages) This article may be too technical for most readers to understand. Please help improve it to make it understandable to non-experts, without removing the technical details. (June 2024) (Learn how and when to remove this message) The topic of this article may not meet Wikipedia's general notability guideline. Please help to demonstrate the notability of the topic by citing reliable secondary sources that are independent of the topic and provide significant coverage of it beyond a mere trivial mention. If notability cannot be shown, the article is likely to be merged, redirected, or deleted.Find sources: "CP/LD" – news · newspapers · books · scholar · JSTOR (June 2024) (Learn how and when to remove this message) (Learn how and when to remove this message)
Content Profile/Linked Document
AbbreviationCP/LD
StatusPublished
Year started2018
First published2023
OrganizationANSI/NISO
Committeewww.niso.org/standards-committees/cpld
EditorsRinke Hoekstra
Base standardsHTML, JSON-LD,
Related standardsRDF, IRI, W3C Publication Manifest
Domain
Websitewww.niso.org/publications/z39105-2023-cpld

The CP/LD format defines a flexible, extensible, machine readable format that links HTML5 documents with content to JSON-LD graphs for the data and semantics.[1]

The Linked Document part of the standard outlines the minimal characteristics of documents, whereas the Content Profile part describes how to extend and refine rules for specific use cases.

History

Examples

A example of a minimal document is:

<!DOCTYPE html>
<html lang="en">
  <head>
    <link rel="schema.dcterms" href="http://purl.org/dc/terms/" />
    <base href="https://example.com/minimal" />
    <meta name="id" content="https://example.com/minimal" />
    <meta name="dcterms.conformsTo" content="https://w3id.org/cpld/" />
    <title>Minimal Linked Document</title>
    <script type="application/ld+json">
      {
        "@context": {
          "@vocab": "http://schema.org/",
          "doc": "https://example.com/minimal#",
          "ex": "https:example.com/narrativeStructure/"
        },
        "@graph": {
          "@id": "https://example.com/minimal",
          "schema:conformsTo": "https://w3id.org/cpld/",
          "@type": "schema:Article",
          "schema:hasPart": [
            {
              "@id": "doc:e1",
              "@type": "ex:Introduction"
            }
          ]
        }
      }
    </script>
  </head>
  <body>
    <h1 id="e0">Minimal document</h1>
    <p id="e1">Hello World</p>
  </body>
</html>

References

  1. ^ "ANSI/NISO Z39.105-2023, Content Profile/Linked Document | NISO website".