Cycloid · Schema

Stack

A Cycloid Service Catalog Stack template.

Asset InventoryCI/CDCloud Cost ManagementCloud ManagementDeveloper ExperienceDevOpsFinOpsGitOpsGreenOpsInfrastructure as CodeInternal Developer PlatformInternal Developer PortalMulti-CloudPlatform EngineeringRBACSelf-ServiceService CatalogStackFormsTerraform

Properties

Name Type Description
ref string Stack reference (organization:stack-canonical).
name string
description string
author string
version string
technologies array
config_repository_canonical string
service_catalog_source_canonical string
View JSON Schema on GitHub

JSON Schema

cycloid-stack-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/cycloid/refs/heads/main/json-schema/cycloid-stack-schema.json",
  "title": "Stack",
  "description": "A Cycloid Service Catalog Stack template.",
  "type": "object",
  "required": ["ref", "name"],
  "properties": {
    "ref": {
      "type": "string",
      "description": "Stack reference (organization:stack-canonical)."
    },
    "name": { "type": "string" },
    "description": { "type": "string" },
    "author": { "type": "string" },
    "version": { "type": "string" },
    "technologies": {
      "type": "array",
      "items": { "type": "string" }
    },
    "config_repository_canonical": { "type": "string" },
    "service_catalog_source_canonical": { "type": "string" }
  }
}