ArchiMate · Schema

ModelDetail

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
elementCount integer Number of elements in the model
relationshipCount integer Number of relationships in the model
viewCount integer Number of views in the model
View JSON Schema on GitHub

JSON Schema

archimate-model-exchange-api-model-detail-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"
    },
    "elementCount": {
      "type": "integer",
      "description": "Number of elements in the model",
      "example": 85
    },
    "relationshipCount": {
      "type": "integer",
      "description": "Number of relationships in the model",
      "example": 120
    },
    "viewCount": {
      "type": "integer",
      "description": "Number of views in the model",
      "example": 12
    }
  },
  "$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-detail-schema.json",
  "title": "ModelDetail"
}