New for 10.1.5 (draft preview). This page previews a feature shipping in FrameworX 10.1.5 (planned April 2026). The feature is not available in 10.1.4 or earlier. Content under review.

AI skill: serialize the current UNS to an RDF/OWL graph file via the Export UNS format selector (Solution → Export tab) or the export_graph_model MCP tool.

AI IntegrationPlatform Skills Library → Export UNS as RDF


When to invoke

Preconditions

  1. Solution open in Designer.
  2. UNS has content to export. Empty solutions produce a trivially-empty graph.

Steps

  1. If the user has been modifying @Tag.X.Attributes at runtime, offer promote_retentive_attributes first. The exporter reads cold-start for determinism, so runtime-only changes do not appear in the export otherwise.
  2. Pick a format. All four W3C formats ship in 10.1.5 GA:
  3. Call:
    export_graph_model(format="rj", output_name="my-uns")
  4. Relay the outputPath back. It is the file the user shares or uploads.
  5. If the user asks about round-tripping (re-importing what they just exported), surface the importer asymmetry: the importer in 10.1.5 reads RDF/JSON only. Round-trip checks must use format="rj" end-to-end. JSON-LD / Turtle / N-Triples readers land in a follow-up release backed by dotNetRDF. Publishing to a triple store or sharing with an ontology team works with any of the four formats — pick whichever the destination accepts.

Gotchas to surface

See also