{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/kanye-rest/refs/heads/main/json-schema/kanye-rest-quote-schema.json",
"title": "Quote",
"description": "A single random Kanye West quote wrapped in a JSON envelope.",
"type": "object",
"required": [
"quote"
],
"properties": {
"quote": {
"type": "string",
"description": "The Kanye West quote text returned by the API.",
"example": "Everything you do in life stems from either fear or love"
}
}
}