Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
testdino-hq avatar

Json

  • 1 installs
  • 8 repo stars
  • Updated February 25, 2026
  • testdino-hq/google-styleguides-skills

Applies Google's official JSON style guide for camelCase naming, ISO 8601 dates, and consistent API response structure.

About

Google's official JSON style guide covering property naming, structure, dates, and best practices for APIs and configuration. A developer uses it to design consistent JSON API responses and config files.

  • Google's official JSON style guide for APIs and configuration
  • Covers camelCase naming, ISO 8601 dates, and consistent response structure

Json by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #1,361 of 1,879 Documentation skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/testdino-hq/google-styleguides-skills --skill json

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
repo stars8
Last updatedFebruary 25, 2026
Repositorytestdino-hq/google-styleguides-skills

What it does

Applies Google's official JSON style guide for camelCase naming, ISO 8601 dates, and consistent API response structure.

Files

SKILL.mdMarkdownGitHub ↗

Google JSON Style Guide

Official Google JSON formatting standards for consistent API responses and configuration.

Quick Reference

Golden Rules

1. Use camelCase — for property names 2. Consistent structure — predictable response format 3. Include metadata — version, timestamps when relevant 4. Use arrays for collections — even single items 5. Null vs omission — be consistent 6. ISO 8601 for dates — standard format 7. Pretty print in development — minify in production

Property Naming (Preview)

{
  "userId": 123,
  "firstName": "Alice",
  "createdAt": "2024-01-15T10:30:00Z",
  "isActive": true
}

Response Structure (Preview)

{
  "data": {
    "users": [
      {"id": 1, "name": "Alice"},
      {"id": 2, "name": "Bob"}
    ]
  },
  "meta": {
    "total": 2,
    "page": 1
  }
}

When to Use This Guide

  • Designing REST APIs
  • Writing configuration files
  • Data interchange formats
  • Code reviews
  • API documentation

Install

npx skills add testdino-hq/google-styleguides-skills/json

Full Guide

See json.md for complete details, examples, and edge cases.

Related skills

Documentationbackenddocs

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.