Files
bsky-social-app/lexicons/app/bsky/contact/dismissMatch.json
2026-08-13 12:26:12 -07:00

43 lines
1010 B
JSON

{
"id": "app.bsky.contact.dismissMatch",
"defs": {
"main": {
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"subject"
],
"properties": {
"subject": {
"type": "string",
"format": "did",
"description": "The subject's DID to dismiss the match with."
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "InvalidDid"
},
{
"name": "InternalError"
}
],
"output": {
"schema": {
"type": "object",
"properties": {}
},
"encoding": "application/json"
},
"description": "Removes a match that was found via contact import. It shouldn't appear again if the same contact is re-imported. Requires authentication."
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}