Spaces:
Sleeping
Sleeping
File size: 1,753 Bytes
68f18b5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
{
"properties": {
"person_name": {
"type": "array",
"items": {
"type": "string",
"db_table": "players",
"db_column": "name",
"pk_column": "hash",
"numeric": false
}
},
"team_name": {
"type": "array",
"items": {
"type": "string",
"db_table": "teams",
"db_column": "name",
"pk_column": "id",
"numeric": false,
"augmented_table": "augmented_teams",
"augmented_column": "augmented_name",
"augmented_fk": "team_id"
}
},
"year_season": {
"type": "array",
"items": {
"type": "string",
"db_table": "games",
"db_column": "season",
"pk_column": null,
"numeric": true
}
},
"in_game_event": {
"type": "array",
"items": {
"type": "string",
"db_table": "events",
"db_column": "label",
"pk_column": null,
"numeric": false
}
},
"league": {
"type": "array",
"items": {
"type": "string",
"db_table": "leagues",
"db_column": "name",
"pk_column": "id",
"numeric": false,
"augmented_table": "augmented_leagues",
"augmented_column": "augmented_name",
"augmented_fk": "league_id"
}
}
},
"required": []
}
|