anujjoshi3105's picture
first commit
3d23b0f
export const userRatingSchema = {
summary: 'Get User Rating',
description: 'Fetches CodeChef user rating and platform details',
tags: ['CodeChef'],
querystring: {
type: 'object',
properties: {
username: { type: 'string', description: 'CodeChef username' },
},
required: ['username'],
},
response: {
200: {
type: 'object',
properties: {
username: { type: 'string' },
platform: { type: 'string' },
rating: { type: 'number' }
}
}
}
};