Example

Design PatternsSoftware ArchitectureBest PracticesSoftware EngineeringSystem DesignMicroservices

Properties

Name Type Description
id string
patternId string
language string
title string
description string
code string
notes string
View JSON Schema on GitHub

JSON Schema

architectural-design-patterns-api-example-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/architectural-design-patterns/refs/heads/main/json-schema/architectural-design-patterns-api-example-schema.json",
  "title": "Example",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "patternId": {
      "type": "string"
    },
    "language": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "code": {
      "type": "string"
    },
    "notes": {
      "type": "string"
    }
  }
}