Last active
July 5, 2021 21:47
-
-
Save benvanderberg/6f5ac688501eb4c6b2f17418cb0221f2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "customer": { | |
| "@context": "https://schema.org", | |
| "@type": "Person", | |
| "address": { | |
| "@type": "PostalAddress", | |
| "addressLocality": "Seattle", | |
| "addressRegion": "WA", | |
| "postalCode": "98052", | |
| "streetAddress": "20341 Whitworth Institute 405 N. Whitworth" | |
| }, | |
| "email": "mailto:[email protected]", | |
| "jobTitle": "Professor", | |
| "name": "Jane Doe", | |
| "telephone": "(425) 123-4567", | |
| "url": "http://www.janedoe.com" | |
| }, | |
| "tax": { | |
| "state":"WA", | |
| "rate": 0.08 | |
| }, | |
| "referencesOrder": [ | |
| { | |
| "description": "Carpet Cleaning Service - 3BR 2BA", | |
| "totalPaymentDue": { | |
| "price": 359.54 | |
| }, | |
| "orderedItem": { | |
| "@type": "Service", | |
| "description": "Carpet Cleaning Service" | |
| } | |
| }, | |
| { | |
| "description": "Home Cleaning Service - 3BR 2BA", | |
| "totalPaymentDue": { | |
| "price": 299.99 | |
| }, | |
| "orderedItem": { | |
| "@type": "Service", | |
| "description": "House Cleaning Service" | |
| } | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment