Is there a complete JSON schema for content server REST API? It would help developer tremendously. For example, invoking api/v1/nodes/{id}/addablenodetypes returning the following JSON:
{
"data" : { },
"definitions" : { },
"definitions_map" : { },
"definitions_order" : [ ]
}
I cannot find any documentation with a complete list of key/value pairs in JSON response so that I can use tool like jsonschema2pojo to generate the corresponding classes.
Thanks,