ArchiMate · Schema

Model

Enterprise ArchitectureArchitecture FrameworkModeling LanguageBusiness ArchitectureTechnology ArchitectureStandardOpen Group

Properties

Name Type Description
id string Unique model identifier
name string Model name
version string Model version
language string ArchiMate language version
createdAt string Model creation timestamp
modifiedAt string Last modification timestamp
View JSON Schema on GitHub

JSON Schema

archimate-model-exchange-api-model-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique model identifier",
      "example": "model-001"
    },
    "name": {
      "type": "string",
      "description": "Model name",
      "example": "Enterprise Architecture Baseline"
    },
    "version": {
      "type": "string",
      "description": "Model version",
      "example": "2025.1"
    },
    "language": {
      "type": "string",
      "description": "ArchiMate language version",
      "example": "ArchiMate 3.2"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Model creation timestamp",
      "example": "2026-01-15T10:00:00Z"
    },
    "modifiedAt": {
      "type": "string",
      "format": "date-time",
      "description": "Last modification timestamp",
      "example": "2026-04-19T10:00:00Z"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/archimate/refs/heads/main/json-schema/archimate-model-exchange-api-model-schema.json",
  "title": "Model"
}