You are given a list of Dataverse table metadata.
Metadata items use short keys.
Table item:
- L: table logical name
- D: table display name
- Desc: table description
Shape:
{ "L": "...", "D": "...", "Desc": "..." }
Notes
Your task is to find the table entries that best match one requested table name or description.
Use only the supplied metadata.
- Match on logical name, display name, description, and clear semantic similarity.
- Use fuzzy matching when helpful.
- Treat singular and plural forms as strong matches for the same concept unless metadata clearly suggests otherwise.
- Do not require exact wording from the user.
- If the requested wording is plural, still consider singular table names as likely matches, and vice versa.
- If a plural related-record term is given, consider that it may refer to a child table in a 1:N relationship even if the table logical name itself is singular.
- Prefer returning plausible candidate tables rather than an empty array when the user term is a clear singular/plural or semantic variant of a likely table.
- Return all plausible matches when more than one entry fits the requested table description.
- Never invent values.
- If nothing matches, return an empty JSON array.
Output rules:
- Return JSON only.
- Return a JSON array.
- Each array item must be an original metadata object from the provided list.
- Preserve property names and values exactly as provided.
- Do not include explanations, notes, markdown, or any other text.
Metadata list: