openapi-directory
Version:
Building & bundling https://github.com/APIs-guru/openapi-directory for easy use from JS
1 lines • 94.6 kB
JSON
{"openapi":"3.0.1","servers":[{"url":"https://sync.twilio.com"}],"info":{"contact":{"email":"support@twilio.com","name":"Twilio Support","url":"https://support.twilio.com"},"description":"This is the public Twilio REST API.","license":{"name":"Apache 2.0","url":"https://www.apache.org/licenses/LICENSE-2.0.html"},"termsOfService":"https://www.twilio.com/legal/tos","title":"Twilio - Sync","version":"1.55.0","x-apisguru-categories":["telecom","messaging"],"x-logo":{"url":"https://static1.twilio.com/marketing/bundles/marketing/img/logos/wordmark-red.svg"},"x-origin":[{"format":"openapi","url":"https://raw.githubusercontent.com/twilio/twilio-oai/main/spec/json/twilio_sync_v1.json","version":"3.0"}],"x-providerName":"twilio.com","x-serviceName":"twilio_sync_v1"},"tags":[{"name":"SyncV1Document"},{"name":"SyncV1DocumentPermission"},{"name":"SyncV1Service"},{"name":"SyncV1StreamMessage"},{"name":"SyncV1SyncList"},{"name":"SyncV1SyncListItem"},{"name":"SyncV1SyncListPermission"},{"name":"SyncV1SyncMap"},{"name":"SyncV1SyncMapItem"},{"name":"SyncV1SyncMapPermission"},{"name":"SyncV1SyncStream"}],"paths":{"/v1/Services":{"description":"Containers for sync objects","get":{"description":"","operationId":"ListService","parameters":[{"description":"How many resources to return in each list page. The default is 50, and the maximum is 1000.","in":"query","name":"PageSize","schema":{"maximum":1000,"minimum":1,"type":"integer"}},{"description":"The page index. This value is simply for client state.","in":"query","name":"Page","schema":{"minimum":0,"type":"integer"}},{"description":"The page token. This is provided by the API.","in":"query","name":"PageToken","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"properties":{"meta":{"properties":{"first_page_url":{"format":"uri","type":"string"},"key":{"type":"string"},"next_page_url":{"format":"uri","nullable":true,"type":"string"},"page":{"type":"integer"},"page_size":{"type":"integer"},"previous_page_url":{"format":"uri","nullable":true,"type":"string"},"url":{"format":"uri","type":"string"}},"type":"object"},"services":{"items":{"$ref":"#/components/schemas/sync.v1.service"},"type":"array"}},"title":"ListServiceResponse","type":"object"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1Service"],"x-maturity":["GA"]},"post":{"description":"","operationId":"CreateService","requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"properties":{"AclEnabled":{"description":"Whether token identities in the Service must be granted access to Sync objects by using the [Permissions](https://www.twilio.com/docs/sync/api/sync-permissions) resource.","type":"boolean"},"FriendlyName":{"description":"A string that you assign to describe the resource.","type":"string"},"ReachabilityDebouncingEnabled":{"description":"Whether every `endpoint_disconnected` event should occur after a configurable delay. The default is `false`, where the `endpoint_disconnected` event occurs immediately after disconnection. When `true`, intervening reconnections can prevent the `endpoint_disconnected` event.","type":"boolean"},"ReachabilityDebouncingWindow":{"description":"The reachability event delay in milliseconds if `reachability_debouncing_enabled` = `true`. Must be between 1,000 and 30,000 and defaults to 5,000. This is the number of milliseconds after the last running client disconnects, and a Sync identity is declared offline, before the `webhook_url` is called if all endpoints remain offline. A reconnection from the same identity by any endpoint during this interval prevents the call to `webhook_url`.","type":"integer"},"ReachabilityWebhooksEnabled":{"description":"Whether the service instance should call `webhook_url` when client endpoints connect to Sync. The default is `false`.","type":"boolean"},"WebhookUrl":{"description":"The URL we should call when Sync objects are manipulated.","format":"uri","type":"string"},"WebhooksFromRestEnabled":{"description":"Whether the Service instance should call `webhook_url` when the REST API is used to update Sync objects. The default is `false`.","type":"boolean"}},"title":"CreateServiceRequest","type":"object"}}}},"responses":{"201":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/sync.v1.service"}}},"description":"Created"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1Service"],"x-maturity":["GA"]},"servers":[{"url":"https://sync.twilio.com"}],"x-twilio":{"defaultOutputProperties":["sid","unique_name","friendly_name"],"dependentProperties":{"documents":{"mapping":{"service_sid":"sid"},"resource_url":"/v1/Services/{service_sid}/Documents"},"sync_lists":{"mapping":{"service_sid":"sid"},"resource_url":"/v1/Services/{service_sid}/Lists"},"sync_maps":{"mapping":{"service_sid":"sid"},"resource_url":"/v1/Services/{service_sid}/Maps"},"sync_streams":{"mapping":{"service_sid":"sid"},"resource_url":"/v1/Services/{service_sid}/Streams"}},"pathType":"list"}},"/v1/Services/{ServiceSid}/Documents":{"description":"Sync Document objects","get":{"description":"","operationId":"ListDocument","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Document resources to read.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"How many resources to return in each list page. The default is 50, and the maximum is 1000.","in":"query","name":"PageSize","schema":{"maximum":1000,"minimum":1,"type":"integer"}},{"description":"The page index. This value is simply for client state.","in":"query","name":"Page","schema":{"minimum":0,"type":"integer"}},{"description":"The page token. This is provided by the API.","in":"query","name":"PageToken","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"properties":{"documents":{"items":{"$ref":"#/components/schemas/sync.v1.service.document"},"type":"array"},"meta":{"properties":{"first_page_url":{"format":"uri","type":"string"},"key":{"type":"string"},"next_page_url":{"format":"uri","nullable":true,"type":"string"},"page":{"type":"integer"},"page_size":{"type":"integer"},"previous_page_url":{"format":"uri","nullable":true,"type":"string"},"url":{"format":"uri","type":"string"}},"type":"object"}},"title":"ListDocumentResponse","type":"object"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1Document"],"x-maturity":["GA"]},"post":{"description":"","operationId":"CreateDocument","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) to create the new Document resource in.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"properties":{"Data":{"description":"A JSON string that represents an arbitrary, schema-less object that the Sync Document stores. Can be up to 16 KiB in length."},"Ttl":{"description":"How long, [in seconds](https://www.twilio.com/docs/sync/limits#sync-payload-limits), before the Sync Document expires and is deleted (the Sync Document's time-to-live).","type":"integer"},"UniqueName":{"description":"An application-defined string that uniquely identifies the Sync Document","type":"string"}},"title":"CreateDocumentRequest","type":"object"}}}},"responses":{"201":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/sync.v1.service.document"}}},"description":"Created"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1Document"],"x-maturity":["GA"]},"servers":[{"url":"https://sync.twilio.com"}],"x-twilio":{"defaultOutputProperties":["sid","unique_name","revision"],"dependentProperties":{"document_permissions":{"mapping":{"document_sid":"sid","service_sid":"service_sid"},"resource_url":"/v1/Services/{service_sid}/Documents/{document_sid}/Permissions"}},"parent":"/Services/{Sid}","pathType":"list"}},"/v1/Services/{ServiceSid}/Documents/{DocumentSid}/Permissions":{"description":"Sync document permissions","get":{"description":"Retrieve a list of all Permissions applying to a Sync Document.","operationId":"ListDocumentPermission","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Document Permission resources to read.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync Document with the Document Permission resources to read. Can be the Document resource's `sid` or its `unique_name`.","in":"path","name":"DocumentSid","required":true,"schema":{"type":"string"}},{"description":"How many resources to return in each list page. The default is 50, and the maximum is 1000.","in":"query","name":"PageSize","schema":{"maximum":1000,"minimum":1,"type":"integer"}},{"description":"The page index. This value is simply for client state.","in":"query","name":"Page","schema":{"minimum":0,"type":"integer"}},{"description":"The page token. This is provided by the API.","in":"query","name":"PageToken","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"properties":{"meta":{"properties":{"first_page_url":{"format":"uri","type":"string"},"key":{"type":"string"},"next_page_url":{"format":"uri","nullable":true,"type":"string"},"page":{"type":"integer"},"page_size":{"type":"integer"},"previous_page_url":{"format":"uri","nullable":true,"type":"string"},"url":{"format":"uri","type":"string"}},"type":"object"},"permissions":{"items":{"$ref":"#/components/schemas/sync.v1.service.document.document_permission"},"type":"array"}},"title":"ListDocumentPermissionResponse","type":"object"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1DocumentPermission"],"x-maturity":["GA"]},"servers":[{"url":"https://sync.twilio.com"}],"x-twilio":{"defaultOutputProperties":["identity","read","write","manage"],"mountName":"document_permissions","parent":"/Services/{ServiceSid}/Documents/{Sid}","pathType":"list"}},"/v1/Services/{ServiceSid}/Documents/{DocumentSid}/Permissions/{Identity}":{"delete":{"description":"Delete a specific Sync Document Permission.","operationId":"DeleteDocumentPermission","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Document Permission resource to delete.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync Document with the Document Permission resource to delete. Can be the Document resource's `sid` or its `unique_name`.","in":"path","name":"DocumentSid","required":true,"schema":{"type":"string"}},{"description":"The application-defined string that uniquely identifies the User's Document Permission resource to delete.","in":"path","name":"Identity","required":true,"schema":{"type":"string"},"x-twilio":{"pii":{"deleteSla":30,"handling":"standard"}}}],"responses":{"204":{"description":"The resource was deleted successfully."}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1DocumentPermission"],"x-maturity":["GA"]},"description":"Sync document permissions","get":{"description":"Fetch a specific Sync Document Permission.","operationId":"FetchDocumentPermission","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Document Permission resource to fetch.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync Document with the Document Permission resource to fetch. Can be the Document resource's `sid` or its `unique_name`.","in":"path","name":"DocumentSid","required":true,"schema":{"type":"string"}},{"description":"The application-defined string that uniquely identifies the User's Document Permission resource to fetch.","in":"path","name":"Identity","required":true,"schema":{"type":"string"},"x-twilio":{"pii":{"deleteSla":30,"handling":"standard"}}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/sync.v1.service.document.document_permission"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1DocumentPermission"],"x-maturity":["GA"]},"post":{"description":"Update an identity's access to a specific Sync Document.","operationId":"UpdateDocumentPermission","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Document Permission resource to update.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync Document with the Document Permission resource to update. Can be the Document resource's `sid` or its `unique_name`.","in":"path","name":"DocumentSid","required":true,"schema":{"type":"string"}},{"description":"The application-defined string that uniquely identifies the User's Document Permission resource to update.","in":"path","name":"Identity","required":true,"schema":{"type":"string"},"x-twilio":{"pii":{"deleteSla":30,"handling":"standard"}}}],"requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"properties":{"Manage":{"description":"Whether the identity can delete the Sync Document. Default value is `false`.","type":"boolean"},"Read":{"description":"Whether the identity can read the Sync Document. Default value is `false`.","type":"boolean"},"Write":{"description":"Whether the identity can update the Sync Document. Default value is `false`.","type":"boolean"}},"required":["Read","Write","Manage"],"title":"UpdateDocumentPermissionRequest","type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/sync.v1.service.document.document_permission"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1DocumentPermission"],"x-maturity":["GA"]},"servers":[{"url":"https://sync.twilio.com"}],"x-twilio":{"defaultOutputProperties":["identity","read","write","manage"],"mountName":"document_permissions","parent":"/Services/{ServiceSid}/Documents/{Sid}","pathType":"instance"}},"/v1/Services/{ServiceSid}/Documents/{Sid}":{"delete":{"description":"","operationId":"DeleteDocument","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Document resource to delete.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Document resource to delete. Can be the Document resource's `sid` or its `unique_name`.","in":"path","name":"Sid","required":true,"schema":{"type":"string"}}],"responses":{"204":{"description":"The resource was deleted successfully."}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1Document"],"x-maturity":["GA"]},"description":"Sync Document objects","get":{"description":"","operationId":"FetchDocument","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Document resource to fetch.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Document resource to fetch. Can be the Document resource's `sid` or its `unique_name`.","in":"path","name":"Sid","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/sync.v1.service.document"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1Document"],"x-maturity":["GA"]},"post":{"description":"","operationId":"UpdateDocument","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Document resource to update.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Document resource to update. Can be the Document resource's `sid` or its `unique_name`.","in":"path","name":"Sid","required":true,"schema":{"type":"string"}},{"description":"The If-Match HTTP request header","in":"header","name":"If-Match","schema":{"type":"string"}}],"requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"properties":{"Data":{"description":"A JSON string that represents an arbitrary, schema-less object that the Sync Document stores. Can be up to 16 KiB in length."},"Ttl":{"description":"How long, [in seconds](https://www.twilio.com/docs/sync/limits#sync-payload-limits), before the Sync Document expires and is deleted (time-to-live).","type":"integer"}},"title":"UpdateDocumentRequest","type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/sync.v1.service.document"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1Document"],"x-maturity":["GA"]},"servers":[{"url":"https://sync.twilio.com"}],"x-twilio":{"defaultOutputProperties":["sid","unique_name","revision"],"dependentProperties":{"document_permissions":{"mapping":{"document_sid":"sid","service_sid":"service_sid"},"resource_url":"/v1/Services/{service_sid}/Documents/{document_sid}/Permissions"}},"parent":"/Services/{Sid}","pathType":"instance"}},"/v1/Services/{ServiceSid}/Lists":{"description":"Sync list objects","get":{"description":"","operationId":"ListSyncList","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Sync List resources to read.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"How many resources to return in each list page. The default is 50, and the maximum is 1000.","in":"query","name":"PageSize","schema":{"maximum":1000,"minimum":1,"type":"integer"}},{"description":"The page index. This value is simply for client state.","in":"query","name":"Page","schema":{"minimum":0,"type":"integer"}},{"description":"The page token. This is provided by the API.","in":"query","name":"PageToken","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"properties":{"lists":{"items":{"$ref":"#/components/schemas/sync.v1.service.sync_list"},"type":"array"},"meta":{"properties":{"first_page_url":{"format":"uri","type":"string"},"key":{"type":"string"},"next_page_url":{"format":"uri","nullable":true,"type":"string"},"page":{"type":"integer"},"page_size":{"type":"integer"},"previous_page_url":{"format":"uri","nullable":true,"type":"string"},"url":{"format":"uri","type":"string"}},"type":"object"}},"title":"ListSyncListResponse","type":"object"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncList"],"x-maturity":["GA"]},"post":{"description":"","operationId":"CreateSyncList","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) to create the new Sync List in.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"properties":{"CollectionTtl":{"description":"How long, [in seconds](https://www.twilio.com/docs/sync/limits#sync-payload-limits), before the Sync List expires (time-to-live) and is deleted.","type":"integer"},"Ttl":{"description":"Alias for collection_ttl. If both are provided, this value is ignored.","type":"integer"},"UniqueName":{"description":"An application-defined string that uniquely identifies the resource. This value must be unique within its Service and it can be up to 320 characters long. The `unique_name` value can be used as an alternative to the `sid` in the URL path to address the resource.","type":"string"}},"title":"CreateSyncListRequest","type":"object"}}}},"responses":{"201":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/sync.v1.service.sync_list"}}},"description":"Created"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncList"],"x-maturity":["GA"]},"servers":[{"url":"https://sync.twilio.com"}],"x-twilio":{"defaultOutputProperties":["sid","unique_name","revision"],"dependentProperties":{"sync_list_items":{"mapping":{"list_sid":"sid","service_sid":"service_sid"},"resource_url":"/v1/Services/{service_sid}/Lists/{list_sid}/Items"},"sync_list_permissions":{"mapping":{"list_sid":"sid","service_sid":"service_sid"},"resource_url":"/v1/Services/{service_sid}/Lists/{list_sid}/Permissions"}},"mountName":"sync_lists","parent":"/Services/{Sid}","pathType":"list"}},"/v1/Services/{ServiceSid}/Lists/{ListSid}/Items":{"description":"Items in a sync list","get":{"description":"","operationId":"ListSyncListItem","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the List Item resources to read.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync List with the List Items to read. Can be the Sync List resource's `sid` or its `unique_name`.","in":"path","name":"ListSid","required":true,"schema":{"type":"string"}},{"description":"How to order the List Items returned by their `index` value. Can be: `asc` (ascending) or `desc` (descending) and the default is ascending.","in":"query","name":"Order","schema":{"$ref":"#/components/schemas/sync_list_item_enum_query_result_order","type":"string"}},{"description":"The `index` of the first Sync List Item resource to read. See also `bounds`.","in":"query","name":"From","schema":{"type":"string"}},{"description":"Whether to include the List Item referenced by the `from` parameter. Can be: `inclusive` to include the List Item referenced by the `from` parameter or `exclusive` to start with the next List Item. The default value is `inclusive`.","in":"query","name":"Bounds","schema":{"$ref":"#/components/schemas/sync_list_item_enum_query_from_bound_type","type":"string"}},{"description":"How many resources to return in each list page. The default is 50, and the maximum is 1000.","in":"query","name":"PageSize","schema":{"maximum":1000,"minimum":1,"type":"integer"}},{"description":"The page index. This value is simply for client state.","in":"query","name":"Page","schema":{"minimum":0,"type":"integer"}},{"description":"The page token. This is provided by the API.","in":"query","name":"PageToken","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"properties":{"items":{"items":{"$ref":"#/components/schemas/sync.v1.service.sync_list.sync_list_item"},"type":"array"},"meta":{"properties":{"first_page_url":{"format":"uri","type":"string"},"key":{"type":"string"},"next_page_url":{"format":"uri","nullable":true,"type":"string"},"page":{"type":"integer"},"page_size":{"type":"integer"},"previous_page_url":{"format":"uri","nullable":true,"type":"string"},"url":{"format":"uri","type":"string"}},"type":"object"}},"title":"ListSyncListItemResponse","type":"object"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncListItem"],"x-maturity":["GA"]},"post":{"description":"","operationId":"CreateSyncListItem","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) to create the new List Item in.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync List to add the new List Item to. Can be the Sync List resource's `sid` or its `unique_name`.","in":"path","name":"ListSid","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"properties":{"CollectionTtl":{"description":"How long, [in seconds](https://www.twilio.com/docs/sync/limits#sync-payload-limits), before the List Item's parent Sync List expires (time-to-live) and is deleted.","type":"integer"},"Data":{"description":"A JSON string that represents an arbitrary, schema-less object that the List Item stores. Can be up to 16 KiB in length."},"ItemTtl":{"description":"How long, [in seconds](https://www.twilio.com/docs/sync/limits#sync-payload-limits), before the List Item expires (time-to-live) and is deleted.","type":"integer"},"Ttl":{"description":"An alias for `item_ttl`. If both parameters are provided, this value is ignored.","type":"integer"}},"required":["Data"],"title":"CreateSyncListItemRequest","type":"object"}}}},"responses":{"201":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/sync.v1.service.sync_list.sync_list_item"}}},"description":"Created"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncListItem"],"x-maturity":["GA"]},"servers":[{"url":"https://sync.twilio.com"}],"x-twilio":{"defaultOutputProperties":["index","revision","created_by"],"mountName":"sync_list_items","parent":"/Services/{ServiceSid}/Lists/{Sid}","pathType":"list"}},"/v1/Services/{ServiceSid}/Lists/{ListSid}/Items/{Index}":{"delete":{"description":"","operationId":"DeleteSyncListItem","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Sync List Item resource to delete.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync List with the Sync List Item resource to delete. Can be the Sync List resource's `sid` or its `unique_name`.","in":"path","name":"ListSid","required":true,"schema":{"type":"string"}},{"description":"The index of the Sync List Item resource to delete.","in":"path","name":"Index","required":true,"schema":{"type":"integer"}},{"description":"If provided, applies this mutation if (and only if) the “revision” field of this [map item] matches the provided value. This matches the semantics of (and is implemented with) the HTTP [If-Match header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-Match).","in":"header","name":"If-Match","schema":{"type":"string"}}],"responses":{"204":{"description":"The resource was deleted successfully."}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncListItem"],"x-maturity":["GA"]},"description":"Items in a sync list","get":{"description":"","operationId":"FetchSyncListItem","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Sync List Item resource to fetch.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync List with the Sync List Item resource to fetch. Can be the Sync List resource's `sid` or its `unique_name`.","in":"path","name":"ListSid","required":true,"schema":{"type":"string"}},{"description":"The index of the Sync List Item resource to fetch.","in":"path","name":"Index","required":true,"schema":{"type":"integer"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/sync.v1.service.sync_list.sync_list_item"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncListItem"],"x-maturity":["GA"]},"post":{"description":"","operationId":"UpdateSyncListItem","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Sync List Item resource to update.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync List with the Sync List Item resource to update. Can be the Sync List resource's `sid` or its `unique_name`.","in":"path","name":"ListSid","required":true,"schema":{"type":"string"}},{"description":"The index of the Sync List Item resource to update.","in":"path","name":"Index","required":true,"schema":{"type":"integer"}},{"description":"If provided, applies this mutation if (and only if) the “revision” field of this [map item] matches the provided value. This matches the semantics of (and is implemented with) the HTTP [If-Match header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-Match).","in":"header","name":"If-Match","schema":{"type":"string"}}],"requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"properties":{"CollectionTtl":{"description":"How long, [in seconds](https://www.twilio.com/docs/sync/limits#sync-payload-limits), before the List Item's parent Sync List expires (time-to-live) and is deleted. This parameter can only be used when the List Item's `data` or `ttl` is updated in the same request.","type":"integer"},"Data":{"description":"A JSON string that represents an arbitrary, schema-less object that the List Item stores. Can be up to 16 KiB in length."},"ItemTtl":{"description":"How long, [in seconds](https://www.twilio.com/docs/sync/limits#sync-payload-limits), before the List Item expires (time-to-live) and is deleted.","type":"integer"},"Ttl":{"description":"An alias for `item_ttl`. If both parameters are provided, this value is ignored.","type":"integer"}},"title":"UpdateSyncListItemRequest","type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/sync.v1.service.sync_list.sync_list_item"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncListItem"],"x-maturity":["GA"]},"servers":[{"url":"https://sync.twilio.com"}],"x-twilio":{"defaultOutputProperties":["index","revision","created_by"],"mountName":"sync_list_items","parent":"/Services/{ServiceSid}/Lists/{Sid}","pathType":"instance"}},"/v1/Services/{ServiceSid}/Lists/{ListSid}/Permissions":{"description":"Permissions for Sync list items","get":{"description":"Retrieve a list of all Permissions applying to a Sync List.","operationId":"ListSyncListPermission","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Sync List Permission resources to read.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync List with the Sync List Permission resources to read. Can be the Sync List resource's `sid` or its `unique_name`.","in":"path","name":"ListSid","required":true,"schema":{"type":"string"}},{"description":"How many resources to return in each list page. The default is 50, and the maximum is 1000.","in":"query","name":"PageSize","schema":{"maximum":1000,"minimum":1,"type":"integer"}},{"description":"The page index. This value is simply for client state.","in":"query","name":"Page","schema":{"minimum":0,"type":"integer"}},{"description":"The page token. This is provided by the API.","in":"query","name":"PageToken","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"properties":{"meta":{"properties":{"first_page_url":{"format":"uri","type":"string"},"key":{"type":"string"},"next_page_url":{"format":"uri","nullable":true,"type":"string"},"page":{"type":"integer"},"page_size":{"type":"integer"},"previous_page_url":{"format":"uri","nullable":true,"type":"string"},"url":{"format":"uri","type":"string"}},"type":"object"},"permissions":{"items":{"$ref":"#/components/schemas/sync.v1.service.sync_list.sync_list_permission"},"type":"array"}},"title":"ListSyncListPermissionResponse","type":"object"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncListPermission"],"x-maturity":["GA"]},"servers":[{"url":"https://sync.twilio.com"}],"x-twilio":{"defaultOutputProperties":["identity","read","write","manage"],"mountName":"sync_list_permissions","parent":"/Services/{ServiceSid}/Lists/{Sid}","pathType":"list"}},"/v1/Services/{ServiceSid}/Lists/{ListSid}/Permissions/{Identity}":{"delete":{"description":"Delete a specific Sync List Permission.","operationId":"DeleteSyncListPermission","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Sync List Permission resource to delete.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync List with the Sync List Permission resource to delete. Can be the Sync List resource's `sid` or its `unique_name`.","in":"path","name":"ListSid","required":true,"schema":{"type":"string"}},{"description":"The application-defined string that uniquely identifies the User's Sync List Permission resource to delete.","in":"path","name":"Identity","required":true,"schema":{"type":"string"},"x-twilio":{"pii":{"deleteSla":30,"handling":"standard"}}}],"responses":{"204":{"description":"The resource was deleted successfully."}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncListPermission"],"x-maturity":["GA"]},"description":"Permissions for Sync list items","get":{"description":"Fetch a specific Sync List Permission.","operationId":"FetchSyncListPermission","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Sync List Permission resource to fetch.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync List with the Sync List Permission resource to fetch. Can be the Sync List resource's `sid` or its `unique_name`.","in":"path","name":"ListSid","required":true,"schema":{"type":"string"}},{"description":"The application-defined string that uniquely identifies the User's Sync List Permission resource to fetch.","in":"path","name":"Identity","required":true,"schema":{"type":"string"},"x-twilio":{"pii":{"deleteSla":30,"handling":"standard"}}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/sync.v1.service.sync_list.sync_list_permission"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncListPermission"],"x-maturity":["GA"]},"post":{"description":"Update an identity's access to a specific Sync List.","operationId":"UpdateSyncListPermission","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Sync List Permission resource to update.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync List with the Sync List Permission resource to update. Can be the Sync List resource's `sid` or its `unique_name`.","in":"path","name":"ListSid","required":true,"schema":{"type":"string"}},{"description":"The application-defined string that uniquely identifies the User's Sync List Permission resource to update.","in":"path","name":"Identity","required":true,"schema":{"type":"string"},"x-twilio":{"pii":{"deleteSla":30,"handling":"standard"}}}],"requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"properties":{"Manage":{"description":"Whether the identity can delete the Sync List. Default value is `false`.","type":"boolean"},"Read":{"description":"Whether the identity can read the Sync List and its Items. Default value is `false`.","type":"boolean"},"Write":{"description":"Whether the identity can create, update, and delete Items in the Sync List. Default value is `false`.","type":"boolean"}},"required":["Read","Write","Manage"],"title":"UpdateSyncListPermissionRequest","type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/sync.v1.service.sync_list.sync_list_permission"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncListPermission"],"x-maturity":["GA"]},"servers":[{"url":"https://sync.twilio.com"}],"x-twilio":{"defaultOutputProperties":["identity","read","write","manage"],"mountName":"sync_list_permissions","parent":"/Services/{ServiceSid}/Lists/{Sid}","pathType":"instance"}},"/v1/Services/{ServiceSid}/Lists/{Sid}":{"delete":{"description":"","operationId":"DeleteSyncList","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Sync List resource to delete.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync List resource to delete. Can be the Sync List resource's `sid` or its `unique_name`.","in":"path","name":"Sid","required":true,"schema":{"type":"string"}}],"responses":{"204":{"description":"The resource was deleted successfully."}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncList"],"x-maturity":["GA"]},"description":"Sync list objects","get":{"description":"","operationId":"FetchSyncList","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Sync List resource to fetch.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync List resource to fetch. Can be the Sync List resource's `sid` or its `unique_name`.","in":"path","name":"Sid","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/sync.v1.service.sync_list"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncList"],"x-maturity":["GA"]},"post":{"description":"","operationId":"UpdateSyncList","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Sync List resource to update.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync List resource to update. Can be the Sync List resource's `sid` or its `unique_name`.","in":"path","name":"Sid","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"properties":{"CollectionTtl":{"description":"How long, [in seconds](https://www.twilio.com/docs/sync/limits#sync-payload-limits), before the Sync List expires (time-to-live) and is deleted.","type":"integer"},"Ttl":{"description":"An alias for `collection_ttl`. If both are provided, this value is ignored.","type":"integer"}},"title":"UpdateSyncListRequest","type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/sync.v1.service.sync_list"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncList"],"x-maturity":["GA"]},"servers":[{"url":"https://sync.twilio.com"}],"x-twilio":{"defaultOutputProperties":["sid","unique_name","revision"],"dependentProperties":{"sync_list_items":{"mapping":{"list_sid":"sid","service_sid":"service_sid"},"resource_url":"/v1/Services/{service_sid}/Lists/{list_sid}/Items"},"sync_list_permissions":{"mapping":{"list_sid":"sid","service_sid":"service_sid"},"resource_url":"/v1/Services/{service_sid}/Lists/{list_sid}/Permissions"}},"mountName":"sync_lists","parent":"/Services/{Sid}","pathType":"instance"}},"/v1/Services/{ServiceSid}/Maps":{"description":"Sync map objects","get":{"description":"","operationId":"ListSyncMap","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Sync Map resources to read.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"How many resources to return in each list page. The default is 50, and the maximum is 1000.","in":"query","name":"PageSize","schema":{"maximum":1000,"minimum":1,"type":"integer"}},{"description":"The page index. This value is simply for client state.","in":"query","name":"Page","schema":{"minimum":0,"type":"integer"}},{"description":"The page token. This is provided by the API.","in":"query","name":"PageToken","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"properties":{"maps":{"items":{"$ref":"#/components/schemas/sync.v1.service.sync_map"},"type":"array"},"meta":{"properties":{"first_page_url":{"format":"uri","type":"string"},"key":{"type":"string"},"next_page_url":{"format":"uri","nullable":true,"type":"string"},"page":{"type":"integer"},"page_size":{"type":"integer"},"previous_page_url":{"format":"uri","nullable":true,"type":"string"},"url":{"format":"uri","type":"string"}},"type":"object"}},"title":"ListSyncMapResponse","type":"object"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncMap"],"x-maturity":["GA"]},"post":{"description":"","operationId":"CreateSyncMap","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) to create the Sync Map in.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"properties":{"CollectionTtl":{"description":"How long, [in seconds](https://www.twilio.com/docs/sync/limits#sync-payload-limits), before the Sync Map expires (time-to-live) and is deleted.","type":"integer"},"Ttl":{"description":"An alias for `collection_ttl`. If both parameters are provided, this value is ignored.","type":"integer"},"UniqueName":{"description":"An application-defined string that uniquely identifies the resource. It can be used as an alternative to the `sid` in the URL path to address the resource.","type":"string"}},"title":"CreateSyncMapRequest","type":"object"}}}},"responses":{"201":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/sync.v1.service.sync_map"}}},"description":"Created"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncMap"],"x-maturity":["GA"]},"servers":[{"url":"https://sync.twilio.com"}],"x-twilio":{"defaultOutputProperties":["sid","unique_name","revision"],"dependentProperties":{"sync_map_items":{"mapping":{"map_sid":"sid","service_sid":"service_sid"},"resource_url":"/v1/Services/{service_sid}/Maps/{map_sid}/Items"},"sync_map_permissions":{"mapping":{"map_sid":"sid","service_sid":"service_sid"},"resource_url":"/v1/Services/{service_sid}/Maps/{map_sid}/Permissions"}},"mountName":"sync_maps","parent":"/Services/{Sid}","pathType":"list"}},"/v1/Services/{ServiceSid}/Maps/{MapSid}/Items":{"description":"Keys in a sync map","get":{"description":"","operationId":"ListSyncMapItem","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Map Item resources to read.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync Map with the Sync Map Item resource to fetch. Can be the Sync Map resource's `sid` or its `unique_name`.","in":"path","name":"MapSid","required":true,"schema":{"type":"string"}},{"description":"How to order the Map Items returned by their `key` value. Can be: `asc` (ascending) or `desc` (descending) and the default is ascending. Map Items are [ordered lexicographically](https://en.wikipedia.org/wiki/Lexicographical_order) by Item key.","in":"query","name":"Order","schema":{"$ref":"#/components/schemas/sync_map_item_enum_query_result_order","type":"string"}},{"description":"The `key` of the first Sync Map Item resource to read. See also `bounds`.","in":"query","name":"From","schema":{"type":"string"}},{"description":"Whether to include the Map Item referenced by the `from` parameter. Can be: `inclusive` to include the Map Item referenced by the `from` parameter or `exclusive` to start with the next Map Item. The default value is `inclusive`.","in":"query","name":"Bounds","schema":{"$ref":"#/components/schemas/sync_map_item_enum_query_from_bound_type","type":"string"}},{"description":"How many resources to return in each list page. The default is 50, and the maximum is 1000.","in":"query","name":"PageSize","schema":{"maximum":1000,"minimum":1,"type":"integer"}},{"description":"The page index. This value is simply for client state.","in":"query","name":"Page","schema":{"minimum":0,"type":"integer"}},{"description":"The page token. This is provided by the API.","in":"query","name":"PageToken","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"properties":{"items":{"items":{"$ref":"#/components/schemas/sync.v1.service.sync_map.sync_map_item"},"type":"array"},"meta":{"properties":{"first_page_url":{"format":"uri","type":"string"},"key":{"type":"string"},"next_page_url":{"format":"uri","nullable":true,"type":"string"},"page":{"type":"integer"},"page_size":{"type":"integer"},"previous_page_url":{"format":"uri","nullable":true,"type":"string"},"url":{"format":"uri","type":"string"}},"type":"object"}},"title":"ListSyncMapItemResponse","type":"object"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncMapItem"],"x-maturity":["GA"]},"post":{"description":"","operationId":"CreateSyncMapItem","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) to create the Map Item in.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync Map to add the new Map Item to. Can be the Sync Map resource's `sid` or its `unique_name`.","in":"path","name":"MapSid","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"properties":{"CollectionTtl":{"description":"How long, [in seconds](https://www.twilio.com/docs/sync/limits#sync-payload-limits), before the Map Item's parent Sync Map expires (time-to-live) and is deleted.","type":"integer"},"Data":{"description":"A JSON string that represents an arbitrary, schema-less object that the Map Item stores. Can be up to 16 KiB in length."},"ItemTtl":{"description":"How long, [in seconds](https://www.twilio.com/docs/sync/limits#sync-payload-limits), before the Map Item expires (time-to-live) and is deleted.","type":"integer"},"Key":{"description":"The unique, user-defined key for the Map Item. Can be up to 320 characters long.","type":"string"},"Ttl":{"description":"An alias for `item_ttl`. If both parameters are provided, this value is ignored.","type":"integer"}},"required":["Key","Data"],"title":"CreateSyncMapItemRequest","type":"object"}}}},"responses":{"201":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/sync.v1.service.sync_map.sync_map_item"}}},"description":"Created"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncMapItem"],"x-maturity":["GA"]},"servers":[{"url":"https://sync.twilio.com"}],"x-twilio":{"defaultOutputProperties":["key","revision","created_by"],"mountName":"sync_map_items","parent":"/Services/{ServiceSid}/Maps/{Sid}","pathType":"list"}},"/v1/Services/{ServiceSid}/Maps/{MapSid}/Items/{Key}":{"delete":{"description":"","operationId":"DeleteSyncMapItem","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Sync Map Item resource to delete.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync Map with the Sync Map Item resource to delete. Can be the Sync Map resource's `sid` or its `unique_name`.","in":"path","name":"MapSid","required":true,"schema":{"type":"string"}},{"description":"The `key` value of the Sync Map Item resource to delete.","in":"path","name":"Key","required":true,"schema":{"type":"string"},"x-twilio":{"pii":{"deleteSla":30,"handling":"standard"}}},{"description":"If provided, applies this mutation if (and only if) the “revision” field of this [map item] matches the provided value. This matches the semantics of (and is implemented with) the HTTP [If-Match header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-Match).","in":"header","name":"If-Match","schema":{"type":"string"}}],"responses":{"204":{"description":"The resource was deleted successfully."}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncMapItem"],"x-maturity":["GA"]},"description":"Keys in a sync map","get":{"description":"","operationId":"FetchSyncMapItem","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Sync Map Item resource to fetch.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync Map with the Sync Map Item resource to fetch. Can be the Sync Map resource's `sid` or its `unique_name`.","in":"path","name":"MapSid","required":true,"schema":{"type":"string"}},{"description":"The `key` value of the Sync Map Item resource to fetch.","in":"path","name":"Key","required":true,"schema":{"type":"string"},"x-twilio":{"pii":{"deleteSla":30,"handling":"standard"}}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/sync.v1.service.sync_map.sync_map_item"}}},"description":"OK"}},"security":[{"accountSid_authToken":[]}],"tags":["SyncV1SyncMapItem"],"x-maturity":["GA"]},"post":{"description":"","operationId":"UpdateSyncMapItem","parameters":[{"description":"The SID of the [Sync Service](https://www.twilio.com/docs/sync/api/service) with the Sync Map Item resource to update.","in":"path","name":"ServiceSid","required":true,"schema":{"type":"string"}},{"description":"The SID of the Sync Map with the Sync Map Item resource to update. Can be the Sync Map resource's `sid` or its `unique_name`.","in":"path","name":"MapSid","required":true,"schema":{"type":"string"}},{"description":"The `key` value of the Sync Map Item resource to update. ","in":"path","name":"Key","required":true,"schema":{"type":"string"},"x-twilio":{"pii":{"deleteSla":30,"handling":"standard"}}},{"description":"If provided, applies this mutation if (and only if) the “revision” field of this [map item] matches the provided value. This matches the semantics of (and is implemented with) the HTTP [If-Match header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-Match).","in":"header","name":"If-Match","schema":{"type":"string"}}],"requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"properties":{"CollectionTtl":{"description":"How long, [in seconds](https://www.twilio.com/docs/sync/limits#sync-payload-limits), before the Map Item's parent Sync Map expires (time-to-live) and is deleted. This parameter can only be used when the Map Item's `data` or `ttl` is updated in the same request.","type":"integer"},"Data":{"description":"A JSON string that represents an arbitrary, schema-less object that the Map Item st