38 lines
589 B
JSON
38 lines
589 B
JSON
{
|
|
"type": "object",
|
|
"required" : [
|
|
"id",
|
|
"name",
|
|
"path",
|
|
"location",
|
|
"created_at"
|
|
],
|
|
"properties" : {
|
|
"id": {
|
|
"type": "integer"
|
|
},
|
|
"name": {
|
|
"type": "string"
|
|
},
|
|
"path": {
|
|
"type": "string"
|
|
},
|
|
"project_id": {
|
|
"type": "integer"
|
|
},
|
|
"location": {
|
|
"type": "string"
|
|
},
|
|
"created_at": {
|
|
"type": "date-time"
|
|
},
|
|
"tags_path": {
|
|
"type": "string"
|
|
},
|
|
"destroy_path": {
|
|
"type": "string"
|
|
},
|
|
"tags": { "$ref": "tags.json" }
|
|
},
|
|
"additionalProperties": false
|
|
}
|