use-powerplatform-prompt
Generate context-aware prompts for PowerPlatform entities, including overviews, attribute details, query templates, and relationship maps, to streamline entity exploration and metadata access.
Instructions
Use a predefined prompt template for PowerPlatform entities
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attributeName | No | The logical name of the attribute (required for ATTRIBUTE_DETAILS prompt) | |
entityName | Yes | The logical name of the entity | |
promptType | Yes | The type of prompt template to use |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"attributeName": {
"description": "The logical name of the attribute (required for ATTRIBUTE_DETAILS prompt)",
"type": "string"
},
"entityName": {
"description": "The logical name of the entity",
"type": "string"
},
"promptType": {
"description": "The type of prompt template to use",
"enum": [
"ENTITY_OVERVIEW",
"ATTRIBUTE_DETAILS",
"QUERY_TEMPLATE",
"RELATIONSHIP_MAP"
],
"type": "string"
}
},
"required": [
"promptType",
"entityName"
],
"type": "object"
}