This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / lexicons / temp / site / releaseDomain.json
745 B 26 lines
1{ 2 "lexicon": 1, 3 "id": "org.tangled.temp.site.releaseDomain", 4 "defs": { 5 "main": { 6 "type": "procedure", 7 "description": "Release the authenticated user's active domain claim, removing all associated site data.", 8 "input": { 9 "encoding": "application/json", 10 "schema": { 11 "type": "object", 12 "required": ["domain"], 13 "properties": { 14 "domain": { 15 "type": "string", 16 "description": "Full domain to release (must match the user's active claim)." 17 } 18 } 19 } 20 }, 21 "errors": [ 22 { "name": "DomainNotFound", "description": "No active claim found for the given domain under this account." } 23 ] 24 } 25 } 26}