Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Build production-ready Spring Boot 3.x applications with REST APIs, Security, Data JPA, and Actuator
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
assets/schema.json
1{2"$schema": "http://json-schema.org/draft-07/schema#",3"title": "java-spring-boot Configuration Schema",4"type": "object",5"properties": {6"skill": {7"type": "object",8"properties": {9"name": {10"type": "string"11},12"version": {13"type": "string",14"pattern": "^\\d+\\.\\d+\\.\\d+$"15},16"category": {17"type": "string",18"enum": [19"api",20"testing",21"devops",22"security",23"database",24"frontend",25"algorithms",26"machine-learning",27"cloud",28"containers",29"general"30]31}32},33"required": [34"name",35"version"36]37},38"settings": {39"type": "object",40"properties": {41"enabled": {42"type": "boolean",43"default": true44},45"log_level": {46"type": "string",47"enum": [48"debug",49"info",50"warn",51"error"52]53}54}55}56},57"required": [58"skill"59]60}