···44 "defs": {
55 "main": {
66 "type": "query",
77- "description": "Get records that link to a primary subject along with the secondary subjects they also reference",
77+ "description": "Get records that link out to both a primary and secondary subject",
88 "parameters": {
99 "type": "params",
1010 "required": ["subject", "source", "pathToOther"],
···2222 "type": "string",
2323 "description": "path to the secondary link in the many-to-many record (e.g., 'otherThing.uri')"
2424 },
2525- "did": {
2525+ "linkDid": {
2626 "type": "array",
2727- "description": "filter links to those from specific users",
2727+ "description": "filter linking records from specific users",
2828 "items": {
2929 "type": "string",
3030 "format": "did"
···6868 },
6969 "item": {
7070 "type": "object",
7171- "required": ["link", "subject"],
7171+ "required": ["linkRecord", "otherSubject"],
7272 "properties": {
7373- "link": {
7373+ "linkRecord": {
7474 "type": "ref",
7575- "ref": "#linkRecord"
7575+ "ref": "#linkRecord",
7676+ "description": "reference to the link record itself"
7677 },
7777- "subject": {
7878+ "otherSubject": {
7979+ "description": "the secondary subject from the link record",
7880 "type": "string"
7981 }
8082 }