Sentence schema from Wordnik
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/wordnik/refs/heads/main/json-schema/wordnik-sentence-schema.json", "title": "Sentence", "description": "Sentence schema from Wordnik", "type": "object", "properties": { "display": { "type": "string" }, "documentMetadataId": { "type": "integer", "format": "int64" }, "hasScoredWords": { "type": "boolean" }, "id": { "type": "integer", "format": "int64" }, "rating": { "type": "integer", "format": "int32" }, "scoredWords": { "type": "array", "items": { "$ref": "#/components/schemas/ScoredWord" } } } }