Category

Design PatternsSoftware ArchitectureBest PracticesSoftware EngineeringSystem DesignMicroservices

Properties

Name Type Description
id string
name string
description string
patternCount integer
View JSON Schema on GitHub

JSON Schema

architectural-design-patterns-api-category-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-category-schema.json",
  "title": "Category",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "patternCount": {
      "type": "integer"
    }
  }
}