refactor: uppercase
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Vicent Llopis 2022-03-31 10:54:30 +02:00
parent fe32b81d9e
commit 2c54f31985
2 changed files with 10 additions and 10 deletions

View File

@ -9,10 +9,10 @@
"properties": { "properties": {
"id": { "id": {
"id": true, "id": true,
"type": "Number" "type": "number"
}, },
"name": { "name": {
"type": "String" "type": "string"
} }
} }
} }

View File

@ -13,7 +13,7 @@
}, },
"properties": { "properties": {
"id": { "id": {
"type": "Number", "type": "number",
"id": true, "id": true,
"description": "Identifier" "description": "Identifier"
}, },
@ -26,26 +26,26 @@
"required": true "required": true
}, },
"phone": { "phone": {
"type" : "String" "type" : "string"
}, },
"userFk": { "userFk": {
"type" : "Number", "type" : "number",
"required": true "required": true
}, },
"bossFk": { "bossFk": {
"type" : "Number" "type" : "number"
}, },
"maritalStatus": { "maritalStatus": {
"type" : "String" "type" : "string"
}, },
"originCountryFk": { "originCountryFk": {
"type" : "Number" "type" : "number"
}, },
"educationLevelFk": { "educationLevelFk": {
"type" : "Number" "type" : "number"
}, },
"SSN": { "SSN": {
"type" : "String" "type" : "string"
} }
}, },
"relations": { "relations": {