spec-json-schema — for Claude Code spec-json-schema, idp-server, community, for Claude Code, ide skills, Schema, Validation, validation.md, Identity, Verification

v1.0.0

À propos de ce Skill

Parfait pour les agents d'intelligence artificielle axés sur JSON nécessitant des fonctionnalités avancées de validation de données et de vérification de schémas. Resume localise : spec-json-schema helps AI agents handle repository-specific developer workflows with documented implementation details.

Fonctionnalités

JSONスキーマ検証(JSON Schema Validation)開発ガイド
documentation/docs/content 03 concepts/06-security-extensions/concept-03-schema-validation.md
JSONスキーマ検証は、入力データの構造・型・制約を検証する層。
JSON Schema Draft 2020-12準拠
ユーザー登録検証 : テナント別カスタムスキーマ

# Core Topics

hirokazu-kobayashi-koba-hiro hirokazu-kobayashi-koba-hiro
[7]
[1]
Updated: 3/13/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
8/11
Quality Score
39
Canonical Locale
ja
Detected Body Locale
ja

Parfait pour les agents d'intelligence artificielle axés sur JSON nécessitant des fonctionnalités avancées de validation de données et de vérification de schémas. Resume localise : spec-json-schema helps AI agents handle repository-specific developer workflows with documented implementation details.

Pourquoi utiliser cette compétence

Permet aux agents de valider les structures de données JSON contre des schémas personnalisés, en exploitant JSON Schema Draft 2020-12 pour une intégrité et une cohérence des données robustes, avec un support pour l'enregistrement des utilisateurs, la vérification d'identité et les requêtes d'API

Meilleur pour

Parfait pour les agents d'intelligence artificielle axés sur JSON nécessitant des fonctionnalités avancées de validation de données et de vérification de schémas.

Cas d'utilisation exploitables for spec-json-schema

Valider les données d'enregistrement des utilisateurs contre des schémas JSON personnalisés
Vérifier les demandes de vérification d'identité en utilisant JSON Schema Draft 2020-12
Déboguer les requêtes et les réponses d'API externes pour la conformité du schéma

! Sécurité et Limitations

  • Nécessite la compatibilité avec JSON Schema Draft 2020-12
  • Limité au format de données JSON
  • Dépendant de idp-server-platform pour la validation du schéma

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is spec-json-schema?

Parfait pour les agents d'intelligence artificielle axés sur JSON nécessitant des fonctionnalités avancées de validation de données et de vérification de schémas. Resume localise : spec-json-schema helps AI agents handle repository-specific developer workflows with documented implementation details.

How do I install spec-json-schema?

Run the command: npx killer-skills add hirokazu-kobayashi-koba-hiro/idp-server. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for spec-json-schema?

Key use cases include: Valider les données d'enregistrement des utilisateurs contre des schémas JSON personnalisés, Vérifier les demandes de vérification d'identité en utilisant JSON Schema Draft 2020-12, Déboguer les requêtes et les réponses d'API externes pour la conformité du schéma.

Which IDEs are compatible with spec-json-schema?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for spec-json-schema?

Nécessite la compatibilité avec JSON Schema Draft 2020-12. Limité au format de données JSON. Dépendant de idp-server-platform pour la validation du schéma.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add hirokazu-kobayashi-koba-hiro/idp-server. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use spec-json-schema immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

spec-json-schema

Install spec-json-schema, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

JSONスキーマ検証(JSON Schema Validation)開発ガイド

ドキュメント

  • documentation/docs/content_03_concepts/06-security-extensions/concept-03-schema-validation.md - JSONスキーマ検証概念

機能概要

JSONスキーマ検証は、入力データの構造・型・制約を検証する層。

  • JSON Schema Draft 2020-12準拠
  • ユーザー登録検証: テナント別カスタムスキーマ
  • Identity Verification検証: 本人確認申請データ検証
  • 外部API検証: リクエスト/レスポンス検証
  • 詳細エラーメッセージ: フィールド別エラー

モジュール構成

libs/
└── idp-server-platform/                     # プラットフォーム基盤
    └── .../platform/json/schema/
        ├── JsonSchemaDefinition.java       # スキーマ定義
        ├── JsonSchemaValidator.java        # スキーマ検証
        └── JsonSchemaValidationException.java

ユーザー登録でのスキーマ検証

idp-server-core/openid/identity/IdPUserCreator.java 内:

java
1public class IdPUserCreator { 2 3 JsonSchemaDefinition definition; 4 AuthenticationInteractionRequest request; 5 6 public User create() { 7 User user = User.initialized(); 8 9 // スキーマ定義に基づいてフィールドを設定 10 if (definition.hasProperty("name") && 11 request.containsKey("name")) { 12 user.setName(request.getValueAsString("name")); 13 } 14 15 if (definition.hasProperty("email") && 16 request.containsKey("email")) { 17 user.setEmail(request.getValueAsString("email")); 18 } 19 20 // その他のフィールドも同様に処理 21 // ... 22 23 return user; 24 } 25}

注意: JsonSchemaDefinitionが、許可されたフィールドを定義します。

スキーマ定義例

ユーザー登録スキーマ

json
1{ 2 "$schema": "https://json-schema.org/draft/2020-12/schema", 3 "type": "object", 4 "properties": { 5 "email": { 6 "type": "string", 7 "format": "email" 8 }, 9 "name": { 10 "type": "string", 11 "minLength": 1, 12 "maxLength": 100 13 }, 14 "birthdate": { 15 "type": "string", 16 "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$" 17 } 18 }, 19 "required": ["email", "name"] 20}

Identity Verification申請スキーマ

json
1{ 2 "$schema": "https://json-schema.org/draft/2020-12/schema", 3 "type": "object", 4 "properties": { 5 "document_type": { 6 "type": "string", 7 "enum": ["passport", "drivers_license", "national_id"] 8 }, 9 "document_number": { 10 "type": "string", 11 "minLength": 5 12 } 13 }, 14 "required": ["document_type", "document_number"] 15}

スキーマ検証エラー

java
1public class JsonSchemaValidationException { 2 // フィールド別の詳細エラーメッセージ 3 // - 必須フィールド不足 4 // - 型不一致 5 // - フォーマット違反 6 // - 制約違反(minLength, maxLength, pattern等) 7}

E2Eテスト

e2e/src/tests/
└── integration/ida/
    └── (Identity Verificationスキーマ検証テスト)

コマンド

bash
1# ビルド 2./gradlew :libs:idp-server-platform:compileJava 3 4# テスト 5cd e2e && npm test -- integration/ida/

トラブルシューティング

スキーマ検証失敗

  • スキーマ定義が正しいか確認(JSON Schema Draft 2020-12形式)
  • 必須フィールドが含まれているか確認

型エラー

  • フィールドの型がスキーマと一致するか確認
  • string, number, boolean, object, arrayを正しく使用

フォーマット検証失敗

  • email, uri, date-time等のフォーマットが正しいか確認
  • カスタムpattern(正規表現)が正しいか確認

カスタムスキーマが反映されない

  • テナント別スキーマ設定が正しいか確認
  • JsonSchemaDefinitionが正しくロードされているか確認

Compétences associées

Looking for an alternative to spec-json-schema or another community skill for your workflow? Explore these related open-source skills.

Voir tout

openclaw-release-maintainer

Logo of openclaw
openclaw

Resume localise : 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

widget-generator

Logo of f
f

Resume localise : Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and

flags

Logo of vercel
vercel

Resume localise : The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Navigateur

pr-review

Logo of pytorch
pytorch

Resume localise : Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Développeur