API Schema
API product
Schema ApiProduct from lib/api-platform.ts.
Schema
{
"type": "object",
"required": [
"slug",
"name",
"services",
"operations",
"status"
],
"properties": {
"slug": {
"type": "string"
},
"name": {
"type": "string"
},
"services": {
"type": "array",
"items": {
"type": "string"
}
},
"operations": {
"type": "array",
"items": {
"type": "string"
}
},
"status": {
"type": "string"
}
}
}