18 lines
424 B
JSON
18 lines
424 B
JSON
{
|
|
"type": "object",
|
|
"required": [
|
|
"id",
|
|
"name",
|
|
"config_project",
|
|
"created_at",
|
|
"created_by_user_id"
|
|
],
|
|
"properties": {
|
|
"id": { "type": "integer" },
|
|
"name": { "type": "string" },
|
|
"config_project": { "$ref": "project_identity.json" },
|
|
"created_at": { "type": "string", "format": "date-time" },
|
|
"created_by_user_id": { "type": "integer" }
|
|
},
|
|
"additionalProperties": false
|
|
}
|