Files
ASP.NET-CORE-web-test/obj/Debug/net9.0/EndpointInfo/SimpleTodoApiWithPg.json
2025-10-10 16:02:38 +08:00

403 lines
8.9 KiB
JSON

{
"openapi": "3.0.4",
"info": {
"title": "SimpleTodoApiWithPg",
"version": "1.0"
},
"paths": {
"/api/auth": {
"post": {
"tags": [
"登录认证授权接口!"
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LoginRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "OK"
}
}
}
},
"/users/{id}": {
"get": {
"tags": [
"根据id获取对应的用户信息"
],
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/User"
}
}
}
},
"404": {
"description": "Not Found",
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
}
}
},
"delete": {
"tags": [
"删除用户接口"
],
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"404": {
"description": "Not Found",
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
}
}
},
"patch": {
"tags": [
"用户信息更新接口"
],
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"type": "integer",
"format": "int32"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateUserRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/User"
}
}
}
},
"404": {
"description": "Not Found",
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
}
}
}
},
"/users": {
"get": {
"tags": [
"获取所有用户"
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/User"
}
}
}
}
},
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
}
}
},
"post": {
"tags": [
"用户注册接口"
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RegisterRequest"
}
}
},
"required": true
},
"responses": {
"400": {
"description": "Bad Request",
"content": {
"application/problem+json": {
"schema": {
"$ref": "#/components/schemas/HttpValidationProblemDetails"
}
}
}
}
}
}
},
"/api/auth/refresh-token": {
"post": {
"tags": [
"刷新令牌接口"
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RefreshTokenRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "OK"
}
}
}
},
"/": {
"get": {
"tags": [
"SimpleTodoApiWithPg"
],
"responses": {
"200": {
"description": "OK",
"content": {
"text/plain": {
"schema": {
"type": "string"
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"HttpValidationProblemDetails": {
"type": "object",
"properties": {
"type": {
"type": "string",
"nullable": true
},
"title": {
"type": "string",
"nullable": true
},
"status": {
"type": "integer",
"format": "int32",
"nullable": true
},
"detail": {
"type": "string",
"nullable": true
},
"instance": {
"type": "string",
"nullable": true
},
"errors": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"type": "string"
}
},
"nullable": true
}
},
"additionalProperties": { }
},
"LoginRequest": {
"required": [
"password",
"username"
],
"type": "object",
"properties": {
"username": {
"maxLength": 50,
"minLength": 1,
"type": "string"
},
"password": {
"maxLength": 50,
"minLength": 1,
"type": "string"
}
},
"additionalProperties": false
},
"RefreshTokenRequest": {
"type": "object",
"properties": {
"refreshToken": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"RegisterRequest": {
"required": [
"email",
"username"
],
"type": "object",
"properties": {
"username": {
"type": "string",
"nullable": true
},
"email": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"UpdateUserRequest": {
"type": "object",
"properties": {
"username": {
"maxLength": 50,
"type": "string",
"nullable": true
},
"email": {
"maxLength": 100,
"type": "string",
"format": "email",
"nullable": true
},
"newPassword": {
"maxLength": 50,
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"User": {
"required": [
"email",
"passwordHash",
"username"
],
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"username": {
"maxLength": 50,
"minLength": 1,
"type": "string"
},
"email": {
"maxLength": 50,
"minLength": 5,
"type": "string",
"format": "email"
},
"passwordHash": {
"maxLength": 100,
"minLength": 1,
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
}
},
"additionalProperties": false
}
}
}
}