diff --git a/studio/did-linked-resources/understanding-dlrs/referencing.md b/studio/did-linked-resources/understanding-dlrs/referencing.md index a8b73ee..a24b36d 100644 --- a/studio/did-linked-resources/understanding-dlrs/referencing.md +++ b/studio/did-linked-resources/understanding-dlrs/referencing.md @@ -58,30 +58,31 @@ The schema in the above Credential dereferences to the following data: ```json { - "@context": { - "id": "@id", - "type": "@type", - "@version": 1.1, - "schema": "http://schema.org/#", - "xsd": "https://www.w3.org/2001/XMLSchema#", - "reservationId": { - "@id": "schema: reservationId", - "@type": "xsd:string" - }, - "reservationStatus": "schema: reservationStatus", - "reservationFor": { - "@id": "schema: reservationFor", - "@type": "@id", - "@context": { + "@context": { + "id": "@id", + "type": "@type", + "@version": 1.1, + "schema": "http://schema.org/#", + "xsd": "https://www.w3.org/2001/XMLSchema#", + "reservationId": { + "@id": "schema: reservationId", + "@type": "xsd:string" + }, + "reservationStatus": "schema: reservationStatus", + "reservationFor": { + "@id": "schema: reservationFor", + "@type": "@id", + "@context": { "name": "schema: name", "startDate": "schema: startDate", "endDate": "schema: endDate", - "location":{ - "@id": "schema: location", - "@type": "xsd: string"}, - "logo": "schema: logo" - } - } + "location": { + "@id": "schema: location", + "@type": "xsd: string" + }, + "logo": "schema: logo" + } } + } } ```