mirror of
https://github.com/strapi/strapi.git
synced 2025-07-24 17:40:18 +00:00
26 lines
451 B
JSON
Executable File
26 lines
451 B
JSON
Executable File
{
|
|
"components": {
|
|
"securitySchemes": {
|
|
"bearerAuth": {
|
|
"type": "http",
|
|
"scheme": "bearer",
|
|
"bearerFormat": "JWT"
|
|
}
|
|
},
|
|
"schemas": {
|
|
"Error": {
|
|
"required": ["code", "message"],
|
|
"properties": {
|
|
"code": {
|
|
"type": "integer",
|
|
"format": "int32"
|
|
},
|
|
"message": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|