get-entity-schema
Retrieve detailed schema information for SAP OData entities, including properties, types, keys, and constraints to understand data structure and facilitate integration.
Instructions
Get detailed schema information for a specific entity including properties, types, keys, and constraints.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entityName | Yes | The entity name | |
serviceId | Yes | The SAP service ID |
Input Schema (JSON Schema)
{
"properties": {
"entityName": {
"description": "The entity name",
"type": "string"
},
"serviceId": {
"description": "The SAP service ID",
"type": "string"
}
},
"required": [
"serviceId",
"entityName"
],
"type": "object"
}