| "$schema": "http://json-schema.org/draft-07/schema#", |
| "description": "Specify who you are and all.", |
| "description": "A person is a human being.", |
| "name": { "type": "string" }, |
| "description": "where does this person live?", |
| "description": "A very large comment that will be wrapped after a certain line length. Let's keep on going and see what happens.", |
| "items": { "type": "string" }, |
| // Specify who you are and all. |
| Schema :: _ @jsonschema(schema="http://json-schema.org/draft-07/schema#") |
| // A person is a human being. |
| // where does this person live? |
| address?: strings.MinRunes(4) & strings.MaxRunes(20) |
| // A very large comment that will be wrapped after a certain line |
| // length. Let's keep on going and see what happens. |
| "home phone"?: string @deprecated() |