usawa

Unnamed repository; edit this file 'description' to name the repository.
Info | Log | Files | Refs | Submodules | LICENSE

commit 90e5ceda512bf28cee2f58a3854c5775eba79cf3
parent 6f5e66075640c70f4814a5cf51332de58b45e0c1
Author: lash <dev@holbrook.no>
Date:   Tue, 20 Jan 2026 12:11:36 +0000

Add trust element to identities in schema

Diffstat:
Mdummy/usawa/data/schema.xsd | 11+++++------
1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/dummy/usawa/data/schema.xsd b/dummy/usawa/data/schema.xsd @@ -106,12 +106,11 @@ </xs:complexType> <xs:complexType name="Identity"> - <xs:simpleContent> - <xs:extension base="xs:string"> - <xs:attribute name="keyid" type="xs:string" /> - <xs:attribute name="didtype" type="xs:string" /> - </xs:extension> - </xs:simpleContent> + <xs:sequence> + <xs:element name="trust" type="Permission" minOccurs="0" maxOccurs="unbounded" /> + </xs:sequence> + <xs:attribute name="keyid" type="xs:string" /> + <xs:attribute name="didtype" type="xs:string" /> </xs:complexType> <xs:complexType name="Resolver">