What problem does it solve? SharePoint lists used as application backends break at scale: queries hit the 5,000-item list view threshold, Power Apps delegation silently truncates results to 500 rows, and poorly chosen column types make filtering impossible. This Skill designs the list schema — column types, indexes, relationships, and permissions — so queries stay correct and fast as data grows. ## Core Features & Use Cases - Column Type Selection: Decision tables mapping data shapes to the right SharePoint column type (Choice vs Lookup, Person vs Text), with delegation and indexing implications for each. - Threshold & Indexing Playbook: A step-by-step strategy for surviving the 5,000-item list view threshold — scoping lists, indexing filter columns early, and pre-filtering views. - Relationship Modeling: Guidance on lookup columns, the 8-join query ceiling, cascade/restrict delete, and when to denormalize parent values into child lists. - Use Case: You are building a Power App over a task list expected to reach 40,000 rows. Use this Skill to produce a schema with indexed Status, DueDate, and AssignedTo columns plus a denormalized project key, so every app query stays delegable and under the threshold. ## Quick Start Ask the assistant to design a SharePoint list schema for your Power App, stating your expected row count, main filters, and who reads which records.