Schema administration and system metrics endpoints

→ "Try it out - API Component "Admin"
→ check GitHub Python calls | Java Script calls | Java calls | Postman collection
→ Read about "Schema Definition"


[Metrics] | [Schema]


Metrics

GET Get metrics from your system ... returns the total number of documents (objects) in your tenant and their total size. These metrics are cached for 30 minutes after the first GET. The analysisTime return parameter provides the exact point in time of the metrics calculation.
.../admin/metrics

Schema

GET Retrieve your Schema ... returns the raw schema of the tenant (XML) belonging to you as the logged on user
.../admin/schema
Python call | Java Script call | Java call
POST Validate your Schema ... validates a schema and returns a list of validation error messages, if any
.../admin/schema/validate
Python call | Java Script call | Java call
POST Update your Schema ... validates your schema first, before it will completely overwrites the existing one. If the schema is not valid, no update takes place
.../admin/schema
Python call | Java Script call | Java call