get-entity-attributes
Retrieve attributes and fields of a PowerPlatform entity by specifying its logical name. Simplify metadata access for entity exploration and analysis.
Instructions
Get attributes/fields of a PowerPlatform entity
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entityName | Yes | The logical name of the entity |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"entityName": {
"description": "The logical name of the entity",
"type": "string"
}
},
"required": [
"entityName"
],
"type": "object"
}