# code-block-pro/1.27.7/build/shiki/samples/jsonc.sample

Code Block Pro – Beautiful Syntax Highlighting, version 1.27.7. 35 lines.

- Page: https://pluginprobe.com/plugins/code-block-pro/1.27.7/code/build/shiki/samples/jsonc.sample
- Raw: https://pluginprobe.com/plugins/code-block-pro/1.27.7/raw/build/shiki/samples/jsonc.sample
- Modified: 2023-09-03T01:04:34+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/code-block-pro/1.27.7/code/build/shiki/samples/jsonc.sample#L10-L20`.

```
// A jsonc example document
{
 owner:{
  name:`komkom`
  dob: /* just some random dob */ `1975-01-25T12:00:00-02:00`
 }

 database:{ // our live db
  server:`192.168.1.1`
  ports:[8001,8002,8003]
  connectionMax:5000
  enabled:true
 }

 servers:{ // a server
  alpha:{
   ip: /* is soon invalid */ `10.0.0.1`
   dc:`eqdc10`
  }

  beta:{
   ip:`10.0.0.2`
   dc:`eqdc10`
  }
 }

 clients:{
  data:[["gamma","delta"],[1,2]]
 }

 hosts:[alpha,omega]
}

// From https://github.com/komkom/jsonc

```
