concise
Version:
A tool belt for concise schemas
42 lines • 651 B
JSON
{
"models": {
"common": {
"fields": {
"id": {
"type": "uuid"
}
}
},
"user": {
"includes": {
"common": true
},
"fields": {
"name": {
"type": "string"
},
"surname": {
"type": "string"
}
}
},
"project": {
"includes": {
"common": true
},
"fields": {
"name": {
"type": "string"
}
},
"relations": {
"projectManager": {
"model": "user"
},
"technicalManager": {
"model": "user"
}
}
}
}
}