ArchiMate · Schema

ModelImportRequest

Enterprise ArchitectureArchitecture FrameworkModeling LanguageBusiness ArchitectureTechnology ArchitectureStandardOpen Group

Properties

Name Type Description
name string Model name
content string AMEFF XML or JSON model content
View JSON Schema on GitHub

JSON Schema

archimate-model-exchange-api-model-import-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Model name",
      "example": "Imported Architecture Model"
    },
    "content": {
      "type": "string",
      "description": "AMEFF XML or JSON model content",
      "example": "<model>...</model>"
    }
  },
  "$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-import-request-schema.json",
  "title": "ModelImportRequest"
}