META-AIML v3.0.0
Module generation 2.0.0
Archived versions stay on modules.meta-aiml.org

Integrations

Choose the integration model that matches your stack. The website documents only the current v3-compatible module line. Archived module releases remain available on the modules subdomain.

Distribution Rules
Current site guidance is intentionally narrower than the archive.

Current line

WordPress 2.0.0 and OpenCart 2.0.0 are the active module builds for SDK 3.0.0.

Archive

Older 1.0.0 packages stay downloadable on the modules subdomain for legacy META-AIML 2.0.1 installations.

Lite package

`wordpress-lite` remains archived only. It is not part of the current v3 recommendation set.

Manual Integration
Best for custom themes, static sites, frameworks, and any stack where you want one explicit JSON-LD contract in the document head.

Step 1

Choose the correct ontology mode, archetype, and entity contract from the v3 documentation.

Step 2

Create one stable instance schema. Link volatile data like menus, catalogs, or ratings as sources instead of snapshots.

Step 3

Validate in the Playground or SDK before publishing the JSON-LD block to the site head.

1<!-- META-AIML Schema -->
2<script type="application/ld+json">
3{
4  "@context": ["https://schemas.meta-aiml.org/v3.0.0/context.jsonld"],
5  "@id": "https://aurora-table.example/entity",
6  "@type": "Restaurant",
7  "schemaVersion": "3.0.0",
8  "aimlVersion": "3.0.0",
9  "ontologicalMode": "PhysicalEntity",
10  "interactionArchetype": ["DirectService"],
11  "domain": "Hospitality",
12  "deliveryFormat": ["PhysicalLocation", "WebApp", "MobileApp"],
13  "name": {
14    "en": "Aurora Table"
15  },
16  "description": {
17    "en": "Seasonal restaurant with reservations, tasting menu service, and linked menu sources."
18  },
19  "modules": {
20    "location": {},
21    "menu": {
22      "menuDiscovery": {
23        "canonicalMenuUrl": "https://aurora-table.example/menu",
24        "dataSources": [
25          {
26            "sourceType": "file_export",
27            "sourceUrl": "https://aurora-table.example/data/menu.xml",
28            "format": "xml",
29            "updateCadence": "daily"
30          }
31        ]
32      }
33    }
34  },
35  "capabilities": {
36    "interaction": {}
37  },
38  "structuralMetadata": {
39    "topology": "binary",
40    "roles": ["user", "platform"],
41    "valueSource": "platform_provided",
42    "transactionFlow": "direct",
43    "networkEffects": "none"
44  }
45}
46</script>
Module Distribution Subdomain
Current modules and historical releases are published on a dedicated static host.
https://modules.meta-aiml.org/

Current documentation on this website stays focused on v3-compatible modules. Historical 1.0.0 packages and `wordpress-lite` remain discoverable only through the modules archive.