OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

csaf message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Redesigning the product_tree for representation in JSON.


The current design of the XML in CVRF defines a "branch", where a branch contains either other branches or full products. XML example:

    <Branch Name="Cisco" Type="Vendor">
      <Branch Name="IOS" Type="Product Name">
        <Branch Name="12.2SE" Type="Product Version">
          <Branch Name="12.2(55)SE" Type="Service Pack">
            <FullProductName ProductID="CVRFPID-103763">Cisco IOS 12.2SE 12.2(55)SE</FullProductName>

The nested structure hides the underlying goal - associating values of well-known properties with a product. In spite of the XML nesting structure, only a subset of the Product Branch Type Model characteristics really are hierarchical (vendor, product family, product name). However, other properties such as "architecture", "specification", "language", ", "host name" are all roughly orthogonal concerns.

The structure of the CVRF XML, and the structure currently recreated in the JSON schema does not distinguish amongst the different nature of these characteristics, and favors inheritance, which makes it awkward for some uses. If we think of this instead as a table listing all the products, each product would be a row, and each column would be a property label (or a key referencing a property value in some other table).

I used the relational database analogy for a reason. It strikes me that this structure is trying to define a relational search database (for example: "which products with version > 15 on host foo are affected?") by structuring the information so that property values are inherited. Rather than inheritance, aggregation probably makes more sense.

Suggestion:
Instead of having a hierarchical tree listing products, have a simple list. Without any further changes, this would greatly expand the size of the instance documents. To avoid that, add one additional mechanism - "shared" properties. In concrete terms, an example using the data from the snippet of XML above:

{
  "product_information": {
    "shared_properties": {
      "shared12.2SE": {
        "vendor": "Cisco",
        "product_name": "IOS",
        "version": "12.2SE"
      }
    "products": [
      {
        "product_id": "CVRFPID-103763",
        "full_name": "Cisco IOS 12.2SE 12.2(55)SE",
        "service_pack": "12.2(55)SE",
        "inherit" : "shared12.2SE"
      },
      ...
    ]
  }
}

Differences to highlight:
Not shown here in the example, but probably makes sense, is to allow shared properties inherit from other shared properties.

Other reasons for an alternate approach (even if not exactly the one mentioned above:
Thoughts, comments?

Eric.



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]