Translators
Markdown
Translates JSON Schema to human-readable Markdown documentation (.md).
Example
Input (JSON Schema):
{
"type": "object",
"description": "User information",
"properties": {
"name": { "type": "string", "description": "Full name" },
"age": { "type": "integer" }
},
"required": ["name"]
}Output (Markdown):
# Users
User information
## Fields
| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `name` | string | Yes | Full name |
| `age` | integer | No | |Supported JSON Schema Features
Type Keywords
- type
- enum
- const
Type Values
- string
- integer
- number
- boolean
- array
- object
- null
Schema Composition
- allOf
- anyOf
- oneOf
- not
Object Keywords
- properties
- required
- additionalProperties
- patternProperties
- propertyNames
- minProperties / maxProperties
- unevaluatedProperties
- dependentRequired
Array Keywords
- items
- prefixItems
- contains
- minItems / maxItems
- uniqueItems
- unevaluatedItems
- maxContains / minContains
Numeric Validation
- minimum / maximum
- exclusiveMinimum / exclusiveMaximum
- multipleOf
String Validation
- minLength / maxLength
- pattern
References & Definitions
- $ref
- $defs
- $id
- $anchor
- $dynamicRef / $dynamicAnchor
String Formats
- date
- date-time
- time
- duration
- uuid
- uri / uri-reference / uri-template
- iri / iri-reference
- email / idn-email
- hostname / idn-hostname
- ipv4 / ipv6
- json-pointer / relative-json-pointer
- regex
Annotations
- description
- title
- default
- deprecated
- readOnly / writeOnly
- examples
Conditional
- if / then / else
- dependentSchemas
Content
- contentEncoding
- contentMediaType
- contentSchema