Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
dholms committed Feb 12, 2024
1 parent e737f20 commit 268af2e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
9 changes: 8 additions & 1 deletion lexicons/com/atproto/repo/checkImportStatus.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["finalized", "uploadedRepo", "importedRepo", "importedPrivateState", "expectedBlobs", "importedBlobs"],
"required": [
"finalized",
"uploadedRepo",
"importedRepo",
"importedPrivateState",
"expectedBlobs",
"importedBlobs"
],
"properties": {
"finalized": { "type": "boolean" },
"uploadedRepo": { "type": "boolean" },
Expand Down
11 changes: 4 additions & 7 deletions lexicons/com/atproto/server/finalizeImport.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,7 @@
"properties": {
"didPayload": {
"type": "union",
"refs": [
"#didPlcPayload",
"#didWebPayload"
]
"refs": ["#didPlcPayload", "#didWebPayload"]
}
}
}
Expand All @@ -25,15 +22,15 @@
"type": "object",
"required": ["did", "op"],
"properties": {
"did": {"type": "string", "format": "did"},
"op": {"type": "unknown"}
"did": { "type": "string", "format": "did" },
"op": { "type": "unknown" }
}
},
"didWebPayload": {
"type": "object",
"required": ["did"],
"properties": {
"did": {"type": "string", "format": "did"}
"did": { "type": "string", "format": "did" }
}
}
}
Expand Down

0 comments on commit 268af2e

Please sign in to comment.