XSCML


Supply Chain Markup Language for SCOM




Logo-xscml.png

Supply Chain Markup Language (SCML) is an application of XML markup language for describing supply chain elements and capturing both its structure and content. Here you'll find links to documentation and examples to help SCOM project with this brand new technology. As an addition, we can that the SCML provides support for production/operations management and supply chain management by means of Supply Chain Management Ontology (SCOM).

  • SC Files XSCML use *.sc files for defining a supply chain. MORE
  • XSCML (XML coding system for SCML)
  • PARSX (Supply chain parser for SCML)

  • XML (Extensible Markup Language)
  • CSS (Cascading Style Sheet) or XSL (Extensible Stylesheet Language)
  • XML Schema aka XSD (XML Schema Definition)

Tools


SCML references

  • SCML element reference: Details about each SCML element and compatibility information for desktop and mobile browsers.

<scom> Top-level element

The top-level element in SCML is <scom>. Every valid SCML instance must be wrapped in <scom> tags. In addition you must not nest a second <scom> element in another, but you can have an arbitrary number of other child elements in it.

HTML5 notation

 1 <!DOCTYPE html>
 2 <html>
 3   <head>
 4     <title>SCML in HTML5</title>
 5   </head>
 6   <body>
 7   <scom>
 8   </scom>
 9   </body>
10 </html>

XHTML notation

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus SCML 1.0//EN" "http://www.w3.org/Sc/DTD/scml/xhtml-scml.dtd">
 3 <html xmlns="http://www.w3.org/1999/xhtml">
 4 <head>
 5  <title>SCML in XHTML</title>
 6 </head>
 7 <body>
 8 
 9   <scom xmlns="http://www.w3.org/2014/SC/SCML">
10     <mrow>
11       <mrow>
12         <msup>
13           <mi>a</mi>
14           <mn>2</mn>
15         </msup>
16         <mo>+</mo>
17         <msup>
18           <mi>b</mi>
19           <mn>2</mn>
20         </msup>
21       </mrow>
22       <mo>=</mo>
23       <msup>
24         <mi>c</mi>
25         <mn>2</mn>
26       </msup>
27     </mrow>
28   </math>
29 
30 </body>
31 </html>
  • SCML attribute reference: Information about SCML attributes that modify the appearance or behavior of elements.
  • SCML examples: SCML samples and examples to help you understand how it works.



References