{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserPropertyKeyArray", "title": "UserPropertyKeyArray", "required": [ "results" ], "type": "object", "properties": { "results": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" } } }, "example": [] }, "start": { "type": "integer", "format": "int32", "example": 10 }, "limit": { "type": "integer", "format": "int32", "example": 10 }, "size": { "type": "integer", "format": "int32", "example": 10 }, "_links": { "$ref": "#/components/schemas/GenericLinks" } } }