From 5420e13d01c26c63593ce9df4dc11ee4bb8866b8 Mon Sep 17 00:00:00 2001 From: alizas1 <44541615+alizas1@users.noreply.github.com> Date: Tue, 23 Jul 2024 17:36:01 +0300 Subject: [PATCH] Update CommonObjects.md --- guides/CommonObjects.md | 105 ++++++++++++++++++++++++++++++++++++---- 1 file changed, 96 insertions(+), 9 deletions(-) diff --git a/guides/CommonObjects.md b/guides/CommonObjects.md index e505a6951b..96a7fc9f3e 100644 --- a/guides/CommonObjects.md +++ b/guides/CommonObjects.md @@ -2,13 +2,17 @@ Select objects are reused, in full or partially, across multiple Wix APIs for easier implementation/consumption. +Even when an object is reused, the root level name and any relevant value names (e.g., filterable field names, enum names) may have been customized. + +## Common query object + For example, an API that implemented the full common query object will look like this: -``` -'{. +```json +'{ "query": { "filter": { - "info.name.last": "Smith"}; + "info.name.last": "Smith"; "sort": "[{\"dateCreated\"A: \"asc\"}]"; "fields": "email"; "fieldsets": "BASIC"; @@ -17,26 +21,109 @@ For example, an API that implemented the full common query object will look like "offset": 30 }; "cursorPaging": - }, - }' + }, + }, + }' ``` An API that implemented a partial common query object might look like this: -``` +```json '{ "query": { "filter": { "info.name.last": "Smith"}; "sort": "[{\"dateCreated\": \"asc\"}]"; - "paging": {. + "paging": { "limit": 30, "offset": 30 }, }' ``` -Even when an object is reused, the root level name and any relevant value names (e.g., filterable field names, enum names) may have been customized. +## Common address object + +For example, an API that implemented the common address object will look like this: + +```json +'{ + "address": { + "country": "USA"; + "subdivision": "LA"; + "subdivisionIso31662": "LA"; + "city": "Baton Rouge"; + "postalCode": "70809"; + "streetAddress": "7155 Exchequer Dr"; + OR + "addressLine": ""; + "addressLine2": ""; + "formattedAddress": ""; + "hint": "entrance is around the corner"; + "geocode": ""; + "countryFullname": "United States of America"; + "subdivisionFullname": "Louisiana"; + "subdivisions": ""; + + }, + }' + ``` + + +## Common image object +An API that implemented the full common image object will look like this: -From January 2023, common objects will be documented as such. +```json +'{ + "image": { + "id": "123456789"; + "url": ""; + "height": ""; + "width": ""; + "altText": ""; + "urlExpirationDate": ""; + "filename": ""; + "sizeInBytes": ""; + }, + }' + ``` +An API that implemented a partial common image object might look like this: + +```json +'{ + "image": { + "id": "123456789"; + "height": ""; + "width": ""; + }, + }' + ``` +## Common video object + +An API that implemented the full common image object will look like this: + +```json +'{ + "video": { + "id": "123456789"; + "url": ""; + "resolutions": ""; + "filename": ""; + "posters": ""; + "urlExpirationDate": ""; + "sizeInBytes": ""; + "durationInMilliseconds": ""; + }, + }' + ``` + +An API that implemented a partial common video object might look like this: + +```json +'{ + "video": { + "id": "123456789"; + "resolutions": ""; + }, + }' + ```