Schema: robos:Database

Formal W3C SHACL constraint shape and OSLC JSON-LD specification for robos:Database in the core-platform package store.

Table of contents

  1. Specification Metadata
  2. Upstream Schema Basis (Refers From) & Global Standards Provenance
  3. Entity Relationship & Schema Context
  4. Property Constraints & SHACL Rules
  5. Canonical OSLC JSON-LD Example
  6. Programmatic SHACL Validation

Specification Metadata


Upstream Schema Basis (Refers From) & Global Standards Provenance

This RobOS schema is modeled after and directly aligns with two levels of global standards:

  • Universal Schema.org Class: https://schema.org/DataStore (100% interoperability with search engines, web indexers, and general AI reasoning)
  • Specialized Domain Standard: https://www.iso.org/standard/63555.html (de facto standard for domain-specific ALM, BDD, or infrastructure operations)
  • Canonical Reference: https://schema.org/DataStore
  • Agent Guidelines: When autonomous agents generate, expand, or validate instances of robos:Database, they MUST adhere to and base their output on this referred schema object and universal Schema.org parent class, extending it with RobOS SDLC properties.

Entity Relationship & Schema Context

Database robos:Database

Governed by W3C SHACL shape urn:robos:shape:DatabaseShape within the Core Platform (robos.core) (robos.platform) package store.

dcterms:title robos:engine robos:databaseName robos:host

Property Constraints & SHACL Rules

Property Path Name Multiplicity Data Type Constraint Rule / Validation Message
dcterms:title Title / Display Name 1..* xsd:string Database must have a title or display name.
robos:engine engine 1..* xsd:string Database must declare its engine (postgresql, mysql, sqlite, oracle, etc.).
robos:databaseName databaseName 1..* xsd:string Database must specify a logical database name.
robos:host Routing Hostname 1..* xsd:string Database must specify a host address or service DNS.

Canonical OSLC JSON-LD Example

{
  "@id": "urn:robos:db:acme-orders-postgres",
  "@type": [
    "oslc_am:Resource",
    "robos:Database",
    "robos:RelationalDatabase",
    "schema:DataStore"
  ],
  "dcterms:title": "Acme Orders PostgreSQL Primary Cluster",
  "dcterms:description": "High-availability relational PostgreSQL cluster housing transactional order and invoice schemas.",
  "robos:engine": "postgresql",
  "robos:databaseName": "orders_db",
  "robos:host": "postgres.internal.acme.corp",
  "robos:port": 5432,
  "robos:schemaMigration": "flyway",
  "robos:package": "core-platform",
  "robos:namespace": "robos.platform",
  "robos:schemaOrgType": "https://schema.org/DataStore",
  "robos:domainStandard": "https://www.iso.org/standard/63555.html"
}

Programmatic SHACL Validation

const { SHACLValidator } = require('/usr/local/share/robos/robos-graph/lib/shacl-validator');
const { OSLCGraphParser, OSLC_CONTEXT } = require('/usr/local/share/robos/robos-graph/lib/oslc-parser');

const validator = new SHACLValidator();
const result = validator.validateGraph(new OSLCGraphParser({
  "@context": OSLC_CONTEXT,
  "robos:nodes": [
    {
        "@id": "urn:robos:db:acme-orders-postgres",
        "@type": [
            "oslc_am:Resource",
            "robos:Database",
            "robos:RelationalDatabase",
            "schema:DataStore"
        ],
        "dcterms:title": "Acme Orders PostgreSQL Primary Cluster",
        "dcterms:description": "High-availability relational PostgreSQL cluster housing transactional order and invoice schemas.",
        "robos:engine": "postgresql",
        "robos:databaseName": "orders_db",
        "robos:host": "postgres.internal.acme.corp",
        "robos:port": 5432,
        "robos:schemaMigration": "flyway",
        "robos:package": "core-platform",
        "robos:namespace": "robos.platform",
        "robos:schemaOrgType": "https://schema.org/DataStore",
        "robos:domainStandard": "https://www.iso.org/standard/63555.html"
    }
  ],
}));

console.log("Conforms:", result.conforms); // Expected: true