CategoryList

Design PatternsSoftware ArchitectureBest PracticesSoftware EngineeringSystem DesignMicroservices

Properties

Name Type Description
total integer
categories array
View JSON Schema on GitHub

JSON Schema

architectural-design-patterns-api-category-list-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-list-schema.json",
  "title": "CategoryList",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer"
    },
    "categories": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {},
          "name": {},
          "description": {},
          "patternCount": {}
        }
      }
    }
  }
}