{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Range",
"type": "object",
"description": "Specifies a contiguous range of an indexed collection.",
"properties": {
"startIndex": {
"type": "integer",
"description": "The optional zero-based start index of the collection."
},
"endIndex": {
"type": "integer",
"description": "The optional zero-based end index of the collection."
},
"type": {
"type": "string",
"description": "The type of range."
}
}
}