Skip to content

Instantly share code, notes, and snippets.

@paulwongx
Created March 18, 2025 17:20
Show Gist options
  • Save paulwongx/163984905ab128bcdca8ff56f2f34262 to your computer and use it in GitHub Desktop.
Save paulwongx/163984905ab128bcdca8ff56f2f34262 to your computer and use it in GitHub Desktop.
Flat i18n JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"type": "object",
"properties": {
"$schema": {
"type": "string"
}
},
"patternProperties": {
"^[a-zA-Z_]+(\\.[a-zA-Z0-9_-]+)*$": {
"type": "string"
}
},
"required": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment