Schema JSON Structure Property Camel Case
schema-json-structure-property-camel-case
info
experience: namingexperience: consistency
spec: schemas
Property is not camelCase.
Property names should be camelCase.
Rule definition
The full Spotlight rule — drop it into a ruleset (.spotlight.yaml / .spectral.yaml) and run it with any Spotlight tool.
schema-json-structure-property-camel-case:
title: Schema JSON Structure Property Camel Case
reference: https://spotlight-rules.com/spec/rules/json-structure/schema-json-structure-property-camel-case/
description: Property names should be camelCase.
message: Property is not camelCase.
given: $.properties[*]~
severity: info
then:
function: pattern
functionOptions:
match: ^[a-z][a-zA-Z0-9]*$
tags:
- format:json-structure
- spec:schemas
- experience:naming
- experience:consistency
prompt: "You are editing a JSON Structure document to satisfy the Spotlight API
governance rule 'schema-json-structure-property-camel-case' (Schema JSON
Structure Property Camel Case). Requirement: Property names should be
camelCase. To fix: Ensure the targeted value matches the regular expression
`^[a-z][a-zA-Z0-9]*$`; rewrite any value that does not. This rule is
evaluated at the JSONPath `$.properties[*]~` — inspect every location it
matches and correct only what violates the rule. Make the smallest change
that satisfies the rule, leave all unrelated content, key order, comments,
and formatting unchanged, and keep the document valid JSON Structure. Return
only the complete corrected document, with no commentary."
AI fix prompt — send this to Claude, Gemini, or ChatGPT with your artifact to auto-fix this rule
You are editing a JSON Structure document to satisfy the Spotlight API governance rule 'schema-json-structure-property-camel-case' (Schema JSON Structure Property Camel Case). Requirement: Property names should be camelCase. To fix: Ensure the targeted value matches the regular expression `^[a-z][a-zA-Z0-9]*$`; rewrite any value that does not. This rule is evaluated at the JSONPath `$.properties[*]~` — inspect every location it matches and correct only what violates the rule. Make the smallest change that satisfies the rule, leave all unrelated content, key order, comments, and formatting unchanged, and keep the document valid JSON Structure. Return only the complete corrected document, with no commentary.
| Artifact | JSON Structure |
|---|---|
| Applies at (given) | $.properties[*]~ |
| Severity | info — educational by default; raise to warn/error to enforce |
| Reference | https://spotlight-rules.com/spec/rules/json-structure/schema-json-structure-property-camel-case/ |