arch: DB schema Changes (#796)

- New function : NSSF
- New feature : SMF selection
This commit is contained in:
Sukchan Lee 2021-03-08 21:25:09 +09:00
parent c6bfbed922
commit 9af4268bab
691 changed files with 40727 additions and 18985 deletions

View file

@ -28,6 +28,7 @@ typedef struct OpenAPI_problem_details_s {
char *cause;
OpenAPI_list_t *invalid_params;
char *supported_features;
char *target_scp;
} OpenAPI_problem_details_t;
OpenAPI_problem_details_t *OpenAPI_problem_details_create(
@ -38,7 +39,8 @@ OpenAPI_problem_details_t *OpenAPI_problem_details_create(
char *instance,
char *cause,
OpenAPI_list_t *invalid_params,
char *supported_features
char *supported_features,
char *target_scp
);
void OpenAPI_problem_details_free(OpenAPI_problem_details_t *problem_details);
OpenAPI_problem_details_t *OpenAPI_problem_details_parseFromJSON(cJSON *problem_detailsJSON);