CodexHF_API_Gateway / openapi_spec.json
LordXido's picture
Upload 7 files
82ddb5f verified
raw
history blame contribute delete
804 Bytes
{
"openapi": "3.0.0",
"info": {
"title": "Codex Sovereign API Gateway",
"version": "1.0.0"
},
"paths": {
"/evaluate": {
"post": {
"summary": "Evaluate work description",
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/EvaluationRequest"
}
}
}
},
"responses": {
"200": {
"description": "Evaluation Result"
}
}
}
}
},
"components": {
"schemas": {
"EvaluationRequest": {
"type": "object",
"properties": {
"work_description": {
"type": "string"
}
}
}
}
}
}