diff --git a/_plugins/docs.rb b/_plugins/docs.rb
index 3938b84..e9591b9 100644
--- a/_plugins/docs.rb
+++ b/_plugins/docs.rb
@@ -99,8 +99,9 @@ def form(form_name)
def scenario(scenario_name, endpoint)
method = endpoint&.fetch('methods')&.first
- scenario_select_by_endpoint_method(endpoint, method) ||
- scenario_select_by_name(scenario_name)
+ scenario_select_by_name(scenario_name) ||
+ scenario_select_by_endpoint_method(endpoint, method)
+
end
def scenario_select_by_endpoint_method(endpoint, method)
diff --git a/api/guides/secrets.md b/api/guides/secrets.md
index 573b4f9..f7d1116 100644
--- a/api/guides/secrets.md
+++ b/api/guides/secrets.md
@@ -4,7 +4,7 @@ title: Secrets
# Exchanging Secret credentials
-There are 4 types of secrets, `oauth2-client_credentials`, `oauth2-google`, `simple-http`, and `token`. The `credentials` object for each type has different required attributes.
+There are 5 types of secrets, `oauth2-client_credentials`, `oauth2-jwt`, `oauth2-google`, `simple-http`, and `token`. The `credentials` object for each type has different required attributes.
## `oauth2-client_credentials` credentials
@@ -32,6 +32,33 @@ If the exchange is successful, the `Secret` status attribute is set to `succeeed
In case of failure, the information is available in the `status_details` attribute from the `meta` object.
+## `oauth2-jwt` credentials
+
+### Credential attributes
+- `iss` - Text - Required - The JWT issuer.
+- `aud` - Text - Required - The JWT audience.
+- `sub` - Text - Optional - The JWT subject.
+- `ttl` - Integer - Required - The JWT ttl. The `exp` claim is computed using this value.
+- `alg` - Text - Required - The algorithm used to sign the JWT. Currently, only `RS256` is supported.
+- `custom_claims` - Object - Optional - Key/Value pairs of JWT custom claims.
+- `token_url` - Text - Optional - The token url of the oauth2 integration. If this value is not included, the JWT will ve used as `access_token`.
+- `private_key_id` - Text - Optional - The private key id. This value will be added to the `kid` JWT header.
+- `private_key` - Text - Required - The private key used to sign to JWT.
+- `refresh_offset` - Integer - Optional - The value, in seconds, used to offset the refresh operation. If not set, an implicit `1800` (30 minutes) will be used.
+- `options` - Object - Optional - Key/Value pairs of options for the oauth2 integration.
+
+When an `oauth2-jwt` Secret is created or updated, a JWT is created and signed using the private_key. If `token_url` is present, a `POST` is made to the `token_url` with the assertion parameter and JWT value (and possibly options), according to the `rfc7523` standard.
+If the authorization service responds with `200 OK` and a JSON response body, the body is parsed and `access_token` and `expires_in` are used.
+It is expected that the authorization service response body is compatible with the `oauth2` protocol.
+
+If `token_url` is not present, the generated JWT is used as `access_token` and the `ttl` as `expires_in`.
+
+If the exchange is successful, the `Secret` status attribute is set to `succeeeded` and `expires_at` and `refresh_at` are set.
+- `expires_at` is the current UTC time + `expires_in`.
+- `refresh_at` is the current UTC time + `expires_in` - `refresh_offset`
+
+In case of failure, the information is available in the `status_details` attribute from the `meta` object.
+
## `oauth2-google` credentials
### Credential attributes
diff --git a/api/reference/1.0/extension_packages/discontinue.md b/api/reference/1.0/extension_packages/discontinue.md
index ea061a2..d39c6d3 100644
--- a/api/reference/1.0/extension_packages/discontinue.md
+++ b/api/reference/1.0/extension_packages/discontinue.md
@@ -12,4 +12,4 @@ Discontinue an ExtensionPackage.
{% form extension_package.patch %}
-{% scenario extension_packages.update extension_packages.discontinue_an_extension_package 1 %}
+{% scenario extension_packages.update extension_packages.discontinue_an_extension_package %}
diff --git a/api/reference/1.0/secrets/_oauth2-client_credentials.html b/api/reference/1.0/secrets/_oauth2-client_credentials.html
deleted file mode 100644
index 9199586..0000000
--- a/api/reference/1.0/secrets/_oauth2-client_credentials.html
+++ /dev/null
@@ -1,131 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
POST /properties/:property_id/secrets
-
-
-
-
-
-
-
-
-
-
-
-
-
-curl https://reactor.adobe.io/properties/:property_id/secrets \
- -H "Accept: application/vnd.api+json;revision=1" \
- -H "Content-Type: application/vnd.api+json" \
- -H "Authorization: Bearer [TOKEN]" \
- -H "X-Api-Key: [KEY]" \
- -H "X-Gw-Ims-Org-Id: [ORG_ID]" \
- -X POST \
- -d \
- '
- {
- "data": {
- "attributes": {
- "name": "Example Secret",
- "type_of": "oauth2-client_credentials",
- "credentials": {
- "client_id": "test_client_id",
- "client_secret": "test_client_secret",
- "token_url": "https://athorization_url.test/token/authorize?required_param=value",
- "refresh_offset": 14400
- }
- },
- "relationships": {
- "environment": {
- "data": {
- "id": "EN04cdddbdb6574170bcac9f470f3b8087",
- "type": "environments"
- }
- }
- },
- "type": "secrets"
- }
- }'
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
201 Created
-
-{
- "data" : {
- "id" : "SE39fdf431f8ad4600bbc24ea73fcb1154" ,
- "type" : "secrets" ,
- "attributes" : {
- "created_at" : "2021-07-14T19:33:25.628Z" ,
- "updated_at" : "2021-07-14T19:33:25.628Z" ,
- "name" : "Example Secret" ,
- "type_of" : "oauth2-client_credentials" ,
- "activated_at" : null ,
- "expires_at" : null ,
- "refresh_at" : null ,
- "status" : "pending" ,
- "credentials" : {
- "client_id" : "test_client_id" ,
- "refresh_offset" : 14400 ,
- "token_url" : "https://athorization_url.test/token/authorize?required_param=value"
- }
- },
- "relationships" : {
- "property" : {
- "links" : {
- "related" : "https://reactor.adobe.io/secrets/SE39fdf431f8ad4600bbc24ea73fcb1154/property"
- },
- "data" : {
- "id" : "PR9eff664dc6014217b76939bb78b83976" ,
- "type" : "properties"
- }
- },
- "environment" : {
- "links" : {
- "related" : "https://reactor.adobe.io/secrets/SE39fdf431f8ad4600bbc24ea73fcb1154/environment"
- },
- "data" : {
- "id" : "EN04cdddbdb6574170bcac9f470f3b8087" ,
- "type" : "environments"
- },
- "meta" : {
- "stage" : "development"
- }
- },
- "notes" : {
- "links" : {
- "related" : "https://reactor.adobe.io/secrets/SE39fdf431f8ad4600bbc24ea73fcb1154/notes"
- }
- }
- },
- "links" : {
- "self" : "https://reactor.adobe.io/secrets/SE39fdf431f8ad4600bbc24ea73fcb1154" ,
- "property" : "https://reactor.adobe.io/secrets/SE39fdf431f8ad4600bbc24ea73fcb1154/property"
- }
- }
-}
-
-
-
-
-
-
diff --git a/api/reference/1.0/secrets/_oauth2-google.html b/api/reference/1.0/secrets/_oauth2-google.html
deleted file mode 100644
index 93513cd..0000000
--- a/api/reference/1.0/secrets/_oauth2-google.html
+++ /dev/null
@@ -1,130 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
POST /properties/:property_id/secrets
-
-
-
-
-
-
-
-
-
-
-
-
-
-curl https://reactor.adobe.io/properties/:property_id/secrets \
- -H "Accept: application/vnd.api+json;revision=1" \
- -H "Content-Type: application/vnd.api+json" \
- -H "Authorization: Bearer [TOKEN]" \
- -H "X-Api-Key: [KEY]" \
- -H "X-Gw-Ims-Org-Id: [ORG_ID]" \
- -X POST \
- -d \
- '
- {
- "data": {
- "attributes": {
- "name": "Example Google Secret",
- "type_of": "oauth2-google",
- "credentials": {
- "scopes": ["https://www.googleapis.com/auth/adwords"],
- }
- },
- "relationships": {
- "environment": {
- "data": {
- "id": "EN04cdddbdb6574170bcac9f470f3b8087",
- "type": "environments"
- }
- }
- },
- "type": "secrets"
- }
- }'
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
201 Created
-
-{
- "data" : {
- "id" : "SE39fdf431f8ad4600bbc24ea73fcb1154" ,
- "type" : "secrets" ,
- "attributes" : {
- "created_at" : "2021-07-14T19:33:25.628Z" ,
- "updated_at" : "2021-07-14T19:33:25.628Z" ,
- "name" : "Example Secret" ,
- "type_of" : "oauth2-client_credentials" ,
- "activated_at" : null ,
- "expires_at" : null ,
- "refresh_at" : null ,
- "status" : "pending" ,
- "credentials" : {
- "scopes" : ["https://www.googleapis.com/auth/adwords"] ,
- }
- },
- "relationships" : {
- "property" : {
- "links" : {
- "related" : "https://reactor.adobe.io/secrets/SE39fdf431f8ad4600bbc24ea73fcb1154/property"
- },
- "data" : {
- "id" : "PR9eff664dc6014217b76939bb78b83976" ,
- "type" : "properties"
- }
- },
- "environment" : {
- "links" : {
- "related" : "https://reactor.adobe.io/secrets/SE39fdf431f8ad4600bbc24ea73fcb1154/environment"
- },
- "data" : {
- "id" : "EN04cdddbdb6574170bcac9f470f3b8087" ,
- "type" : "environments"
- },
- "meta" : {
- "stage" : "development"
- }
- },
- "notes" : {
- "links" : {
- "related" : "https://reactor.adobe.io/secrets/SE39fdf431f8ad4600bbc24ea73fcb1154/notes"
- }
- }
- },
- "links" : {
- "self" : "https://reactor.adobe.io/secrets/SE39fdf431f8ad4600bbc24ea73fcb1154" ,
- "property" : "https://reactor.adobe.io/secrets/SE39fdf431f8ad4600bbc24ea73fcb1154/property"
- },
- "meta" : {
- "authorization_url" : "https://accounts.google.com/o/oauth2/auth?access_type=offline&approval_prompt=force&client_id=434635668552-0qvlu519fdjtnkvk8hu8c8dj8rg3723r.apps.googleusercontent.com&redirect_uri=https%3A%2F%2Freactor.adobe.io%2Foauth2%2Fcallback&response_type=code&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fadwords&state=state" ,
- "authorization_url_expires_at" : "2021-07-14T19:33:25.628Z"
- }
- }
-}
-
-
-
-
-
-
diff --git a/api/reference/1.0/secrets/_simple-http.html b/api/reference/1.0/secrets/_simple-http.html
deleted file mode 100644
index f706188..0000000
--- a/api/reference/1.0/secrets/_simple-http.html
+++ /dev/null
@@ -1,125 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
POST /properties/:property_id/secrets
-
-
-
-
-
-
-
-
-
-
-
-
-
-curl https://reactor.adobe.io/properties/:property_id/secrets \
- -H "Accept: application/vnd.api+json;revision=1" \
- -H "Content-Type: application/vnd.api+json" \
- -H "Authorization: Bearer [TOKEN]" \
- -H "X-Api-Key: [KEY]" \
- -H "X-Gw-Ims-Org-Id: [ORG_ID]" \
- -X POST \
- -d \
- '
- {
- "data": {
- "attributes": {
- "name": "Example Secret",
- "type_of": "simple-http",
- "credentials": {
- "username": "test_username",
- "password": "test_password"
- }
- },
- "relationships": {
- "environment": {
- "data": {
- "id": "EN04cdddbdb6574170bcac9f470f3b8087",
- "type": "environments"
- }
- }
- },
- "type": "secrets"
- }
- }'
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
201 Created
-
-{
- "data" : {
- "id" : "SE39fdf431f8ad4600bbc24ea73fcb1154" ,
- "type" : "secrets" ,
- "attributes" : {
- "created_at" : "2021-07-14T19:33:25.628Z" ,
- "updated_at" : "2021-07-14T19:33:25.628Z" ,
- "name" : "Example Secret" ,
- "type_of" : "simple-http" ,
- "activated_at" : null ,
- "expires_at" : null ,
- "refresh_at" : null ,
- "status" : "pending" ,
- "credentials" : {
- "username" : "test_username"
- }
- },
- "relationships" : {
- "property" : {
- "links" : {
- "related" : "https://reactor.adobe.io/secrets/SE39fdf431f8ad4600bbc24ea73fcb1154/property"
- },
- "data" : {
- "id" : "PR9eff664dc6014217b76939bb78b83976" ,
- "type" : "properties"
- }
- },
- "environment" : {
- "links" : {
- "related" : "https://reactor.adobe.io/secrets/SE39fdf431f8ad4600bbc24ea73fcb1154/environment"
- },
- "data" : {
- "id" : "EN04cdddbdb6574170bcac9f470f3b8087" ,
- "type" : "environments"
- },
- "meta" : {
- "stage" : "development"
- }
- },
- "notes" : {
- "links" : {
- "related" : "https://reactor.adobe.io/secrets/SE39fdf431f8ad4600bbc24ea73fcb1154/notes"
- }
- }
- },
- "links" : {
- "self" : "https://reactor.adobe.io/secrets/SE39fdf431f8ad4600bbc24ea73fcb1154" ,
- "property" : "https://reactor.adobe.io/secrets/SE39fdf431f8ad4600bbc24ea73fcb1154/property"
- }
- }
-}
-
-
-
-
diff --git a/api/reference/1.0/secrets/create.md b/api/reference/1.0/secrets/create.md
index 72e9865..c991adb 100644
--- a/api/reference/1.0/secrets/create.md
+++ b/api/reference/1.0/secrets/create.md
@@ -28,16 +28,20 @@ This is the status when the exchange request for the secret is not successful.
### "oauth2-client_credentials" `type_of`
-{% include_relative _oauth2-client_credentials.html %}
+{% scenario secrets.create secrets.create_a_oauth2_client_credentials_secret %}
+
+### "oauth2-jwt" `type_of`
+
+{% scenario secrets.create secrets.create_a_oauth2_jwt_secret %}
### "oauth2-google" `type_of`
-{% include_relative _oauth2-google.html %}
+{% scenario secrets.create secrets.create_a_oauth2_google_secret %}
### "simple-http" `type_of`
-{% include_relative _simple-http.html %}
+{% scenario secrets.create secrets.create_a_simple_http_secret %}
### "token" `type_of`
-{% scenario secrets.create %}
+{% scenario secrets.create secrets.create_a_secret %}
diff --git a/api_specification.json b/api_specification.json
index 5567aa2..ccecd94 100644
--- a/api_specification.json
+++ b/api_specification.json
@@ -1947,26 +1947,26 @@
},
"response": {
"data": {
- "id": "ACaa8046e2e3fc471da21235c2a3a4271a",
+ "id": "AC46b007be4a9941629dfc73155ea3a667",
"type": "app_configurations",
"attributes": {
"app_id": "com.adobe.test_app",
- "created_at": "2023-01-30T20:47:34.217Z",
+ "created_at": "2023-04-21T22:53:00.534Z",
"created_by_display_name": "George Ciltaru",
"created_by_email": "ciltaru@adobe.com",
"key_type": "p8_file",
"messaging_service": "apns",
"name": "Kessel Apns App",
"platform": "mobile",
- "sandbox_id": null,
- "updated_at": "2023-01-30T20:47:34.217Z",
+ "sandbox_name": null,
+ "updated_at": "2023-04-21T22:53:00.534Z",
"updated_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com"
},
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/company"
+ "related": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -1975,14 +1975,14 @@
},
"app_surfaces": {
"links": {
- "related": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/app_surfaces",
- "self": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/relationships/app_surfaces"
+ "related": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/app_surfaces",
+ "self": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/relationships/app_surfaces"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "self": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a"
+ "self": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667"
}
}
},
@@ -1997,26 +1997,26 @@
"request": null,
"response": {
"data": {
- "id": "ACaa8046e2e3fc471da21235c2a3a4271a",
+ "id": "AC46b007be4a9941629dfc73155ea3a667",
"type": "app_configurations",
"attributes": {
"app_id": "com.adobe.test_app",
- "created_at": "2023-01-30T20:47:34.217Z",
+ "created_at": "2023-04-21T22:53:00.534Z",
"created_by_display_name": "George Ciltaru",
"created_by_email": "ciltaru@adobe.com",
"key_type": "p8_file",
"messaging_service": "apns",
"name": "Kessel Apns App",
"platform": "mobile",
- "sandbox_id": null,
- "updated_at": "2023-01-30T20:47:34.217Z",
+ "sandbox_name": null,
+ "updated_at": "2023-04-21T22:53:00.534Z",
"updated_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com"
},
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/company"
+ "related": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -2025,14 +2025,14 @@
},
"app_surfaces": {
"links": {
- "related": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/app_surfaces",
- "self": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/relationships/app_surfaces"
+ "related": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/app_surfaces",
+ "self": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/relationships/app_surfaces"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "self": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a"
+ "self": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667"
}
}
},
@@ -2048,26 +2048,26 @@
"response": {
"data": [
{
- "id": "ACaa8046e2e3fc471da21235c2a3a4271a",
+ "id": "AC46b007be4a9941629dfc73155ea3a667",
"type": "app_configurations",
"attributes": {
"app_id": "com.adobe.test_app",
- "created_at": "2023-01-30T20:47:34.217Z",
+ "created_at": "2023-04-21T22:53:00.534Z",
"created_by_display_name": "George Ciltaru",
"created_by_email": "ciltaru@adobe.com",
"key_type": "p8_file",
"messaging_service": "apns",
"name": "Kessel Apns App",
"platform": "mobile",
- "sandbox_id": null,
- "updated_at": "2023-01-30T20:47:34.217Z",
+ "sandbox_name": null,
+ "updated_at": "2023-04-21T22:53:00.534Z",
"updated_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com"
},
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/company"
+ "related": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -2076,14 +2076,14 @@
},
"app_surfaces": {
"links": {
- "related": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/app_surfaces",
- "self": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/relationships/app_surfaces"
+ "related": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/app_surfaces",
+ "self": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/relationships/app_surfaces"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "self": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a"
+ "self": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667"
}
}
],
@@ -2110,32 +2110,32 @@
"attributes": {
"app_id": "com.adobe.test_app_2"
},
- "id": "ACaa8046e2e3fc471da21235c2a3a4271a",
+ "id": "AC46b007be4a9941629dfc73155ea3a667",
"type": "app_configurations"
}
},
"response": {
"data": {
- "id": "ACaa8046e2e3fc471da21235c2a3a4271a",
+ "id": "AC46b007be4a9941629dfc73155ea3a667",
"type": "app_configurations",
"attributes": {
"app_id": "com.adobe.test_app_2",
- "created_at": "2023-01-30T20:47:34.217Z",
+ "created_at": "2023-04-21T22:53:00.534Z",
"created_by_display_name": "George Ciltaru",
"created_by_email": "ciltaru@adobe.com",
"key_type": "p8_file",
"messaging_service": "apns",
"name": "Kessel Apns App",
"platform": "mobile",
- "sandbox_id": null,
- "updated_at": "2023-01-30T20:47:35.028Z",
+ "sandbox_name": null,
+ "updated_at": "2023-04-21T22:53:01.213Z",
"updated_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com"
},
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/company"
+ "related": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -2144,14 +2144,14 @@
},
"app_surfaces": {
"links": {
- "related": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/app_surfaces",
- "self": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/relationships/app_surfaces"
+ "related": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/app_surfaces",
+ "self": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/relationships/app_surfaces"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "self": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a"
+ "self": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667"
}
}
},
@@ -2177,11 +2177,11 @@
"response": {
"data": [
{
- "id": "AS1470f2d5d95d4c90abf5565a757379dc",
+ "id": "AS171978466e2d4cbeb03c276d2cc7ed2a",
"type": "app_surfaces",
"attributes": {
- "created_at": "2023-01-25T22:04:03.061Z",
- "updated_at": "2023-01-25T22:04:03.061Z",
+ "created_at": "2023-04-21T22:51:08.118Z",
+ "updated_at": "2023-04-21T22:51:08.118Z",
"name": "Kessel Surface (new name)",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
@@ -2191,7 +2191,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/app_surfaces/AS1470f2d5d95d4c90abf5565a757379dc/company"
+ "related": "https://reactor.adobe.io/app_surfaces/AS171978466e2d4cbeb03c276d2cc7ed2a/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -2200,14 +2200,14 @@
},
"app_configurations": {
"links": {
- "related": "https://reactor.adobe.io/app_surfaces/AS1470f2d5d95d4c90abf5565a757379dc/app_configurations",
- "self": "https://reactor.adobe.io/app_surfaces/AS1470f2d5d95d4c90abf5565a757379dc/relationships/app_configurations"
+ "related": "https://reactor.adobe.io/app_surfaces/AS171978466e2d4cbeb03c276d2cc7ed2a/app_configurations",
+ "self": "https://reactor.adobe.io/app_surfaces/AS171978466e2d4cbeb03c276d2cc7ed2a/relationships/app_configurations"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "self": "https://reactor.adobe.io/app_surfaces/AS1470f2d5d95d4c90abf5565a757379dc"
+ "self": "https://reactor.adobe.io/app_surfaces/AS171978466e2d4cbeb03c276d2cc7ed2a"
}
}
],
@@ -2234,12 +2234,12 @@
"data": [
{
"type": "app_surfaces",
- "id": "AS1470f2d5d95d4c90abf5565a757379dc"
+ "id": "AS171978466e2d4cbeb03c276d2cc7ed2a"
}
],
"links": {
- "related": "https://reactor.adobe.io/app_configurations/AC384df90891b148598128a5b0be529b6e/app_surfaces",
- "self": "https://reactor.adobe.io/app_configurations/AC384df90891b148598128a5b0be529b6e/relationships/app_surfaces"
+ "related": "https://reactor.adobe.io/app_configurations/AC7f38f663c0d14584a854711e24b80abf/app_surfaces",
+ "self": "https://reactor.adobe.io/app_configurations/AC7f38f663c0d14584a854711e24b80abf/relationships/app_surfaces"
}
},
"response_code": 200,
@@ -2253,7 +2253,7 @@
"request": {
"data": [
{
- "id": "AS1470f2d5d95d4c90abf5565a757379dc",
+ "id": "AS171978466e2d4cbeb03c276d2cc7ed2a",
"type": "app_surfaces"
}
]
@@ -2262,12 +2262,12 @@
"data": [
{
"type": "app_surfaces",
- "id": "AS1470f2d5d95d4c90abf5565a757379dc"
+ "id": "AS171978466e2d4cbeb03c276d2cc7ed2a"
}
],
"links": {
- "related": "https://reactor.adobe.io/app_configurations/AC384df90891b148598128a5b0be529b6e/app_surfaces",
- "self": "https://reactor.adobe.io/app_configurations/AC384df90891b148598128a5b0be529b6e/relationships/app_surfaces"
+ "related": "https://reactor.adobe.io/app_configurations/AC7f38f663c0d14584a854711e24b80abf/app_surfaces",
+ "self": "https://reactor.adobe.io/app_configurations/AC7f38f663c0d14584a854711e24b80abf/relationships/app_surfaces"
}
},
"response_code": 200,
@@ -2281,7 +2281,7 @@
"request": {
"data": [
{
- "id": "AS1470f2d5d95d4c90abf5565a757379dc",
+ "id": "AS171978466e2d4cbeb03c276d2cc7ed2a",
"type": "app_surfaces"
}
]
@@ -2290,12 +2290,12 @@
"data": [
{
"type": "app_surfaces",
- "id": "AS1470f2d5d95d4c90abf5565a757379dc"
+ "id": "AS171978466e2d4cbeb03c276d2cc7ed2a"
}
],
"links": {
- "related": "https://reactor.adobe.io/app_configurations/AC384df90891b148598128a5b0be529b6e/app_surfaces",
- "self": "https://reactor.adobe.io/app_configurations/AC384df90891b148598128a5b0be529b6e/relationships/app_surfaces"
+ "related": "https://reactor.adobe.io/app_configurations/AC7f38f663c0d14584a854711e24b80abf/app_surfaces",
+ "self": "https://reactor.adobe.io/app_configurations/AC7f38f663c0d14584a854711e24b80abf/relationships/app_surfaces"
}
},
"response_code": 200,
@@ -2309,7 +2309,7 @@
"request": {
"data": [
{
- "id": "AS1470f2d5d95d4c90abf5565a757379dc",
+ "id": "AS171978466e2d4cbeb03c276d2cc7ed2a",
"type": "app_surfaces"
}
]
@@ -2319,8 +2319,8 @@
],
"links": {
- "related": "https://reactor.adobe.io/app_configurations/AC384df90891b148598128a5b0be529b6e/app_surfaces",
- "self": "https://reactor.adobe.io/app_configurations/AC384df90891b148598128a5b0be529b6e/relationships/app_surfaces"
+ "related": "https://reactor.adobe.io/app_configurations/AC7f38f663c0d14584a854711e24b80abf/app_surfaces",
+ "self": "https://reactor.adobe.io/app_configurations/AC7f38f663c0d14584a854711e24b80abf/relationships/app_surfaces"
}
},
"response_code": 200,
@@ -2341,11 +2341,11 @@
},
"response": {
"data": {
- "id": "AS9dde84e9b9c14738a8077ab591a3f7a6",
+ "id": "AS7402e40471fe4ec4adbb741ad8efc109",
"type": "app_surfaces",
"attributes": {
- "created_at": "2023-01-30T20:47:36.933Z",
- "updated_at": "2023-01-30T20:47:36.933Z",
+ "created_at": "2023-04-21T22:53:04.237Z",
+ "updated_at": "2023-04-21T22:53:04.237Z",
"name": "Kessel Surface",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
@@ -2355,7 +2355,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/app_surfaces/AS9dde84e9b9c14738a8077ab591a3f7a6/company"
+ "related": "https://reactor.adobe.io/app_surfaces/AS7402e40471fe4ec4adbb741ad8efc109/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -2364,14 +2364,14 @@
},
"app_configurations": {
"links": {
- "related": "https://reactor.adobe.io/app_surfaces/AS9dde84e9b9c14738a8077ab591a3f7a6/app_configurations",
- "self": "https://reactor.adobe.io/app_surfaces/AS9dde84e9b9c14738a8077ab591a3f7a6/relationships/app_configurations"
+ "related": "https://reactor.adobe.io/app_surfaces/AS7402e40471fe4ec4adbb741ad8efc109/app_configurations",
+ "self": "https://reactor.adobe.io/app_surfaces/AS7402e40471fe4ec4adbb741ad8efc109/relationships/app_configurations"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "self": "https://reactor.adobe.io/app_surfaces/AS9dde84e9b9c14738a8077ab591a3f7a6"
+ "self": "https://reactor.adobe.io/app_surfaces/AS7402e40471fe4ec4adbb741ad8efc109"
}
}
},
@@ -2386,11 +2386,11 @@
"request": null,
"response": {
"data": {
- "id": "ASae7750a226c14f4c8e92764901e07104",
+ "id": "AS45bb4d9d00b445daba1e4d8bc265c3d4",
"type": "app_surfaces",
"attributes": {
- "created_at": "2023-01-30T20:47:37.111Z",
- "updated_at": "2023-01-30T20:47:37.111Z",
+ "created_at": "2023-04-21T22:53:04.510Z",
+ "updated_at": "2023-04-21T22:53:04.510Z",
"name": "Kessel Surface (new name)",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
@@ -2400,7 +2400,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104/company"
+ "related": "https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -2409,14 +2409,14 @@
},
"app_configurations": {
"links": {
- "related": "https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104/app_configurations",
- "self": "https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104/relationships/app_configurations"
+ "related": "https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4/app_configurations",
+ "self": "https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4/relationships/app_configurations"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "self": "https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104"
+ "self": "https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4"
}
}
},
@@ -2432,11 +2432,11 @@
"response": {
"data": [
{
- "id": "AS9dde84e9b9c14738a8077ab591a3f7a6",
+ "id": "AS7402e40471fe4ec4adbb741ad8efc109",
"type": "app_surfaces",
"attributes": {
- "created_at": "2023-01-30T20:47:36.933Z",
- "updated_at": "2023-01-30T20:47:36.933Z",
+ "created_at": "2023-04-21T22:53:04.237Z",
+ "updated_at": "2023-04-21T22:53:04.237Z",
"name": "Kessel Surface",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
@@ -2446,7 +2446,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/app_surfaces/AS9dde84e9b9c14738a8077ab591a3f7a6/company"
+ "related": "https://reactor.adobe.io/app_surfaces/AS7402e40471fe4ec4adbb741ad8efc109/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -2455,22 +2455,22 @@
},
"app_configurations": {
"links": {
- "related": "https://reactor.adobe.io/app_surfaces/AS9dde84e9b9c14738a8077ab591a3f7a6/app_configurations",
- "self": "https://reactor.adobe.io/app_surfaces/AS9dde84e9b9c14738a8077ab591a3f7a6/relationships/app_configurations"
+ "related": "https://reactor.adobe.io/app_surfaces/AS7402e40471fe4ec4adbb741ad8efc109/app_configurations",
+ "self": "https://reactor.adobe.io/app_surfaces/AS7402e40471fe4ec4adbb741ad8efc109/relationships/app_configurations"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "self": "https://reactor.adobe.io/app_surfaces/AS9dde84e9b9c14738a8077ab591a3f7a6"
+ "self": "https://reactor.adobe.io/app_surfaces/AS7402e40471fe4ec4adbb741ad8efc109"
}
},
{
- "id": "ASae7750a226c14f4c8e92764901e07104",
+ "id": "AS45bb4d9d00b445daba1e4d8bc265c3d4",
"type": "app_surfaces",
"attributes": {
- "created_at": "2023-01-30T20:47:37.111Z",
- "updated_at": "2023-01-30T20:47:37.111Z",
+ "created_at": "2023-04-21T22:53:04.510Z",
+ "updated_at": "2023-04-21T22:53:04.510Z",
"name": "Kessel Surface (new name)",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
@@ -2480,7 +2480,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104/company"
+ "related": "https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -2489,14 +2489,14 @@
},
"app_configurations": {
"links": {
- "related": "https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104/app_configurations",
- "self": "https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104/relationships/app_configurations"
+ "related": "https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4/app_configurations",
+ "self": "https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4/relationships/app_configurations"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "self": "https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104"
+ "self": "https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4"
}
}
],
@@ -2523,17 +2523,17 @@
"attributes": {
"name": "Kessel Surface (new name)"
},
- "id": "ASae7750a226c14f4c8e92764901e07104",
+ "id": "AS45bb4d9d00b445daba1e4d8bc265c3d4",
"type": "app_surfaces"
}
},
"response": {
"data": {
- "id": "ASae7750a226c14f4c8e92764901e07104",
+ "id": "AS45bb4d9d00b445daba1e4d8bc265c3d4",
"type": "app_surfaces",
"attributes": {
- "created_at": "2023-01-30T20:47:37.111Z",
- "updated_at": "2023-01-30T20:47:37.111Z",
+ "created_at": "2023-04-21T22:53:04.510Z",
+ "updated_at": "2023-04-21T22:53:04.510Z",
"name": "Kessel Surface (new name)",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
@@ -2543,7 +2543,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104/company"
+ "related": "https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -2552,14 +2552,14 @@
},
"app_configurations": {
"links": {
- "related": "https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104/app_configurations",
- "self": "https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104/relationships/app_configurations"
+ "related": "https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4/app_configurations",
+ "self": "https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4/relationships/app_configurations"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "self": "https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104"
+ "self": "https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4"
}
}
},
@@ -2585,26 +2585,26 @@
"response": {
"data": [
{
- "id": "AC384df90891b148598128a5b0be529b6e",
+ "id": "AC7f38f663c0d14584a854711e24b80abf",
"type": "app_configurations",
"attributes": {
"app_id": "com.adobe.test_app",
- "created_at": "2023-01-30T20:47:35.570Z",
+ "created_at": "2023-04-21T22:53:01.707Z",
"created_by_display_name": "George Ciltaru",
"created_by_email": "ciltaru@adobe.com",
"key_type": "p8_file",
"messaging_service": "apns",
"name": "Kessel Apns App",
"platform": "mobile",
- "sandbox_id": null,
- "updated_at": "2023-01-30T20:47:35.570Z",
+ "sandbox_name": null,
+ "updated_at": "2023-04-21T22:53:01.707Z",
"updated_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com"
},
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/app_configurations/AC384df90891b148598128a5b0be529b6e/company"
+ "related": "https://reactor.adobe.io/app_configurations/AC7f38f663c0d14584a854711e24b80abf/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -2613,14 +2613,14 @@
},
"app_surfaces": {
"links": {
- "related": "https://reactor.adobe.io/app_configurations/AC384df90891b148598128a5b0be529b6e/app_surfaces",
- "self": "https://reactor.adobe.io/app_configurations/AC384df90891b148598128a5b0be529b6e/relationships/app_surfaces"
+ "related": "https://reactor.adobe.io/app_configurations/AC7f38f663c0d14584a854711e24b80abf/app_surfaces",
+ "self": "https://reactor.adobe.io/app_configurations/AC7f38f663c0d14584a854711e24b80abf/relationships/app_surfaces"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "self": "https://reactor.adobe.io/app_configurations/AC384df90891b148598128a5b0be529b6e"
+ "self": "https://reactor.adobe.io/app_configurations/AC7f38f663c0d14584a854711e24b80abf"
}
}
],
@@ -2647,12 +2647,12 @@
"data": [
{
"type": "app_configurations",
- "id": "AC384df90891b148598128a5b0be529b6e"
+ "id": "AC7f38f663c0d14584a854711e24b80abf"
}
],
"links": {
- "related": "https://reactor.adobe.io/app_surfaces/ASc7306afa8f724d7db4ea3c15a3bfbb37/app_configurations",
- "self": "https://reactor.adobe.io/app_surfaces/ASc7306afa8f724d7db4ea3c15a3bfbb37/relationships/app_configurations"
+ "related": "https://reactor.adobe.io/app_surfaces/AS874dd4a1fe0e4c958f9abbeca35a8c32/app_configurations",
+ "self": "https://reactor.adobe.io/app_surfaces/AS874dd4a1fe0e4c958f9abbeca35a8c32/relationships/app_configurations"
}
},
"response_code": 200,
@@ -2666,7 +2666,7 @@
"request": {
"data": [
{
- "id": "AC384df90891b148598128a5b0be529b6e",
+ "id": "AC7f38f663c0d14584a854711e24b80abf",
"type": "app_configurations"
}
]
@@ -2675,12 +2675,12 @@
"data": [
{
"type": "app_configurations",
- "id": "AC384df90891b148598128a5b0be529b6e"
+ "id": "AC7f38f663c0d14584a854711e24b80abf"
}
],
"links": {
- "related": "https://reactor.adobe.io/app_surfaces/ASc7306afa8f724d7db4ea3c15a3bfbb37/app_configurations",
- "self": "https://reactor.adobe.io/app_surfaces/ASc7306afa8f724d7db4ea3c15a3bfbb37/relationships/app_configurations"
+ "related": "https://reactor.adobe.io/app_surfaces/AS874dd4a1fe0e4c958f9abbeca35a8c32/app_configurations",
+ "self": "https://reactor.adobe.io/app_surfaces/AS874dd4a1fe0e4c958f9abbeca35a8c32/relationships/app_configurations"
}
},
"response_code": 200,
@@ -2694,7 +2694,7 @@
"request": {
"data": [
{
- "id": "ACea568a593cdb4fc980fd92a19400c06d",
+ "id": "AC0b8afdc2004f4265bea03821d0160749",
"type": "app_configurations"
}
]
@@ -2703,12 +2703,12 @@
"data": [
{
"type": "app_configurations",
- "id": "ACea568a593cdb4fc980fd92a19400c06d"
+ "id": "AC0b8afdc2004f4265bea03821d0160749"
}
],
"links": {
- "related": "https://reactor.adobe.io/app_surfaces/ASc7306afa8f724d7db4ea3c15a3bfbb37/app_configurations",
- "self": "https://reactor.adobe.io/app_surfaces/ASc7306afa8f724d7db4ea3c15a3bfbb37/relationships/app_configurations"
+ "related": "https://reactor.adobe.io/app_surfaces/AS874dd4a1fe0e4c958f9abbeca35a8c32/app_configurations",
+ "self": "https://reactor.adobe.io/app_surfaces/AS874dd4a1fe0e4c958f9abbeca35a8c32/relationships/app_configurations"
}
},
"response_code": 200,
@@ -2722,7 +2722,7 @@
"request": {
"data": [
{
- "id": "AC384df90891b148598128a5b0be529b6e",
+ "id": "AC7f38f663c0d14584a854711e24b80abf",
"type": "app_configurations"
}
]
@@ -2732,8 +2732,8 @@
],
"links": {
- "related": "https://reactor.adobe.io/app_surfaces/ASc7306afa8f724d7db4ea3c15a3bfbb37/app_configurations",
- "self": "https://reactor.adobe.io/app_surfaces/ASc7306afa8f724d7db4ea3c15a3bfbb37/relationships/app_configurations"
+ "related": "https://reactor.adobe.io/app_surfaces/AS874dd4a1fe0e4c958f9abbeca35a8c32/app_configurations",
+ "self": "https://reactor.adobe.io/app_surfaces/AS874dd4a1fe0e4c958f9abbeca35a8c32/relationships/app_configurations"
}
},
"response_code": 200,
@@ -2748,57 +2748,57 @@
"response": {
"data": [
{
- "id": "AE27f2bea6cc8b4605a6e3cb0c5607cacd",
+ "id": "AEcc46f1031ea64f5294c5c505d0a95248",
"type": "audit_events",
"attributes": {
"attributed_to_display_name": "George Ciltaru",
"attributed_to_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:47:39.236Z",
+ "created_at": "2023-04-21T22:53:07.040Z",
"display_name": "Core",
"type_of": "extension.created",
- "updated_at": "2023-01-30T20:47:39.236Z",
- "entity": "{\"data\":{\"id\":\"EXe1edf3fa5007439d9d6d7630c8abf93c\",\"meta\":{\"latest_revision_number\":1},\"type\":\"extensions\",\"links\":{\"self\":\"https://reactor.adobe.io/extensions/EXe1edf3fa5007439d9d6d7630c8abf93c\",\"origin\":\"https://reactor.adobe.io/extensions/EXe1edf3fa5007439d9d6d7630c8abf93c\",\"property\":\"https://reactor.adobe.io/properties/PR3e4e4211f0064950895694acfba96ad8\",\"extension_package\":\"https://reactor.adobe.io/extension_packages/EP8451c63b3239426892f8cca940349990\",\"latest_extension_package\":\"https://reactor.adobe.io/extension_packages/EP8451c63b3239426892f8cca940349990\"},\"attributes\":{\"name\":\"core\",\"dirty\":false,\"enabled\":true,\"version\":\"3.3.0\",\"settings\":\"{}\",\"published\":false,\"created_at\":\"2023-01-30T20:47:39.169Z\",\"deleted_at\":null,\"updated_at\":\"2023-01-30T20:47:39.169Z\",\"display_name\":\"Core\",\"published_at\":null,\"review_status\":\"unsubmitted\",\"revision_number\":0,\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"delegate_descriptor_id\":\"core::extensionConfiguration::config\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"notes\":{\"links\":{\"related\":\"https://reactor.adobe.io/extensions/EXe1edf3fa5007439d9d6d7630c8abf93c/notes\"}},\"origin\":{\"data\":{\"id\":\"EXe1edf3fa5007439d9d6d7630c8abf93c\",\"type\":\"extensions\"},\"links\":{\"related\":\"https://reactor.adobe.io/extensions/EXe1edf3fa5007439d9d6d7630c8abf93c/origin\"}},\"property\":{\"data\":{\"id\":\"PR3e4e4211f0064950895694acfba96ad8\",\"type\":\"properties\"},\"links\":{\"related\":\"https://reactor.adobe.io/extensions/EXe1edf3fa5007439d9d6d7630c8abf93c/property\"}},\"libraries\":{\"links\":{\"related\":\"https://reactor.adobe.io/extensions/EXe1edf3fa5007439d9d6d7630c8abf93c/libraries\"}},\"revisions\":{\"links\":{\"related\":\"https://reactor.adobe.io/extensions/EXe1edf3fa5007439d9d6d7630c8abf93c/revisions\"}},\"extension_package\":{\"data\":{\"id\":\"EP8451c63b3239426892f8cca940349990\",\"type\":\"extension_packages\"},\"links\":{\"related\":\"https://reactor.adobe.io/extensions/EXe1edf3fa5007439d9d6d7630c8abf93c/extension_package\"}},\"updated_with_extension_package\":{\"data\":{\"id\":\"EP8451c63b3239426892f8cca940349990\",\"type\":\"extension_packages\"},\"links\":{\"related\":\"https://reactor.adobe.io/extensions/EXe1edf3fa5007439d9d6d7630c8abf93c/updated_with_extension_package\"}}}}}"
+ "updated_at": "2023-04-21T22:53:07.040Z",
+ "entity": "{\"data\":{\"id\":\"EX6c6cae5e8fdf4837a386c9ec2f76351b\",\"meta\":{\"latest_revision_number\":1},\"type\":\"extensions\",\"links\":{\"self\":\"https://reactor.adobe.io/extensions/EX6c6cae5e8fdf4837a386c9ec2f76351b\",\"origin\":\"https://reactor.adobe.io/extensions/EX6c6cae5e8fdf4837a386c9ec2f76351b\",\"property\":\"https://reactor.adobe.io/properties/PR275dbf0fa1ca4a31bcfd05227e0bcf57\",\"extension_package\":\"https://reactor.adobe.io/extension_packages/EP8451c63b3239426892f8cca940349990\",\"latest_extension_package\":\"https://reactor.adobe.io/extension_packages/EP8451c63b3239426892f8cca940349990\"},\"attributes\":{\"name\":\"core\",\"dirty\":false,\"enabled\":true,\"version\":\"3.3.0\",\"settings\":\"{}\",\"published\":false,\"created_at\":\"2023-04-21T22:53:07.000Z\",\"deleted_at\":null,\"updated_at\":\"2023-04-21T22:53:07.000Z\",\"display_name\":\"Core\",\"published_at\":null,\"review_status\":\"unsubmitted\",\"revision_number\":0,\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"delegate_descriptor_id\":\"core::extensionConfiguration::config\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"notes\":{\"links\":{\"related\":\"https://reactor.adobe.io/extensions/EX6c6cae5e8fdf4837a386c9ec2f76351b/notes\"}},\"origin\":{\"data\":{\"id\":\"EX6c6cae5e8fdf4837a386c9ec2f76351b\",\"type\":\"extensions\"},\"links\":{\"related\":\"https://reactor.adobe.io/extensions/EX6c6cae5e8fdf4837a386c9ec2f76351b/origin\"}},\"property\":{\"data\":{\"id\":\"PR275dbf0fa1ca4a31bcfd05227e0bcf57\",\"type\":\"properties\"},\"links\":{\"related\":\"https://reactor.adobe.io/extensions/EX6c6cae5e8fdf4837a386c9ec2f76351b/property\"}},\"libraries\":{\"links\":{\"related\":\"https://reactor.adobe.io/extensions/EX6c6cae5e8fdf4837a386c9ec2f76351b/libraries\"}},\"revisions\":{\"links\":{\"related\":\"https://reactor.adobe.io/extensions/EX6c6cae5e8fdf4837a386c9ec2f76351b/revisions\"}},\"extension_package\":{\"data\":{\"id\":\"EP8451c63b3239426892f8cca940349990\",\"type\":\"extension_packages\"},\"links\":{\"related\":\"https://reactor.adobe.io/extensions/EX6c6cae5e8fdf4837a386c9ec2f76351b/extension_package\"}},\"updated_with_extension_package\":{\"data\":{\"id\":\"EP8451c63b3239426892f8cca940349990\",\"type\":\"extension_packages\"},\"links\":{\"related\":\"https://reactor.adobe.io/extensions/EX6c6cae5e8fdf4837a386c9ec2f76351b/updated_with_extension_package\"}}}}}"
},
"relationships": {
"property": {
"links": {
- "related": "https://reactor.adobe.io/audit_events/AE27f2bea6cc8b4605a6e3cb0c5607cacd/property"
+ "related": "https://reactor.adobe.io/audit_events/AEcc46f1031ea64f5294c5c505d0a95248/property"
},
"data": {
- "id": "PR3e4e4211f0064950895694acfba96ad8",
+ "id": "PR275dbf0fa1ca4a31bcfd05227e0bcf57",
"type": "properties"
}
},
"entity": {
"links": {
- "related": "https://reactor.adobe.io/audit_events/AE27f2bea6cc8b4605a6e3cb0c5607cacd/extension"
+ "related": "https://reactor.adobe.io/audit_events/AEcc46f1031ea64f5294c5c505d0a95248/extension"
},
"data": {
"type": "extensions",
- "id": "EXe1edf3fa5007439d9d6d7630c8abf93c"
+ "id": "EX6c6cae5e8fdf4837a386c9ec2f76351b"
}
}
},
"links": {
- "entity": "https://reactor.adobe.io/extensions/EXe1edf3fa5007439d9d6d7630c8abf93c",
- "property": "https://reactor.adobe.io/properties/PR3e4e4211f0064950895694acfba96ad8",
- "self": "https://reactor.adobe.io/audit_events/AE27f2bea6cc8b4605a6e3cb0c5607cacd"
+ "entity": "https://reactor.adobe.io/extensions/EX6c6cae5e8fdf4837a386c9ec2f76351b",
+ "property": "https://reactor.adobe.io/properties/PR275dbf0fa1ca4a31bcfd05227e0bcf57",
+ "self": "https://reactor.adobe.io/audit_events/AEcc46f1031ea64f5294c5c505d0a95248"
},
"meta": {
"property_name": "Kessel Example Property"
}
},
{
- "id": "AE9c534c084ff9467e9b51aa744ba1bfcd",
+ "id": "AE0f4721c4632c4e44bc271db9e60a2aef",
"type": "audit_events",
"attributes": {
"attributed_to_display_name": "George Ciltaru",
"attributed_to_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:47:38.665Z",
+ "created_at": "2023-04-21T22:53:06.440Z",
"display_name": "Kessel Fcm App",
"type_of": "app_configuration.created",
- "updated_at": "2023-01-30T20:47:38.665Z",
- "entity": "{\"data\":{\"id\":\"ACea568a593cdb4fc980fd92a19400c06d\",\"type\":\"app_configurations\",\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/ACea568a593cdb4fc980fd92a19400c06d\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Fcm App\",\"app_id\":\"android_app_id\",\"key_type\":\"fcm_v1\",\"platform\":\"mobile\",\"created_at\":\"2023-01-30T20:47:38.650Z\",\"sandbox_id\":null,\"updated_at\":\"2023-01-30T20:47:38.650Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"messaging_service\":\"fcm\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_configurations/ACea568a593cdb4fc980fd92a19400c06d/company\"}},\"app_surfaces\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/ACea568a593cdb4fc980fd92a19400c06d/relationships/app_surfaces\",\"related\":\"https://reactor.adobe.io/app_configurations/ACea568a593cdb4fc980fd92a19400c06d/app_surfaces\"}}}}}"
+ "updated_at": "2023-04-21T22:53:06.440Z",
+ "entity": "{\"data\":{\"id\":\"AC0b8afdc2004f4265bea03821d0160749\",\"type\":\"app_configurations\",\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/AC0b8afdc2004f4265bea03821d0160749\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Fcm App\",\"app_id\":\"android_app_id\",\"key_type\":\"fcm_v1\",\"platform\":\"mobile\",\"created_at\":\"2023-04-21T22:53:06.422Z\",\"updated_at\":\"2023-04-21T22:53:06.422Z\",\"sandbox_name\":null,\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"messaging_service\":\"fcm\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_configurations/AC0b8afdc2004f4265bea03821d0160749/company\"}},\"app_surfaces\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/AC0b8afdc2004f4265bea03821d0160749/relationships/app_surfaces\",\"related\":\"https://reactor.adobe.io/app_configurations/AC0b8afdc2004f4265bea03821d0160749/app_surfaces\"}}}}}"
},
"relationships": {
"property": {
@@ -2813,27 +2813,27 @@
},
"data": {
"type": "app_configurations",
- "id": "ACea568a593cdb4fc980fd92a19400c06d"
+ "id": "AC0b8afdc2004f4265bea03821d0160749"
}
}
},
"links": {
- "entity": "https://reactor.adobe.io/app_configurations/ACea568a593cdb4fc980fd92a19400c06d",
+ "entity": "https://reactor.adobe.io/app_configurations/AC0b8afdc2004f4265bea03821d0160749",
"property": null,
- "self": "https://reactor.adobe.io/audit_events/AE9c534c084ff9467e9b51aa744ba1bfcd"
+ "self": "https://reactor.adobe.io/audit_events/AE0f4721c4632c4e44bc271db9e60a2aef"
}
},
{
- "id": "AE72e991076d1a419caee90641c51a69d6",
+ "id": "AEb70e1ae3132b48aba5cd382b866a4169",
"type": "audit_events",
"attributes": {
"attributed_to_display_name": "George Ciltaru",
"attributed_to_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:47:37.825Z",
+ "created_at": "2023-04-21T22:53:05.489Z",
"display_name": "Kessel Surface (new name)",
"type_of": "app_surface.created",
- "updated_at": "2023-01-30T20:47:37.825Z",
- "entity": "{\"data\":{\"id\":\"ASc7306afa8f724d7db4ea3c15a3bfbb37\",\"type\":\"app_surfaces\",\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/ASc7306afa8f724d7db4ea3c15a3bfbb37\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Surface (new name)\",\"created_at\":\"2023-01-30T20:47:37.812Z\",\"updated_at\":\"2023-01-30T20:47:37.812Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_surfaces/ASc7306afa8f724d7db4ea3c15a3bfbb37/company\"}},\"app_configurations\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/ASc7306afa8f724d7db4ea3c15a3bfbb37/relationships/app_configurations\",\"related\":\"https://reactor.adobe.io/app_surfaces/ASc7306afa8f724d7db4ea3c15a3bfbb37/app_configurations\"}}}}}"
+ "updated_at": "2023-04-21T22:53:05.489Z",
+ "entity": "{\"data\":{\"id\":\"AS874dd4a1fe0e4c958f9abbeca35a8c32\",\"type\":\"app_surfaces\",\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS874dd4a1fe0e4c958f9abbeca35a8c32\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Surface (new name)\",\"created_at\":\"2023-04-21T22:53:05.468Z\",\"updated_at\":\"2023-04-21T22:53:05.468Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_surfaces/AS874dd4a1fe0e4c958f9abbeca35a8c32/company\"}},\"app_configurations\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS874dd4a1fe0e4c958f9abbeca35a8c32/relationships/app_configurations\",\"related\":\"https://reactor.adobe.io/app_surfaces/AS874dd4a1fe0e4c958f9abbeca35a8c32/app_configurations\"}}}}}"
},
"relationships": {
"property": {
@@ -2848,27 +2848,27 @@
},
"data": {
"type": "app_surfaces",
- "id": "ASc7306afa8f724d7db4ea3c15a3bfbb37"
+ "id": "AS874dd4a1fe0e4c958f9abbeca35a8c32"
}
}
},
"links": {
- "entity": "https://reactor.adobe.io/app_surfaces/ASc7306afa8f724d7db4ea3c15a3bfbb37",
+ "entity": "https://reactor.adobe.io/app_surfaces/AS874dd4a1fe0e4c958f9abbeca35a8c32",
"property": null,
- "self": "https://reactor.adobe.io/audit_events/AE72e991076d1a419caee90641c51a69d6"
+ "self": "https://reactor.adobe.io/audit_events/AEb70e1ae3132b48aba5cd382b866a4169"
}
},
{
- "id": "AEe910d14cd6b140a8876410ad7f478575",
+ "id": "AE4aa068f34cdd43e6896c4a351f0f59e3",
"type": "audit_events",
"attributes": {
"attributed_to_display_name": "George Ciltaru",
"attributed_to_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:47:37.612Z",
+ "created_at": "2023-04-21T22:53:05.274Z",
"display_name": "Kessel Surface (new name)",
"type_of": "app_surface.deleted",
- "updated_at": "2023-01-30T20:47:37.612Z",
- "entity": "{\"data\":{\"id\":\"ASae7750a226c14f4c8e92764901e07104\",\"type\":\"app_surfaces\",\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Surface (new name)\",\"created_at\":\"2023-01-30T20:47:37.111Z\",\"updated_at\":\"2023-01-30T20:47:37.111Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104/company\"}},\"app_configurations\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104/relationships/app_configurations\",\"related\":\"https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104/app_configurations\"}}}}}"
+ "updated_at": "2023-04-21T22:53:05.274Z",
+ "entity": "{\"data\":{\"id\":\"AS45bb4d9d00b445daba1e4d8bc265c3d4\",\"type\":\"app_surfaces\",\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Surface (new name)\",\"created_at\":\"2023-04-21T22:53:04.510Z\",\"updated_at\":\"2023-04-21T22:53:04.510Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4/company\"}},\"app_configurations\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4/relationships/app_configurations\",\"related\":\"https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4/app_configurations\"}}}}}"
},
"relationships": {
"property": {
@@ -2883,27 +2883,27 @@
},
"data": {
"type": "app_surfaces",
- "id": "ASae7750a226c14f4c8e92764901e07104"
+ "id": "AS45bb4d9d00b445daba1e4d8bc265c3d4"
}
}
},
"links": {
- "entity": "https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104",
+ "entity": "https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4",
"property": null,
- "self": "https://reactor.adobe.io/audit_events/AEe910d14cd6b140a8876410ad7f478575"
+ "self": "https://reactor.adobe.io/audit_events/AE4aa068f34cdd43e6896c4a351f0f59e3"
}
},
{
- "id": "AE67b88ffdd45644f0aa165d49978cb163",
+ "id": "AE157a7c73064940e3af4eaf3579ace172",
"type": "audit_events",
"attributes": {
"attributed_to_display_name": "George Ciltaru",
"attributed_to_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:47:37.469Z",
+ "created_at": "2023-04-21T22:53:05.080Z",
"display_name": "Kessel Surface (new name)",
"type_of": "app_surface.updated",
- "updated_at": "2023-01-30T20:47:37.469Z",
- "entity": "{\"data\":{\"id\":\"ASae7750a226c14f4c8e92764901e07104\",\"type\":\"app_surfaces\",\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Surface (new name)\",\"created_at\":\"2023-01-30T20:47:37.111Z\",\"updated_at\":\"2023-01-30T20:47:37.111Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104/company\"}},\"app_configurations\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104/relationships/app_configurations\",\"related\":\"https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104/app_configurations\"}}}}}"
+ "updated_at": "2023-04-21T22:53:05.080Z",
+ "entity": "{\"data\":{\"id\":\"AS45bb4d9d00b445daba1e4d8bc265c3d4\",\"type\":\"app_surfaces\",\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Surface (new name)\",\"created_at\":\"2023-04-21T22:53:04.510Z\",\"updated_at\":\"2023-04-21T22:53:04.510Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4/company\"}},\"app_configurations\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4/relationships/app_configurations\",\"related\":\"https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4/app_configurations\"}}}}}"
},
"relationships": {
"property": {
@@ -2918,27 +2918,27 @@
},
"data": {
"type": "app_surfaces",
- "id": "ASae7750a226c14f4c8e92764901e07104"
+ "id": "AS45bb4d9d00b445daba1e4d8bc265c3d4"
}
}
},
"links": {
- "entity": "https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104",
+ "entity": "https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4",
"property": null,
- "self": "https://reactor.adobe.io/audit_events/AE67b88ffdd45644f0aa165d49978cb163"
+ "self": "https://reactor.adobe.io/audit_events/AE157a7c73064940e3af4eaf3579ace172"
}
},
{
- "id": "AE6939270c84db42578c76a59ddeee2f47",
+ "id": "AE78e88862e89040178253898e2378a71c",
"type": "audit_events",
"attributes": {
"attributed_to_display_name": "George Ciltaru",
"attributed_to_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:47:37.128Z",
+ "created_at": "2023-04-21T22:53:04.530Z",
"display_name": "Kessel Surface (new name)",
"type_of": "app_surface.created",
- "updated_at": "2023-01-30T20:47:37.128Z",
- "entity": "{\"data\":{\"id\":\"ASae7750a226c14f4c8e92764901e07104\",\"type\":\"app_surfaces\",\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Surface (new name)\",\"created_at\":\"2023-01-30T20:47:37.111Z\",\"updated_at\":\"2023-01-30T20:47:37.111Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104/company\"}},\"app_configurations\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104/relationships/app_configurations\",\"related\":\"https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104/app_configurations\"}}}}}"
+ "updated_at": "2023-04-21T22:53:04.530Z",
+ "entity": "{\"data\":{\"id\":\"AS45bb4d9d00b445daba1e4d8bc265c3d4\",\"type\":\"app_surfaces\",\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Surface (new name)\",\"created_at\":\"2023-04-21T22:53:04.510Z\",\"updated_at\":\"2023-04-21T22:53:04.510Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4/company\"}},\"app_configurations\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4/relationships/app_configurations\",\"related\":\"https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4/app_configurations\"}}}}}"
},
"relationships": {
"property": {
@@ -2953,27 +2953,27 @@
},
"data": {
"type": "app_surfaces",
- "id": "ASae7750a226c14f4c8e92764901e07104"
+ "id": "AS45bb4d9d00b445daba1e4d8bc265c3d4"
}
}
},
"links": {
- "entity": "https://reactor.adobe.io/app_surfaces/ASae7750a226c14f4c8e92764901e07104",
+ "entity": "https://reactor.adobe.io/app_surfaces/AS45bb4d9d00b445daba1e4d8bc265c3d4",
"property": null,
- "self": "https://reactor.adobe.io/audit_events/AE6939270c84db42578c76a59ddeee2f47"
+ "self": "https://reactor.adobe.io/audit_events/AE78e88862e89040178253898e2378a71c"
}
},
{
- "id": "AE5e4f276c70f3415f8cb9edc034c880bd",
+ "id": "AEda448df8fb214c5f82f2afdde072ff2d",
"type": "audit_events",
"attributes": {
"attributed_to_display_name": "George Ciltaru",
"attributed_to_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:47:36.942Z",
+ "created_at": "2023-04-21T22:53:04.251Z",
"display_name": "Kessel Surface",
"type_of": "app_surface.created",
- "updated_at": "2023-01-30T20:47:36.942Z",
- "entity": "{\"data\":{\"id\":\"AS9dde84e9b9c14738a8077ab591a3f7a6\",\"type\":\"app_surfaces\",\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS9dde84e9b9c14738a8077ab591a3f7a6\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Surface\",\"created_at\":\"2023-01-30T20:47:36.933Z\",\"updated_at\":\"2023-01-30T20:47:36.933Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_surfaces/AS9dde84e9b9c14738a8077ab591a3f7a6/company\"}},\"app_configurations\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS9dde84e9b9c14738a8077ab591a3f7a6/relationships/app_configurations\",\"related\":\"https://reactor.adobe.io/app_surfaces/AS9dde84e9b9c14738a8077ab591a3f7a6/app_configurations\"}}}}}"
+ "updated_at": "2023-04-21T22:53:04.251Z",
+ "entity": "{\"data\":{\"id\":\"AS7402e40471fe4ec4adbb741ad8efc109\",\"type\":\"app_surfaces\",\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS7402e40471fe4ec4adbb741ad8efc109\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Surface\",\"created_at\":\"2023-04-21T22:53:04.237Z\",\"updated_at\":\"2023-04-21T22:53:04.237Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_surfaces/AS7402e40471fe4ec4adbb741ad8efc109/company\"}},\"app_configurations\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS7402e40471fe4ec4adbb741ad8efc109/relationships/app_configurations\",\"related\":\"https://reactor.adobe.io/app_surfaces/AS7402e40471fe4ec4adbb741ad8efc109/app_configurations\"}}}}}"
},
"relationships": {
"property": {
@@ -2988,27 +2988,27 @@
},
"data": {
"type": "app_surfaces",
- "id": "AS9dde84e9b9c14738a8077ab591a3f7a6"
+ "id": "AS7402e40471fe4ec4adbb741ad8efc109"
}
}
},
"links": {
- "entity": "https://reactor.adobe.io/app_surfaces/AS9dde84e9b9c14738a8077ab591a3f7a6",
+ "entity": "https://reactor.adobe.io/app_surfaces/AS7402e40471fe4ec4adbb741ad8efc109",
"property": null,
- "self": "https://reactor.adobe.io/audit_events/AE5e4f276c70f3415f8cb9edc034c880bd"
+ "self": "https://reactor.adobe.io/audit_events/AEda448df8fb214c5f82f2afdde072ff2d"
}
},
{
- "id": "AE6f38345d920543c28fe9665e5f8bd9c6",
+ "id": "AE38901eee90d84b87a659f6374dfbadeb",
"type": "audit_events",
"attributes": {
"attributed_to_display_name": "George Ciltaru",
"attributed_to_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:47:36.900Z",
+ "created_at": "2023-04-21T22:53:04.192Z",
"display_name": "Kessel Surface (new name)",
"type_of": "app_surface.deleted",
- "updated_at": "2023-01-30T20:47:36.900Z",
- "entity": "{\"data\":{\"id\":\"AS1470f2d5d95d4c90abf5565a757379dc\",\"type\":\"app_surfaces\",\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS1470f2d5d95d4c90abf5565a757379dc\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Surface (new name)\",\"created_at\":\"2023-01-25T22:04:03.061Z\",\"updated_at\":\"2023-01-25T22:04:03.061Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_surfaces/AS1470f2d5d95d4c90abf5565a757379dc/company\"}},\"app_configurations\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS1470f2d5d95d4c90abf5565a757379dc/relationships/app_configurations\",\"related\":\"https://reactor.adobe.io/app_surfaces/AS1470f2d5d95d4c90abf5565a757379dc/app_configurations\"}}}}}"
+ "updated_at": "2023-04-21T22:53:04.192Z",
+ "entity": "{\"data\":{\"id\":\"AS171978466e2d4cbeb03c276d2cc7ed2a\",\"type\":\"app_surfaces\",\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS171978466e2d4cbeb03c276d2cc7ed2a\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Surface (new name)\",\"created_at\":\"2023-04-21T22:51:08.118Z\",\"updated_at\":\"2023-04-21T22:51:08.118Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_surfaces/AS171978466e2d4cbeb03c276d2cc7ed2a/company\"}},\"app_configurations\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS171978466e2d4cbeb03c276d2cc7ed2a/relationships/app_configurations\",\"related\":\"https://reactor.adobe.io/app_surfaces/AS171978466e2d4cbeb03c276d2cc7ed2a/app_configurations\"}}}}}"
},
"relationships": {
"property": {
@@ -3023,27 +3023,27 @@
},
"data": {
"type": "app_surfaces",
- "id": "AS1470f2d5d95d4c90abf5565a757379dc"
+ "id": "AS171978466e2d4cbeb03c276d2cc7ed2a"
}
}
},
"links": {
- "entity": "https://reactor.adobe.io/app_surfaces/AS1470f2d5d95d4c90abf5565a757379dc",
+ "entity": "https://reactor.adobe.io/app_surfaces/AS171978466e2d4cbeb03c276d2cc7ed2a",
"property": null,
- "self": "https://reactor.adobe.io/audit_events/AE6f38345d920543c28fe9665e5f8bd9c6"
+ "self": "https://reactor.adobe.io/audit_events/AE38901eee90d84b87a659f6374dfbadeb"
}
},
{
- "id": "AEd1091ddd51b148e0b1e04defc6efd41f",
+ "id": "AEf7264024aa83482c9ed2fe08f31b774b",
"type": "audit_events",
"attributes": {
"attributed_to_display_name": "George Ciltaru",
"attributed_to_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:47:36.823Z",
+ "created_at": "2023-04-21T22:53:04.011Z",
"display_name": "Kessel Surface",
"type_of": "app_surface.deleted",
- "updated_at": "2023-01-30T20:47:36.823Z",
- "entity": "{\"data\":{\"id\":\"AS559b09a459fb4c9f963b9e7d506d3ce8\",\"type\":\"app_surfaces\",\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS559b09a459fb4c9f963b9e7d506d3ce8\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Surface\",\"created_at\":\"2023-01-25T22:04:02.069Z\",\"updated_at\":\"2023-01-25T22:04:02.069Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_surfaces/AS559b09a459fb4c9f963b9e7d506d3ce8/company\"}},\"app_configurations\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS559b09a459fb4c9f963b9e7d506d3ce8/relationships/app_configurations\",\"related\":\"https://reactor.adobe.io/app_surfaces/AS559b09a459fb4c9f963b9e7d506d3ce8/app_configurations\"}}}}}"
+ "updated_at": "2023-04-21T22:53:04.011Z",
+ "entity": "{\"data\":{\"id\":\"AS7a8a7d7734c84147b40026ad896d4827\",\"type\":\"app_surfaces\",\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS7a8a7d7734c84147b40026ad896d4827\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Surface\",\"created_at\":\"2023-04-21T22:51:07.108Z\",\"updated_at\":\"2023-04-21T22:51:07.108Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_surfaces/AS7a8a7d7734c84147b40026ad896d4827/company\"}},\"app_configurations\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_surfaces/AS7a8a7d7734c84147b40026ad896d4827/relationships/app_configurations\",\"related\":\"https://reactor.adobe.io/app_surfaces/AS7a8a7d7734c84147b40026ad896d4827/app_configurations\"}}}}}"
},
"relationships": {
"property": {
@@ -3058,27 +3058,27 @@
},
"data": {
"type": "app_surfaces",
- "id": "AS559b09a459fb4c9f963b9e7d506d3ce8"
+ "id": "AS7a8a7d7734c84147b40026ad896d4827"
}
}
},
"links": {
- "entity": "https://reactor.adobe.io/app_surfaces/AS559b09a459fb4c9f963b9e7d506d3ce8",
+ "entity": "https://reactor.adobe.io/app_surfaces/AS7a8a7d7734c84147b40026ad896d4827",
"property": null,
- "self": "https://reactor.adobe.io/audit_events/AEd1091ddd51b148e0b1e04defc6efd41f"
+ "self": "https://reactor.adobe.io/audit_events/AEf7264024aa83482c9ed2fe08f31b774b"
}
},
{
- "id": "AEf2ac7838e0c64edd94305bb18e56bcc0",
+ "id": "AE3ec117b940d54edca5a9923d7eda82e2",
"type": "audit_events",
"attributes": {
"attributed_to_display_name": "George Ciltaru",
"attributed_to_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:47:35.586Z",
+ "created_at": "2023-04-21T22:53:01.733Z",
"display_name": "Kessel Apns App",
"type_of": "app_configuration.created",
- "updated_at": "2023-01-30T20:47:35.586Z",
- "entity": "{\"data\":{\"id\":\"AC384df90891b148598128a5b0be529b6e\",\"type\":\"app_configurations\",\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/AC384df90891b148598128a5b0be529b6e\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Apns App\",\"app_id\":\"com.adobe.test_app\",\"key_type\":\"p8_file\",\"platform\":\"mobile\",\"created_at\":\"2023-01-30T20:47:35.570Z\",\"sandbox_id\":null,\"updated_at\":\"2023-01-30T20:47:35.570Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"messaging_service\":\"apns\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_configurations/AC384df90891b148598128a5b0be529b6e/company\"}},\"app_surfaces\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/AC384df90891b148598128a5b0be529b6e/relationships/app_surfaces\",\"related\":\"https://reactor.adobe.io/app_configurations/AC384df90891b148598128a5b0be529b6e/app_surfaces\"}}}}}"
+ "updated_at": "2023-04-21T22:53:01.733Z",
+ "entity": "{\"data\":{\"id\":\"AC7f38f663c0d14584a854711e24b80abf\",\"type\":\"app_configurations\",\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/AC7f38f663c0d14584a854711e24b80abf\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Apns App\",\"app_id\":\"com.adobe.test_app\",\"key_type\":\"p8_file\",\"platform\":\"mobile\",\"created_at\":\"2023-04-21T22:53:01.707Z\",\"updated_at\":\"2023-04-21T22:53:01.707Z\",\"sandbox_name\":null,\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"messaging_service\":\"apns\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_configurations/AC7f38f663c0d14584a854711e24b80abf/company\"}},\"app_surfaces\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/AC7f38f663c0d14584a854711e24b80abf/relationships/app_surfaces\",\"related\":\"https://reactor.adobe.io/app_configurations/AC7f38f663c0d14584a854711e24b80abf/app_surfaces\"}}}}}"
},
"relationships": {
"property": {
@@ -3093,27 +3093,27 @@
},
"data": {
"type": "app_configurations",
- "id": "AC384df90891b148598128a5b0be529b6e"
+ "id": "AC7f38f663c0d14584a854711e24b80abf"
}
}
},
"links": {
- "entity": "https://reactor.adobe.io/app_configurations/AC384df90891b148598128a5b0be529b6e",
+ "entity": "https://reactor.adobe.io/app_configurations/AC7f38f663c0d14584a854711e24b80abf",
"property": null,
- "self": "https://reactor.adobe.io/audit_events/AEf2ac7838e0c64edd94305bb18e56bcc0"
+ "self": "https://reactor.adobe.io/audit_events/AE3ec117b940d54edca5a9923d7eda82e2"
}
},
{
- "id": "AE8d95ad6351e14763aabf8a8cb76b1505",
+ "id": "AE82ed5f47c7d14ae3a77479341b84a1c1",
"type": "audit_events",
"attributes": {
"attributed_to_display_name": "George Ciltaru",
"attributed_to_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:47:35.278Z",
+ "created_at": "2023-04-21T22:53:01.441Z",
"display_name": "Kessel Apns App",
"type_of": "app_configuration.deleted",
- "updated_at": "2023-01-30T20:47:35.278Z",
- "entity": "{\"data\":{\"id\":\"ACaa8046e2e3fc471da21235c2a3a4271a\",\"type\":\"app_configurations\",\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Apns App\",\"app_id\":\"com.adobe.test_app_2\",\"key_type\":\"p8_file\",\"platform\":\"mobile\",\"created_at\":\"2023-01-30T20:47:34.217Z\",\"sandbox_id\":null,\"updated_at\":\"2023-01-30T20:47:35.028Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"messaging_service\":\"apns\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/company\"}},\"app_surfaces\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/relationships/app_surfaces\",\"related\":\"https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/app_surfaces\"}}}}}"
+ "updated_at": "2023-04-21T22:53:01.441Z",
+ "entity": "{\"data\":{\"id\":\"AC46b007be4a9941629dfc73155ea3a667\",\"type\":\"app_configurations\",\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Apns App\",\"app_id\":\"com.adobe.test_app_2\",\"key_type\":\"p8_file\",\"platform\":\"mobile\",\"created_at\":\"2023-04-21T22:53:00.534Z\",\"updated_at\":\"2023-04-21T22:53:01.213Z\",\"sandbox_name\":null,\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"messaging_service\":\"apns\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/company\"}},\"app_surfaces\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/relationships/app_surfaces\",\"related\":\"https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/app_surfaces\"}}}}}"
},
"relationships": {
"property": {
@@ -3128,27 +3128,27 @@
},
"data": {
"type": "app_configurations",
- "id": "ACaa8046e2e3fc471da21235c2a3a4271a"
+ "id": "AC46b007be4a9941629dfc73155ea3a667"
}
}
},
"links": {
- "entity": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a",
+ "entity": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667",
"property": null,
- "self": "https://reactor.adobe.io/audit_events/AE8d95ad6351e14763aabf8a8cb76b1505"
+ "self": "https://reactor.adobe.io/audit_events/AE82ed5f47c7d14ae3a77479341b84a1c1"
}
},
{
- "id": "AE897e7218b58c4b7595323011908d1f33",
+ "id": "AE7a2f756a66354fd4bf019a073b7202fb",
"type": "audit_events",
"attributes": {
"attributed_to_display_name": "George Ciltaru",
"attributed_to_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:47:35.076Z",
+ "created_at": "2023-04-21T22:53:01.256Z",
"display_name": "Kessel Apns App",
"type_of": "app_configuration.updated",
- "updated_at": "2023-01-30T20:47:35.076Z",
- "entity": "{\"data\":{\"id\":\"ACaa8046e2e3fc471da21235c2a3a4271a\",\"type\":\"app_configurations\",\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Apns App\",\"app_id\":\"com.adobe.test_app_2\",\"key_type\":\"p8_file\",\"platform\":\"mobile\",\"created_at\":\"2023-01-30T20:47:34.217Z\",\"sandbox_id\":null,\"updated_at\":\"2023-01-30T20:47:35.028Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"messaging_service\":\"apns\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/company\"}},\"app_surfaces\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/relationships/app_surfaces\",\"related\":\"https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/app_surfaces\"}}}}}"
+ "updated_at": "2023-04-21T22:53:01.256Z",
+ "entity": "{\"data\":{\"id\":\"AC46b007be4a9941629dfc73155ea3a667\",\"type\":\"app_configurations\",\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Apns App\",\"app_id\":\"com.adobe.test_app_2\",\"key_type\":\"p8_file\",\"platform\":\"mobile\",\"created_at\":\"2023-04-21T22:53:00.534Z\",\"updated_at\":\"2023-04-21T22:53:01.213Z\",\"sandbox_name\":null,\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"messaging_service\":\"apns\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/company\"}},\"app_surfaces\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/relationships/app_surfaces\",\"related\":\"https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/app_surfaces\"}}}}}"
},
"relationships": {
"property": {
@@ -3163,27 +3163,27 @@
},
"data": {
"type": "app_configurations",
- "id": "ACaa8046e2e3fc471da21235c2a3a4271a"
+ "id": "AC46b007be4a9941629dfc73155ea3a667"
}
}
},
"links": {
- "entity": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a",
+ "entity": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667",
"property": null,
- "self": "https://reactor.adobe.io/audit_events/AE897e7218b58c4b7595323011908d1f33"
+ "self": "https://reactor.adobe.io/audit_events/AE7a2f756a66354fd4bf019a073b7202fb"
}
},
{
- "id": "AE91f5612e51b943f29098e3af51e977e8",
+ "id": "AE1d9abd58b9a74d62a315134dda5456d9",
"type": "audit_events",
"attributes": {
"attributed_to_display_name": "George Ciltaru",
"attributed_to_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:47:34.234Z",
+ "created_at": "2023-04-21T22:53:00.556Z",
"display_name": "Kessel Apns App",
"type_of": "app_configuration.created",
- "updated_at": "2023-01-30T20:47:34.234Z",
- "entity": "{\"data\":{\"id\":\"ACaa8046e2e3fc471da21235c2a3a4271a\",\"type\":\"app_configurations\",\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Apns App\",\"app_id\":\"com.adobe.test_app\",\"key_type\":\"p8_file\",\"platform\":\"mobile\",\"created_at\":\"2023-01-30T20:47:34.217Z\",\"sandbox_id\":null,\"updated_at\":\"2023-01-30T20:47:34.217Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"messaging_service\":\"apns\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/company\"}},\"app_surfaces\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/relationships/app_surfaces\",\"related\":\"https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a/app_surfaces\"}}}}}"
+ "updated_at": "2023-04-21T22:53:00.556Z",
+ "entity": "{\"data\":{\"id\":\"AC46b007be4a9941629dfc73155ea3a667\",\"type\":\"app_configurations\",\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Apns App\",\"app_id\":\"com.adobe.test_app\",\"key_type\":\"p8_file\",\"platform\":\"mobile\",\"created_at\":\"2023-04-21T22:53:00.534Z\",\"updated_at\":\"2023-04-21T22:53:00.534Z\",\"sandbox_name\":null,\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"messaging_service\":\"apns\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/company\"}},\"app_surfaces\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/relationships/app_surfaces\",\"related\":\"https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667/app_surfaces\"}}}}}"
},
"relationships": {
"property": {
@@ -3198,27 +3198,27 @@
},
"data": {
"type": "app_configurations",
- "id": "ACaa8046e2e3fc471da21235c2a3a4271a"
+ "id": "AC46b007be4a9941629dfc73155ea3a667"
}
}
},
"links": {
- "entity": "https://reactor.adobe.io/app_configurations/ACaa8046e2e3fc471da21235c2a3a4271a",
+ "entity": "https://reactor.adobe.io/app_configurations/AC46b007be4a9941629dfc73155ea3a667",
"property": null,
- "self": "https://reactor.adobe.io/audit_events/AE91f5612e51b943f29098e3af51e977e8"
+ "self": "https://reactor.adobe.io/audit_events/AE1d9abd58b9a74d62a315134dda5456d9"
}
},
{
- "id": "AE73f21e2ae9804d0bae68336dd857d79e",
+ "id": "AEd2ae9be719bb4ceeb7bbf2474bdf946a",
"type": "audit_events",
"attributes": {
"attributed_to_display_name": "George Ciltaru",
"attributed_to_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:47:34.117Z",
+ "created_at": "2023-04-21T22:53:00.433Z",
"display_name": "Kessel Fcm App",
"type_of": "app_configuration.deleted",
- "updated_at": "2023-01-30T20:47:34.117Z",
- "entity": "{\"data\":{\"id\":\"AC9049cc65943b4508a6ae5bf8a5535cda\",\"type\":\"app_configurations\",\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/AC9049cc65943b4508a6ae5bf8a5535cda\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Fcm App\",\"app_id\":\"android_app_id\",\"key_type\":\"fcm_v1\",\"platform\":\"mobile\",\"created_at\":\"2023-01-25T22:04:03.891Z\",\"sandbox_id\":null,\"updated_at\":\"2023-01-25T22:04:03.891Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"messaging_service\":\"fcm\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_configurations/AC9049cc65943b4508a6ae5bf8a5535cda/company\"}},\"app_surfaces\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/AC9049cc65943b4508a6ae5bf8a5535cda/relationships/app_surfaces\",\"related\":\"https://reactor.adobe.io/app_configurations/AC9049cc65943b4508a6ae5bf8a5535cda/app_surfaces\"}}}}}"
+ "updated_at": "2023-04-21T22:53:00.433Z",
+ "entity": "{\"data\":{\"id\":\"AC18739925a8714a83838e394787b26b42\",\"type\":\"app_configurations\",\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/AC18739925a8714a83838e394787b26b42\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Fcm App\",\"app_id\":\"android_app_id\",\"key_type\":\"fcm_v1\",\"platform\":\"mobile\",\"created_at\":\"2023-04-21T22:51:09.018Z\",\"updated_at\":\"2023-04-21T22:51:09.018Z\",\"sandbox_name\":null,\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"messaging_service\":\"fcm\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_configurations/AC18739925a8714a83838e394787b26b42/company\"}},\"app_surfaces\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/AC18739925a8714a83838e394787b26b42/relationships/app_surfaces\",\"related\":\"https://reactor.adobe.io/app_configurations/AC18739925a8714a83838e394787b26b42/app_surfaces\"}}}}}"
},
"relationships": {
"property": {
@@ -3233,27 +3233,27 @@
},
"data": {
"type": "app_configurations",
- "id": "AC9049cc65943b4508a6ae5bf8a5535cda"
+ "id": "AC18739925a8714a83838e394787b26b42"
}
}
},
"links": {
- "entity": "https://reactor.adobe.io/app_configurations/AC9049cc65943b4508a6ae5bf8a5535cda",
+ "entity": "https://reactor.adobe.io/app_configurations/AC18739925a8714a83838e394787b26b42",
"property": null,
- "self": "https://reactor.adobe.io/audit_events/AE73f21e2ae9804d0bae68336dd857d79e"
+ "self": "https://reactor.adobe.io/audit_events/AEd2ae9be719bb4ceeb7bbf2474bdf946a"
}
},
{
- "id": "AEfc369a1cce3d4d22aade3fe108af89a8",
+ "id": "AE429f7f8dd5264284850542c464f2e13b",
"type": "audit_events",
"attributes": {
"attributed_to_display_name": "George Ciltaru",
"attributed_to_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:47:33.982Z",
+ "created_at": "2023-04-21T22:53:00.305Z",
"display_name": "Kessel Apns App",
"type_of": "app_configuration.deleted",
- "updated_at": "2023-01-30T20:47:33.982Z",
- "entity": "{\"data\":{\"id\":\"ACc873e59f71c14e8594c883e7cad30a15\",\"type\":\"app_configurations\",\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/ACc873e59f71c14e8594c883e7cad30a15\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Apns App\",\"app_id\":\"com.adobe.test_app\",\"key_type\":\"p8_file\",\"platform\":\"mobile\",\"created_at\":\"2023-01-25T22:04:00.701Z\",\"sandbox_id\":null,\"updated_at\":\"2023-01-25T22:04:00.701Z\",\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"messaging_service\":\"apns\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_configurations/ACc873e59f71c14e8594c883e7cad30a15/company\"}},\"app_surfaces\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/ACc873e59f71c14e8594c883e7cad30a15/relationships/app_surfaces\",\"related\":\"https://reactor.adobe.io/app_configurations/ACc873e59f71c14e8594c883e7cad30a15/app_surfaces\"}}}}}"
+ "updated_at": "2023-04-21T22:53:00.305Z",
+ "entity": "{\"data\":{\"id\":\"AC9da326fd98a844b39ed2d0b339ce1641\",\"type\":\"app_configurations\",\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/AC9da326fd98a844b39ed2d0b339ce1641\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\"},\"attributes\":{\"name\":\"Kessel Apns App\",\"app_id\":\"com.adobe.test_app\",\"key_type\":\"p8_file\",\"platform\":\"mobile\",\"created_at\":\"2023-04-21T22:51:05.788Z\",\"updated_at\":\"2023-04-21T22:51:05.788Z\",\"sandbox_name\":null,\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"messaging_service\":\"apns\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\"},\"relationships\":{\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/app_configurations/AC9da326fd98a844b39ed2d0b339ce1641/company\"}},\"app_surfaces\":{\"links\":{\"self\":\"https://reactor.adobe.io/app_configurations/AC9da326fd98a844b39ed2d0b339ce1641/relationships/app_surfaces\",\"related\":\"https://reactor.adobe.io/app_configurations/AC9da326fd98a844b39ed2d0b339ce1641/app_surfaces\"}}}}}"
},
"relationships": {
"property": {
@@ -3268,29 +3268,24 @@
},
"data": {
"type": "app_configurations",
- "id": "ACc873e59f71c14e8594c883e7cad30a15"
+ "id": "AC9da326fd98a844b39ed2d0b339ce1641"
}
}
},
"links": {
- "entity": "https://reactor.adobe.io/app_configurations/ACc873e59f71c14e8594c883e7cad30a15",
+ "entity": "https://reactor.adobe.io/app_configurations/AC9da326fd98a844b39ed2d0b339ce1641",
"property": null,
- "self": "https://reactor.adobe.io/audit_events/AEfc369a1cce3d4d22aade3fe108af89a8"
+ "self": "https://reactor.adobe.io/audit_events/AE429f7f8dd5264284850542c464f2e13b"
}
}
],
- "links": {
- "self": "https://reactor.adobe.io/audit_events?page%5Bnumber%5D=1&page%5Bsize%5D=25",
- "next": "https://reactor.adobe.io/audit_events?page%5Bnumber%5D=2&page%5Bsize%5D=25",
- "last": "https://reactor.adobe.io/audit_events?page%5Bnumber%5D=1221&page%5Bsize%5D=25"
- },
"meta": {
"pagination": {
"current_page": 1,
- "next_page": 2,
+ "next_page": null,
"prev_page": null,
- "total_pages": 1221,
- "total_count": 30511
+ "total_pages": 1,
+ "total_count": 17
}
}
},
@@ -3305,41 +3300,41 @@
"request": null,
"response": {
"data": {
- "id": "AE3c230a73cce34be7a6369ef88aca923c",
+ "id": "AEf85540f450e34474ac8c1d072075b41b",
"type": "audit_events",
"attributes": {
"attributed_to_display_name": "George Ciltaru",
"attributed_to_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:47:45.034Z",
+ "created_at": "2023-04-21T22:53:12.903Z",
"display_name": "Kessel Example Property",
"type_of": "property.created",
- "updated_at": "2023-01-30T20:47:45.034Z",
- "entity": "{\"data\":{\"id\":\"PR0c8d4914358c4903ba738ac0e248b557\",\"meta\":{\"rights\":[\"approve\",\"develop\",\"edit_property\",\"manage_environments\",\"manage_extensions\",\"publish\"]},\"type\":\"properties\",\"links\":{\"self\":\"https://reactor.adobe.io/properties/PR0c8d4914358c4903ba738ac0e248b557\",\"rules\":\"https://reactor.adobe.io/properties/PR0c8d4914358c4903ba738ac0e248b557/rules\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\",\"extensions\":\"https://reactor.adobe.io/properties/PR0c8d4914358c4903ba738ac0e248b557/extensions\",\"environments\":\"https://reactor.adobe.io/properties/PR0c8d4914358c4903ba738ac0e248b557/environments\",\"data_elements\":\"https://reactor.adobe.io/properties/PR0c8d4914358c4903ba738ac0e248b557/data_elements\"},\"attributes\":{\"name\":\"Kessel Example Property\",\"token\":\"b909157510b0\",\"domains\":[\"example.com\"],\"enabled\":true,\"platform\":\"web\",\"created_at\":\"2023-01-30T20:47:44.950Z\",\"updated_at\":\"2023-01-30T20:47:44.950Z\",\"development\":false,\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\",\"undefined_vars_return_empty\":false,\"rule_component_sequencing_enabled\":true},\"relationships\":{\"hosts\":{\"links\":{\"related\":\"https://reactor.adobe.io/properties/PR0c8d4914358c4903ba738ac0e248b557/hosts\"}},\"notes\":{\"links\":{\"related\":\"https://reactor.adobe.io/properties/PR0c8d4914358c4903ba738ac0e248b557/notes\"}},\"rules\":{\"links\":{\"related\":\"https://reactor.adobe.io/properties/PR0c8d4914358c4903ba738ac0e248b557/rules\"}},\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/properties/PR0c8d4914358c4903ba738ac0e248b557/company\"}},\"callbacks\":{\"links\":{\"related\":\"https://reactor.adobe.io/properties/PR0c8d4914358c4903ba738ac0e248b557/callbacks\"}},\"libraries\":{\"links\":{\"related\":\"https://reactor.adobe.io/properties/PR0c8d4914358c4903ba738ac0e248b557/libraries\"}},\"extensions\":{\"links\":{\"related\":\"https://reactor.adobe.io/properties/PR0c8d4914358c4903ba738ac0e248b557/extensions\"}},\"environments\":{\"links\":{\"related\":\"https://reactor.adobe.io/properties/PR0c8d4914358c4903ba738ac0e248b557/environments\"}},\"data_elements\":{\"links\":{\"related\":\"https://reactor.adobe.io/properties/PR0c8d4914358c4903ba738ac0e248b557/data_elements\"}}}}}"
+ "updated_at": "2023-04-21T22:53:12.903Z",
+ "entity": "{\"data\":{\"id\":\"PR8c88572ac15846b5a55eae049565c2fa\",\"meta\":{\"rights\":[\"approve\",\"develop\",\"edit_property\",\"manage_environments\",\"manage_extensions\",\"publish\"]},\"type\":\"properties\",\"links\":{\"self\":\"https://reactor.adobe.io/properties/PR8c88572ac15846b5a55eae049565c2fa\",\"rules\":\"https://reactor.adobe.io/properties/PR8c88572ac15846b5a55eae049565c2fa/rules\",\"company\":\"https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb\",\"extensions\":\"https://reactor.adobe.io/properties/PR8c88572ac15846b5a55eae049565c2fa/extensions\",\"environments\":\"https://reactor.adobe.io/properties/PR8c88572ac15846b5a55eae049565c2fa/environments\",\"data_elements\":\"https://reactor.adobe.io/properties/PR8c88572ac15846b5a55eae049565c2fa/data_elements\"},\"attributes\":{\"name\":\"Kessel Example Property\",\"token\":\"805c92d9200c\",\"domains\":[\"example.com\"],\"enabled\":true,\"platform\":\"web\",\"created_at\":\"2023-04-21T22:53:12.709Z\",\"updated_at\":\"2023-04-21T22:53:12.709Z\",\"development\":false,\"created_by_email\":\"ciltaru@adobe.com\",\"updated_by_email\":\"ciltaru@adobe.com\",\"created_by_display_name\":\"George Ciltaru\",\"updated_by_display_name\":\"George Ciltaru\",\"undefined_vars_return_empty\":false,\"rule_component_sequencing_enabled\":true},\"relationships\":{\"hosts\":{\"links\":{\"related\":\"https://reactor.adobe.io/properties/PR8c88572ac15846b5a55eae049565c2fa/hosts\"}},\"notes\":{\"links\":{\"related\":\"https://reactor.adobe.io/properties/PR8c88572ac15846b5a55eae049565c2fa/notes\"}},\"rules\":{\"links\":{\"related\":\"https://reactor.adobe.io/properties/PR8c88572ac15846b5a55eae049565c2fa/rules\"}},\"company\":{\"data\":{\"id\":\"COb0dbd63fb8304a6197eef1f5cd0324fb\",\"type\":\"companies\"},\"links\":{\"related\":\"https://reactor.adobe.io/properties/PR8c88572ac15846b5a55eae049565c2fa/company\"}},\"callbacks\":{\"links\":{\"related\":\"https://reactor.adobe.io/properties/PR8c88572ac15846b5a55eae049565c2fa/callbacks\"}},\"libraries\":{\"links\":{\"related\":\"https://reactor.adobe.io/properties/PR8c88572ac15846b5a55eae049565c2fa/libraries\"}},\"extensions\":{\"links\":{\"related\":\"https://reactor.adobe.io/properties/PR8c88572ac15846b5a55eae049565c2fa/extensions\"}},\"environments\":{\"links\":{\"related\":\"https://reactor.adobe.io/properties/PR8c88572ac15846b5a55eae049565c2fa/environments\"}},\"data_elements\":{\"links\":{\"related\":\"https://reactor.adobe.io/properties/PR8c88572ac15846b5a55eae049565c2fa/data_elements\"}}}}}"
},
"relationships": {
"property": {
"links": {
- "related": "https://reactor.adobe.io/audit_events/AE3c230a73cce34be7a6369ef88aca923c/property"
+ "related": "https://reactor.adobe.io/audit_events/AEf85540f450e34474ac8c1d072075b41b/property"
},
"data": {
- "id": "PR0c8d4914358c4903ba738ac0e248b557",
+ "id": "PR8c88572ac15846b5a55eae049565c2fa",
"type": "properties"
}
},
"entity": {
"links": {
- "related": "https://reactor.adobe.io/audit_events/AE3c230a73cce34be7a6369ef88aca923c/property"
+ "related": "https://reactor.adobe.io/audit_events/AEf85540f450e34474ac8c1d072075b41b/property"
},
"data": {
"type": "properties",
- "id": "PR0c8d4914358c4903ba738ac0e248b557"
+ "id": "PR8c88572ac15846b5a55eae049565c2fa"
}
}
},
"links": {
- "entity": "https://reactor.adobe.io/properties/PR0c8d4914358c4903ba738ac0e248b557",
- "property": "https://reactor.adobe.io/properties/PR0c8d4914358c4903ba738ac0e248b557",
- "self": "https://reactor.adobe.io/audit_events/AE3c230a73cce34be7a6369ef88aca923c"
+ "entity": "https://reactor.adobe.io/properties/PR8c88572ac15846b5a55eae049565c2fa",
+ "property": "https://reactor.adobe.io/properties/PR8c88572ac15846b5a55eae049565c2fa",
+ "self": "https://reactor.adobe.io/audit_events/AEf85540f450e34474ac8c1d072075b41b"
},
"meta": {
"property_name": "Kessel Example Property"
@@ -3357,13 +3352,13 @@
"request": null,
"response": {
"data": {
- "id": "BL92e8bbcf65794aca90e8567711a7dde9",
+ "id": "BLd68266bf07e2429499d7206c28ec8086",
"type": "builds",
"attributes": {
- "created_at": "2023-01-30T20:47:55.994Z",
+ "created_at": "2023-04-21T22:53:24.129Z",
"status": "pending",
- "updated_at": "2023-01-30T20:47:55.994Z",
- "token": "bb1c3bfe3471",
+ "updated_at": "2023-04-21T22:53:24.129Z",
+ "token": "0edcdd03c43b",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -3372,55 +3367,55 @@
"relationships": {
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/builds/BL92e8bbcf65794aca90e8567711a7dde9/data_elements"
+ "related": "https://reactor.adobe.io/builds/BLd68266bf07e2429499d7206c28ec8086/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/builds/BL92e8bbcf65794aca90e8567711a7dde9/extensions"
+ "related": "https://reactor.adobe.io/builds/BLd68266bf07e2429499d7206c28ec8086/extensions"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/builds/BL92e8bbcf65794aca90e8567711a7dde9/rules"
+ "related": "https://reactor.adobe.io/builds/BLd68266bf07e2429499d7206c28ec8086/rules"
}
},
"environment": {
"links": {
- "related": "https://reactor.adobe.io/builds/BL92e8bbcf65794aca90e8567711a7dde9/environment"
+ "related": "https://reactor.adobe.io/builds/BLd68266bf07e2429499d7206c28ec8086/environment"
},
"data": {
- "id": "EN76cea2a36c6b4735a6b0aacbd35827c7",
+ "id": "EN86ccb495bd964413b33579dbdf721231",
"type": "environments"
}
},
"library": {
"links": {
- "related": "https://reactor.adobe.io/builds/BL92e8bbcf65794aca90e8567711a7dde9/library"
+ "related": "https://reactor.adobe.io/builds/BLd68266bf07e2429499d7206c28ec8086/library"
},
"data": {
- "id": "LB645fe60039d2418d92c19b8ebb20b99d",
+ "id": "LB7cedf4365b90471a95e5ae479b4e8e76",
"type": "libraries"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/builds/BL92e8bbcf65794aca90e8567711a7dde9/property"
+ "related": "https://reactor.adobe.io/builds/BLd68266bf07e2429499d7206c28ec8086/property"
},
"data": {
- "id": "PRccad7b7b0eea444499485281582a96e6",
+ "id": "PR30d890dfdc6c40e5bfccef68e2ff3f72",
"type": "properties"
}
}
},
"links": {
- "environment": "https://reactor.adobe.io/environments/EN76cea2a36c6b4735a6b0aacbd35827c7",
- "library": "https://reactor.adobe.io/libraries/LB645fe60039d2418d92c19b8ebb20b99d",
- "self": "https://reactor.adobe.io/builds/BL92e8bbcf65794aca90e8567711a7dde9"
+ "environment": "https://reactor.adobe.io/environments/EN86ccb495bd964413b33579dbdf721231",
+ "library": "https://reactor.adobe.io/libraries/LB7cedf4365b90471a95e5ae479b4e8e76",
+ "self": "https://reactor.adobe.io/builds/BLd68266bf07e2429499d7206c28ec8086"
},
"meta": {
- "artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/316ee0279e08/launch-e1e9e14e29a8-development.min.js",
- "direct_artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/316ee0279e08/bb1c3bfe3471/launch-e1e9e14e29a8-development.min.js",
+ "artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/3195bcedcc37/launch-01a9580cf200-development.min.js",
+ "direct_artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/3195bcedcc37/0edcdd03c43b/launch-01a9580cf200-development.min.js",
"archive": false,
"host_type_of": "akamai"
}
@@ -3437,13 +3432,13 @@
"request": null,
"response": {
"data": {
- "id": "BLd8864b79c11940509bbc1247b17e1276",
+ "id": "BL35957d2aa5dc4d7381192f14b10151a6",
"type": "builds",
"attributes": {
- "created_at": "2023-01-30T20:48:01.917Z",
+ "created_at": "2023-04-21T22:53:30.305Z",
"status": "pending",
- "updated_at": "2023-01-30T20:48:01.917Z",
- "token": "5e68e9d3ee52",
+ "updated_at": "2023-04-21T22:53:30.305Z",
+ "token": "eb1156bffc54",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -3452,55 +3447,55 @@
"relationships": {
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/builds/BLd8864b79c11940509bbc1247b17e1276/data_elements"
+ "related": "https://reactor.adobe.io/builds/BL35957d2aa5dc4d7381192f14b10151a6/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/builds/BLd8864b79c11940509bbc1247b17e1276/extensions"
+ "related": "https://reactor.adobe.io/builds/BL35957d2aa5dc4d7381192f14b10151a6/extensions"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/builds/BLd8864b79c11940509bbc1247b17e1276/rules"
+ "related": "https://reactor.adobe.io/builds/BL35957d2aa5dc4d7381192f14b10151a6/rules"
}
},
"environment": {
"links": {
- "related": "https://reactor.adobe.io/builds/BLd8864b79c11940509bbc1247b17e1276/environment"
+ "related": "https://reactor.adobe.io/builds/BL35957d2aa5dc4d7381192f14b10151a6/environment"
},
"data": {
- "id": "EN32ab2883d3f947489cf5a47bf467fe49",
+ "id": "ENd360b7da663449c3bcf15aba69a83e85",
"type": "environments"
}
},
"library": {
"links": {
- "related": "https://reactor.adobe.io/builds/BLd8864b79c11940509bbc1247b17e1276/library"
+ "related": "https://reactor.adobe.io/builds/BL35957d2aa5dc4d7381192f14b10151a6/library"
},
"data": {
- "id": "LB746af9b2deae4da9b8d067fefbee8dee",
+ "id": "LBa6a397d5c1434647b48a2cf01fe4fec6",
"type": "libraries"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/builds/BLd8864b79c11940509bbc1247b17e1276/property"
+ "related": "https://reactor.adobe.io/builds/BL35957d2aa5dc4d7381192f14b10151a6/property"
},
"data": {
- "id": "PRe4fd04d0b80d4d83b68a060c77dcc2ea",
+ "id": "PRcf659d8e230046f39d44913c55342bff",
"type": "properties"
}
}
},
"links": {
- "environment": "https://reactor.adobe.io/environments/EN32ab2883d3f947489cf5a47bf467fe49",
- "library": "https://reactor.adobe.io/libraries/LB746af9b2deae4da9b8d067fefbee8dee",
- "self": "https://reactor.adobe.io/builds/BLd8864b79c11940509bbc1247b17e1276"
+ "environment": "https://reactor.adobe.io/environments/ENd360b7da663449c3bcf15aba69a83e85",
+ "library": "https://reactor.adobe.io/libraries/LBa6a397d5c1434647b48a2cf01fe4fec6",
+ "self": "https://reactor.adobe.io/builds/BL35957d2aa5dc4d7381192f14b10151a6"
},
"meta": {
- "artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/33ce693e7db1/launch-4dc1c875b05c-development.min.js",
- "direct_artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/33ce693e7db1/5e68e9d3ee52/launch-4dc1c875b05c-development.min.js",
+ "artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/04280ea24389/launch-84a4c402dded-development.min.js",
+ "direct_artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/04280ea24389/eb1156bffc54/launch-84a4c402dded-development.min.js",
"archive": false,
"host_type_of": "akamai"
}
@@ -3518,13 +3513,13 @@
"response": {
"data": [
{
- "id": "BL638c0f6f4fb442bc8b78f102ee70e03e",
+ "id": "BL03dd333ba43c46f4b348e8ae98d7660b",
"type": "builds",
"attributes": {
- "created_at": "2023-01-30T20:48:08.112Z",
+ "created_at": "2023-04-21T22:53:36.662Z",
"status": "pending",
- "updated_at": "2023-01-30T20:48:08.112Z",
- "token": "e6c6ed73dd03",
+ "updated_at": "2023-04-21T22:53:36.662Z",
+ "token": "0bfa35156d99",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -3533,55 +3528,55 @@
"relationships": {
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/builds/BL638c0f6f4fb442bc8b78f102ee70e03e/data_elements"
+ "related": "https://reactor.adobe.io/builds/BL03dd333ba43c46f4b348e8ae98d7660b/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/builds/BL638c0f6f4fb442bc8b78f102ee70e03e/extensions"
+ "related": "https://reactor.adobe.io/builds/BL03dd333ba43c46f4b348e8ae98d7660b/extensions"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/builds/BL638c0f6f4fb442bc8b78f102ee70e03e/rules"
+ "related": "https://reactor.adobe.io/builds/BL03dd333ba43c46f4b348e8ae98d7660b/rules"
}
},
"environment": {
"links": {
- "related": "https://reactor.adobe.io/builds/BL638c0f6f4fb442bc8b78f102ee70e03e/environment"
+ "related": "https://reactor.adobe.io/builds/BL03dd333ba43c46f4b348e8ae98d7660b/environment"
},
"data": {
- "id": "ENd0ab82e966994e8dbde53f5af1900a92",
+ "id": "EN20202ea69c344927b1a66f9b03728bad",
"type": "environments"
}
},
"library": {
"links": {
- "related": "https://reactor.adobe.io/builds/BL638c0f6f4fb442bc8b78f102ee70e03e/library"
+ "related": "https://reactor.adobe.io/builds/BL03dd333ba43c46f4b348e8ae98d7660b/library"
},
"data": {
- "id": "LB2d1842c89d394527ab01e6dd7b9f5422",
+ "id": "LB1c0cf06644074429854c1dfd2f37fabd",
"type": "libraries"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/builds/BL638c0f6f4fb442bc8b78f102ee70e03e/property"
+ "related": "https://reactor.adobe.io/builds/BL03dd333ba43c46f4b348e8ae98d7660b/property"
},
"data": {
- "id": "PRf6e27f5c1d0a4d2bb54e86286ed399e4",
+ "id": "PR418e4885e24d4001a08fdd69c44b968d",
"type": "properties"
}
}
},
"links": {
- "environment": "https://reactor.adobe.io/environments/ENd0ab82e966994e8dbde53f5af1900a92",
- "library": "https://reactor.adobe.io/libraries/LB2d1842c89d394527ab01e6dd7b9f5422",
- "self": "https://reactor.adobe.io/builds/BL638c0f6f4fb442bc8b78f102ee70e03e"
+ "environment": "https://reactor.adobe.io/environments/EN20202ea69c344927b1a66f9b03728bad",
+ "library": "https://reactor.adobe.io/libraries/LB1c0cf06644074429854c1dfd2f37fabd",
+ "self": "https://reactor.adobe.io/builds/BL03dd333ba43c46f4b348e8ae98d7660b"
},
"meta": {
- "artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/248695d78dc0/launch-9f9d16880341-development.min.js",
- "direct_artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/248695d78dc0/e6c6ed73dd03/launch-9f9d16880341-development.min.js",
+ "artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/e4ac8183870b/launch-d8cb94b2596f-development.min.js",
+ "direct_artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/e4ac8183870b/0bfa35156d99/launch-d8cb94b2596f-development.min.js",
"archive": false,
"host_type_of": "akamai"
}
@@ -3609,13 +3604,13 @@
"response": {
"data": [
{
- "id": "BL504eb35c46914ecea40c6fdd24fd7da3",
+ "id": "BLd8e44178be86497aba12db040b2fb62d",
"type": "builds",
"attributes": {
- "created_at": "2023-01-30T20:48:14.182Z",
+ "created_at": "2023-04-21T22:53:42.861Z",
"status": "pending",
- "updated_at": "2023-01-30T20:48:14.182Z",
- "token": "1d67826de2d3",
+ "updated_at": "2023-04-21T22:53:42.861Z",
+ "token": "9be14631d436",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -3624,55 +3619,55 @@
"relationships": {
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/builds/BL504eb35c46914ecea40c6fdd24fd7da3/data_elements"
+ "related": "https://reactor.adobe.io/builds/BLd8e44178be86497aba12db040b2fb62d/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/builds/BL504eb35c46914ecea40c6fdd24fd7da3/extensions"
+ "related": "https://reactor.adobe.io/builds/BLd8e44178be86497aba12db040b2fb62d/extensions"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/builds/BL504eb35c46914ecea40c6fdd24fd7da3/rules"
+ "related": "https://reactor.adobe.io/builds/BLd8e44178be86497aba12db040b2fb62d/rules"
}
},
"environment": {
"links": {
- "related": "https://reactor.adobe.io/builds/BL504eb35c46914ecea40c6fdd24fd7da3/environment"
+ "related": "https://reactor.adobe.io/builds/BLd8e44178be86497aba12db040b2fb62d/environment"
},
"data": {
- "id": "ENdaca097be8ae4b13aef2f70ee9983b33",
+ "id": "ENbfc719c68b1a4c14ae3e82bb761d8d0c",
"type": "environments"
}
},
"library": {
"links": {
- "related": "https://reactor.adobe.io/builds/BL504eb35c46914ecea40c6fdd24fd7da3/library"
+ "related": "https://reactor.adobe.io/builds/BLd8e44178be86497aba12db040b2fb62d/library"
},
"data": {
- "id": "LB809b587a146b4c6b970b502f7153a737",
+ "id": "LB22f2461d76904fbb8248e739cc37f180",
"type": "libraries"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/builds/BL504eb35c46914ecea40c6fdd24fd7da3/property"
+ "related": "https://reactor.adobe.io/builds/BLd8e44178be86497aba12db040b2fb62d/property"
},
"data": {
- "id": "PR05669832f7eb40ed82e4be402d75c943",
+ "id": "PRc2f1470cf0e944dcbcaf96abd64939e8",
"type": "properties"
}
}
},
"links": {
- "environment": "https://reactor.adobe.io/environments/ENdaca097be8ae4b13aef2f70ee9983b33",
- "library": "https://reactor.adobe.io/libraries/LB809b587a146b4c6b970b502f7153a737",
- "self": "https://reactor.adobe.io/builds/BL504eb35c46914ecea40c6fdd24fd7da3"
+ "environment": "https://reactor.adobe.io/environments/ENbfc719c68b1a4c14ae3e82bb761d8d0c",
+ "library": "https://reactor.adobe.io/libraries/LB22f2461d76904fbb8248e739cc37f180",
+ "self": "https://reactor.adobe.io/builds/BLd8e44178be86497aba12db040b2fb62d"
},
"meta": {
- "artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/3a9de985eacc/launch-c52ff821a4b0-development.min.js",
- "direct_artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/3a9de985eacc/1d67826de2d3/launch-c52ff821a4b0-development.min.js",
+ "artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/9d3612b3a378/launch-9b96fb7e7072-development.min.js",
+ "direct_artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/9d3612b3a378/9be14631d436/launch-9b96fb7e7072-development.min.js",
"archive": false,
"host_type_of": "akamai"
}
@@ -3700,10 +3695,10 @@
"response": {
"data": [
{
- "id": "EX1468d629601648a1b4259aab72171e06",
+ "id": "EX3eefc3783b8348d68f7d85b7940f7a4c",
"type": "extensions",
"attributes": {
- "created_at": "2023-01-30T20:48:19.814Z",
+ "created_at": "2023-04-21T22:53:48.820Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -3711,7 +3706,7 @@
"published": false,
"published_at": null,
"revision_number": 1,
- "updated_at": "2023-01-30T20:48:19.814Z",
+ "updated_at": "2023-04-21T22:53:48.820Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -3725,40 +3720,40 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX1468d629601648a1b4259aab72171e06/libraries"
+ "related": "https://reactor.adobe.io/extensions/EX3eefc3783b8348d68f7d85b7940f7a4c/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX1468d629601648a1b4259aab72171e06/revisions"
+ "related": "https://reactor.adobe.io/extensions/EX3eefc3783b8348d68f7d85b7940f7a4c/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX1468d629601648a1b4259aab72171e06/notes"
+ "related": "https://reactor.adobe.io/extensions/EX3eefc3783b8348d68f7d85b7940f7a4c/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX1468d629601648a1b4259aab72171e06/property"
+ "related": "https://reactor.adobe.io/extensions/EX3eefc3783b8348d68f7d85b7940f7a4c/property"
},
"data": {
- "id": "PRa269a23db3434edc961767eb99241691",
+ "id": "PR3c2875d0641f4f6982df261077f3657e",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX1468d629601648a1b4259aab72171e06/origin"
+ "related": "https://reactor.adobe.io/extensions/EX3eefc3783b8348d68f7d85b7940f7a4c/origin"
},
"data": {
- "id": "EX8ba7bf5aacd24b079f8a89912c72d5ad",
+ "id": "EX31402686c08e4a279802203bdb517f49",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX1468d629601648a1b4259aab72171e06/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX3eefc3783b8348d68f7d85b7940f7a4c/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -3767,7 +3762,7 @@
},
"extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX1468d629601648a1b4259aab72171e06/extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX3eefc3783b8348d68f7d85b7940f7a4c/extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -3776,9 +3771,9 @@
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRa269a23db3434edc961767eb99241691",
- "origin": "https://reactor.adobe.io/extensions/EX8ba7bf5aacd24b079f8a89912c72d5ad",
- "self": "https://reactor.adobe.io/extensions/EX1468d629601648a1b4259aab72171e06",
+ "property": "https://reactor.adobe.io/properties/PR3c2875d0641f4f6982df261077f3657e",
+ "origin": "https://reactor.adobe.io/extensions/EX31402686c08e4a279802203bdb517f49",
+ "self": "https://reactor.adobe.io/extensions/EX3eefc3783b8348d68f7d85b7940f7a4c",
"extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab",
"latest_extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab"
},
@@ -3809,18 +3804,18 @@
"response": {
"data": [
{
- "id": "DEb79d80ef00e142fa8b99451bddb5f139",
+ "id": "DE49109b1ea5b14accbd274069f1711646",
"type": "data_elements",
"attributes": {
- "created_at": "2023-01-30T20:48:31.235Z",
+ "created_at": "2023-04-21T22:54:00.275Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
- "name": "My Data Element 2023-01-30 13:48:31 -0700",
+ "name": "My Data Element 2023-04-21 16:54:00 -0600",
"published": false,
"published_at": null,
"revision_number": 1,
- "updated_at": "2023-01-30T20:48:31.235Z",
+ "updated_at": "2023-04-21T22:54:00.275Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -3836,49 +3831,49 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEb79d80ef00e142fa8b99451bddb5f139/libraries"
+ "related": "https://reactor.adobe.io/data_elements/DE49109b1ea5b14accbd274069f1711646/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEb79d80ef00e142fa8b99451bddb5f139/revisions"
+ "related": "https://reactor.adobe.io/data_elements/DE49109b1ea5b14accbd274069f1711646/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEb79d80ef00e142fa8b99451bddb5f139/notes"
+ "related": "https://reactor.adobe.io/data_elements/DE49109b1ea5b14accbd274069f1711646/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEb79d80ef00e142fa8b99451bddb5f139/property"
+ "related": "https://reactor.adobe.io/data_elements/DE49109b1ea5b14accbd274069f1711646/property"
},
"data": {
- "id": "PR6adde8eca9344445923a59d15e22b018",
+ "id": "PR88491d429fe746e193a94af2b8db0c5b",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEb79d80ef00e142fa8b99451bddb5f139/origin"
+ "related": "https://reactor.adobe.io/data_elements/DE49109b1ea5b14accbd274069f1711646/origin"
},
"data": {
- "id": "DE7b41dbee85c74fdda32dbbd61664d359",
+ "id": "DEc0a9266f137041fd9711ffdf5417ee24",
"type": "data_elements"
}
},
"extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEb79d80ef00e142fa8b99451bddb5f139/extension"
+ "related": "https://reactor.adobe.io/data_elements/DE49109b1ea5b14accbd274069f1711646/extension"
},
"data": {
- "id": "EX720de4a418854a769ab6ce053588b8aa",
+ "id": "EXc1d0033a918449739f50d021955d6c1b",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEb79d80ef00e142fa8b99451bddb5f139/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/data_elements/DE49109b1ea5b14accbd274069f1711646/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -3887,19 +3882,19 @@
},
"updated_with_extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEb79d80ef00e142fa8b99451bddb5f139/updated_with_extension"
+ "related": "https://reactor.adobe.io/data_elements/DE49109b1ea5b14accbd274069f1711646/updated_with_extension"
},
"data": {
- "id": "EXa1f6d2abdbdf45528993faa40bc924db",
+ "id": "EXa1a91341df544ef384582ba66d78de2a",
"type": "extensions"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR6adde8eca9344445923a59d15e22b018",
- "origin": "https://reactor.adobe.io/data_elements/DE7b41dbee85c74fdda32dbbd61664d359",
- "self": "https://reactor.adobe.io/data_elements/DEb79d80ef00e142fa8b99451bddb5f139",
- "extension": "https://reactor.adobe.io/extensions/EX720de4a418854a769ab6ce053588b8aa"
+ "property": "https://reactor.adobe.io/properties/PR88491d429fe746e193a94af2b8db0c5b",
+ "origin": "https://reactor.adobe.io/data_elements/DEc0a9266f137041fd9711ffdf5417ee24",
+ "self": "https://reactor.adobe.io/data_elements/DE49109b1ea5b14accbd274069f1711646",
+ "extension": "https://reactor.adobe.io/extensions/EXc1d0033a918449739f50d021955d6c1b"
},
"meta": {
"latest_revision_number": 1
@@ -3926,7 +3921,7 @@
"multipart": false,
"request": {
"data": {
- "id": "BLe3782840bcc941369794f826db4a9ece",
+ "id": "BL7e785aa9d07a482599a3c802802abb9e",
"type": "builds",
"meta": {
"action": "republish"
@@ -3935,13 +3930,13 @@
},
"response": {
"data": {
- "id": "BLe3782840bcc941369794f826db4a9ece",
+ "id": "BL7e785aa9d07a482599a3c802802abb9e",
"type": "builds",
"attributes": {
- "created_at": "2023-01-30T20:48:53.319Z",
+ "created_at": "2023-04-21T22:54:22.635Z",
"status": "succeeded",
- "updated_at": "2023-01-30T20:48:58.585Z",
- "token": "dee188d407d2",
+ "updated_at": "2023-04-21T22:54:27.825Z",
+ "token": "c64cc2adb279",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -3950,55 +3945,55 @@
"relationships": {
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/builds/BLe3782840bcc941369794f826db4a9ece/data_elements"
+ "related": "https://reactor.adobe.io/builds/BL7e785aa9d07a482599a3c802802abb9e/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/builds/BLe3782840bcc941369794f826db4a9ece/extensions"
+ "related": "https://reactor.adobe.io/builds/BL7e785aa9d07a482599a3c802802abb9e/extensions"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/builds/BLe3782840bcc941369794f826db4a9ece/rules"
+ "related": "https://reactor.adobe.io/builds/BL7e785aa9d07a482599a3c802802abb9e/rules"
}
},
"environment": {
"links": {
- "related": "https://reactor.adobe.io/builds/BLe3782840bcc941369794f826db4a9ece/environment"
+ "related": "https://reactor.adobe.io/builds/BL7e785aa9d07a482599a3c802802abb9e/environment"
},
"data": {
- "id": "ENd06792806c364821853b72f3efa2c419",
+ "id": "EN57acbc9c34da4b8da07618b5d91cb352",
"type": "environments"
}
},
"library": {
"links": {
- "related": "https://reactor.adobe.io/builds/BLe3782840bcc941369794f826db4a9ece/library"
+ "related": "https://reactor.adobe.io/builds/BL7e785aa9d07a482599a3c802802abb9e/library"
},
"data": {
- "id": "LB66ba677a9e264e5092f8fcf93ec90173",
+ "id": "LB927376abdf70486cbfeaced3ddb0747e",
"type": "libraries"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/builds/BLe3782840bcc941369794f826db4a9ece/property"
+ "related": "https://reactor.adobe.io/builds/BL7e785aa9d07a482599a3c802802abb9e/property"
},
"data": {
- "id": "PR1787ad56688f42eca55ef6fda6c03f39",
+ "id": "PRe2a0692cc0474c629a3a43ce4da90b4a",
"type": "properties"
}
}
},
"links": {
- "environment": "https://reactor.adobe.io/environments/ENd06792806c364821853b72f3efa2c419",
- "library": "https://reactor.adobe.io/libraries/LB66ba677a9e264e5092f8fcf93ec90173",
- "self": "https://reactor.adobe.io/builds/BLe3782840bcc941369794f826db4a9ece"
+ "environment": "https://reactor.adobe.io/environments/EN57acbc9c34da4b8da07618b5d91cb352",
+ "library": "https://reactor.adobe.io/libraries/LB927376abdf70486cbfeaced3ddb0747e",
+ "self": "https://reactor.adobe.io/builds/BL7e785aa9d07a482599a3c802802abb9e"
},
"meta": {
- "artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/b41eaf9bb500/launch-604c280f80b4.min.js",
- "direct_artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/b41eaf9bb500/dee188d407d2/launch-604c280f80b4.min.js",
+ "artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/662364e40977/launch-ac67c64e0371.min.js",
+ "direct_artifact_url": "https://assets.adobedtm.com/staging/042253ab27b4/662364e40977/c64cc2adb279/launch-ac67c64e0371.min.js",
"archive": false,
"republish_status": "pending",
"host_type_of": "akamai"
@@ -4025,14 +4020,14 @@
},
"response": {
"data": {
- "id": "CBc6594041f29d4a12b0e6d68e4cf1b14c",
+ "id": "CB180a395d838d4df2942ed20e610869e9",
"type": "callbacks",
"attributes": {
- "created_at": "2023-01-30T20:49:04.164Z",
+ "created_at": "2023-04-21T22:54:33.191Z",
"subscriptions": [
"rule.created"
],
- "updated_at": "2023-01-30T20:49:04.164Z",
+ "updated_at": "2023-04-21T22:54:33.191Z",
"url": "https://www.example.com",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
@@ -4042,17 +4037,17 @@
"relationships": {
"property": {
"links": {
- "related": "https://reactor.adobe.io/callbacks/CBc6594041f29d4a12b0e6d68e4cf1b14c/property"
+ "related": "https://reactor.adobe.io/callbacks/CB180a395d838d4df2942ed20e610869e9/property"
},
"data": {
- "id": "PR6968a3ceb94543dab5a532711955618b",
+ "id": "PR40f40008532f4ccc91b5d08a8cf8ca46",
"type": "properties"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR6968a3ceb94543dab5a532711955618b",
- "self": "https://reactor.adobe.io/callbacks/CBc6594041f29d4a12b0e6d68e4cf1b14c"
+ "property": "https://reactor.adobe.io/properties/PR40f40008532f4ccc91b5d08a8cf8ca46",
+ "self": "https://reactor.adobe.io/callbacks/CB180a395d838d4df2942ed20e610869e9"
}
}
},
@@ -4067,14 +4062,14 @@
"request": null,
"response": {
"data": {
- "id": "CB42988fd43d884d9c8efd53f296df1c6f",
+ "id": "CB90d3bc443e214b08a8c4ab39224eba2a",
"type": "callbacks",
"attributes": {
- "created_at": "2023-01-30T20:49:09.592Z",
+ "created_at": "2023-04-21T22:54:38.595Z",
"subscriptions": [
"rule.created"
],
- "updated_at": "2023-01-30T20:49:09.592Z",
+ "updated_at": "2023-04-21T22:54:38.595Z",
"url": "https://www.example.com",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
@@ -4084,17 +4079,17 @@
"relationships": {
"property": {
"links": {
- "related": "https://reactor.adobe.io/callbacks/CB42988fd43d884d9c8efd53f296df1c6f/property"
+ "related": "https://reactor.adobe.io/callbacks/CB90d3bc443e214b08a8c4ab39224eba2a/property"
},
"data": {
- "id": "PR5a4ce49d82594ef29c6544c45d781b06",
+ "id": "PRff5d6453ce9e4969ba2f1a889a79242f",
"type": "properties"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR5a4ce49d82594ef29c6544c45d781b06",
- "self": "https://reactor.adobe.io/callbacks/CB42988fd43d884d9c8efd53f296df1c6f"
+ "property": "https://reactor.adobe.io/properties/PRff5d6453ce9e4969ba2f1a889a79242f",
+ "self": "https://reactor.adobe.io/callbacks/CB90d3bc443e214b08a8c4ab39224eba2a"
}
}
},
@@ -4110,14 +4105,14 @@
"response": {
"data": [
{
- "id": "CBb9ec23007b064ac18244a61c81a90ef1",
+ "id": "CB2c7e4c56869a43ccb1508be433f940cb",
"type": "callbacks",
"attributes": {
- "created_at": "2023-01-30T20:49:15.036Z",
+ "created_at": "2023-04-21T22:54:43.989Z",
"subscriptions": [
"rule.created"
],
- "updated_at": "2023-01-30T20:49:15.036Z",
+ "updated_at": "2023-04-21T22:54:43.989Z",
"url": "https://www.example.com",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
@@ -4127,17 +4122,17 @@
"relationships": {
"property": {
"links": {
- "related": "https://reactor.adobe.io/callbacks/CBb9ec23007b064ac18244a61c81a90ef1/property"
+ "related": "https://reactor.adobe.io/callbacks/CB2c7e4c56869a43ccb1508be433f940cb/property"
},
"data": {
- "id": "PR6447cf68788742d1ade517cbf59837c9",
+ "id": "PRaa3edac1cf2a4f60884cbe1d904f62b8",
"type": "properties"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR6447cf68788742d1ade517cbf59837c9",
- "self": "https://reactor.adobe.io/callbacks/CBb9ec23007b064ac18244a61c81a90ef1"
+ "property": "https://reactor.adobe.io/properties/PRaa3edac1cf2a4f60884cbe1d904f62b8",
+ "self": "https://reactor.adobe.io/callbacks/CB2c7e4c56869a43ccb1508be433f940cb"
}
}
],
@@ -4169,20 +4164,20 @@
]
},
"type": "callbacks",
- "id": "CBf8d2f032c8684aa69b9b4750abb39e8e"
+ "id": "CB30019dcbe1b44ad1a7f4740930637604"
}
},
"response": {
"data": {
- "id": "CBf8d2f032c8684aa69b9b4750abb39e8e",
+ "id": "CB30019dcbe1b44ad1a7f4740930637604",
"type": "callbacks",
"attributes": {
- "created_at": "2023-01-30T20:49:20.479Z",
+ "created_at": "2023-04-21T22:54:49.439Z",
"subscriptions": [
"rule.created",
"build.created"
],
- "updated_at": "2023-01-30T20:49:20.518Z",
+ "updated_at": "2023-04-21T22:54:49.500Z",
"url": "https://www.example.net",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
@@ -4192,17 +4187,17 @@
"relationships": {
"property": {
"links": {
- "related": "https://reactor.adobe.io/callbacks/CBf8d2f032c8684aa69b9b4750abb39e8e/property"
+ "related": "https://reactor.adobe.io/callbacks/CB30019dcbe1b44ad1a7f4740930637604/property"
},
"data": {
- "id": "PR861a14fce07846879fd61503113b4517",
+ "id": "PRe90184dc83914c318b01246352bb916b",
"type": "properties"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR861a14fce07846879fd61503113b4517",
- "self": "https://reactor.adobe.io/callbacks/CBf8d2f032c8684aa69b9b4750abb39e8e"
+ "property": "https://reactor.adobe.io/properties/PRe90184dc83914c318b01246352bb916b",
+ "self": "https://reactor.adobe.io/callbacks/CB30019dcbe1b44ad1a7f4740930637604"
}
}
},
@@ -4233,12 +4228,12 @@
"created_at": "2022-06-16T17:20:05.122Z",
"name": "Reactor QE",
"org_id": "08364A825824E04F0A494115@AdobeOrg",
- "updated_at": "2022-06-16T17:20:05.122Z",
+ "updated_at": "2023-03-23T21:43:40.301Z",
"token": "042253ab27b4",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
- "updated_by_email": "N/A",
- "updated_by_display_name": "N/A"
+ "updated_by_email": "ciltaru@adobe.com",
+ "updated_by_display_name": "George Ciltaru"
},
"relationships": {
"properties": {
@@ -4260,24 +4255,24 @@
"meta": {
"rights": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
],
"platform_rights": {
"edge": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
],
"web": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
],
"mobile": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
]
}
}
@@ -4295,14 +4290,14 @@
"response": {
"data": [
{
- "id": "CO5f83553fd301417583d5e71b1868553c",
+ "id": "CO055c5174de9f44e0aa7643743e746763",
"type": "companies",
"attributes": {
- "created_at": "2022-06-21T05:22:24.965Z",
- "name": "Bartoletti LLC",
- "org_id": "9C44E83C5647A475C9FE0F87@AdobeOrg",
- "updated_at": "2022-06-21T05:22:24.965Z",
- "token": "b50dc894a68e",
+ "created_at": "2023-02-15T18:08:48.274Z",
+ "name": "Abbott, Blanda and Langosh",
+ "org_id": "FD2BB72EB0F806C294094B75@AdobeOrg",
+ "updated_at": "2023-02-15T18:08:48.274Z",
+ "token": "7827217e40f4",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -4311,46 +4306,49 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO5f83553fd301417583d5e71b1868553c/properties"
+ "related": "https://reactor.adobe.io/companies/CO055c5174de9f44e0aa7643743e746763/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO5f83553fd301417583d5e71b1868553c/entitlements"
+ "related": "https://reactor.adobe.io/companies/CO055c5174de9f44e0aa7643743e746763/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/CO5f83553fd301417583d5e71b1868553c",
- "properties": "https://reactor.adobe.io/companies/CO5f83553fd301417583d5e71b1868553c/properties",
- "entitlements": "https://reactor.adobe.io/companies/CO5f83553fd301417583d5e71b1868553c/entitlements"
+ "self": "https://reactor.adobe.io/companies/CO055c5174de9f44e0aa7643743e746763",
+ "properties": "https://reactor.adobe.io/companies/CO055c5174de9f44e0aa7643743e746763/properties",
+ "entitlements": "https://reactor.adobe.io/companies/CO055c5174de9f44e0aa7643743e746763/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "CO8e987a2becf2495d8233af3fabde2ef1",
+ "id": "COc4ee99af892a4c428c7ef6c527bf38a7",
"type": "companies",
"attributes": {
- "created_at": "2022-06-21T03:46:51.056Z",
- "name": "Cole LLC",
- "org_id": "27900BE15862BB29519BE6A7@AdobeOrg",
- "updated_at": "2022-06-21T03:46:51.056Z",
- "token": "52b5b1168118",
+ "created_at": "2023-02-15T18:06:06.443Z",
+ "name": "Abbott, Braun and Willms",
+ "org_id": "07206D3B195D87973BE2C86D@AdobeOrg",
+ "updated_at": "2023-02-15T18:06:06.443Z",
+ "token": "513e47c1e838",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -4359,50 +4357,49 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO8e987a2becf2495d8233af3fabde2ef1/properties"
+ "related": "https://reactor.adobe.io/companies/COc4ee99af892a4c428c7ef6c527bf38a7/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO8e987a2becf2495d8233af3fabde2ef1/entitlements"
+ "related": "https://reactor.adobe.io/companies/COc4ee99af892a4c428c7ef6c527bf38a7/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/CO8e987a2becf2495d8233af3fabde2ef1",
- "properties": "https://reactor.adobe.io/companies/CO8e987a2becf2495d8233af3fabde2ef1/properties",
- "entitlements": "https://reactor.adobe.io/companies/CO8e987a2becf2495d8233af3fabde2ef1/entitlements"
+ "self": "https://reactor.adobe.io/companies/COc4ee99af892a4c428c7ef6c527bf38a7",
+ "properties": "https://reactor.adobe.io/companies/COc4ee99af892a4c428c7ef6c527bf38a7/properties",
+ "entitlements": "https://reactor.adobe.io/companies/COc4ee99af892a4c428c7ef6c527bf38a7/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
- "edge": [
- "develop_extensions",
- "manage_properties"
- ],
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "CO9750607edfd24e09a3fd3f6da8c0b768",
+ "id": "CO1ec8a18fd3d5495c930ffb9568b0770f",
"type": "companies",
"attributes": {
- "created_at": "2022-06-21T04:02:33.821Z",
- "name": "Collier-O'Reilly",
- "org_id": "999F077ABE92CFEEC63C875E@AdobeOrg",
- "updated_at": "2022-06-21T04:02:33.821Z",
- "token": "6395da6463f0",
+ "created_at": "2023-02-15T18:08:32.291Z",
+ "name": "Abbott-Casper",
+ "org_id": "D5835A9816F32E551689BD06@AdobeOrg",
+ "updated_at": "2023-02-15T18:08:32.291Z",
+ "token": "0af6e3849d59",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -4411,46 +4408,49 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO9750607edfd24e09a3fd3f6da8c0b768/properties"
+ "related": "https://reactor.adobe.io/companies/CO1ec8a18fd3d5495c930ffb9568b0770f/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO9750607edfd24e09a3fd3f6da8c0b768/entitlements"
+ "related": "https://reactor.adobe.io/companies/CO1ec8a18fd3d5495c930ffb9568b0770f/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/CO9750607edfd24e09a3fd3f6da8c0b768",
- "properties": "https://reactor.adobe.io/companies/CO9750607edfd24e09a3fd3f6da8c0b768/properties",
- "entitlements": "https://reactor.adobe.io/companies/CO9750607edfd24e09a3fd3f6da8c0b768/entitlements"
+ "self": "https://reactor.adobe.io/companies/CO1ec8a18fd3d5495c930ffb9568b0770f",
+ "properties": "https://reactor.adobe.io/companies/CO1ec8a18fd3d5495c930ffb9568b0770f/properties",
+ "entitlements": "https://reactor.adobe.io/companies/CO1ec8a18fd3d5495c930ffb9568b0770f/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "COf5c80e0e51e94fe4b9ccd0ef11820596",
+ "id": "COa0704c3e79d44cfca1fcd08466d7e30f",
"type": "companies",
"attributes": {
- "created_at": "2022-06-21T05:22:06.907Z",
- "name": "Conn-Anderson",
- "org_id": "2F14CB2A4E03FF75E009DA35@AdobeOrg",
- "updated_at": "2022-06-21T05:22:06.907Z",
- "token": "58fb06cdf84f",
+ "created_at": "2023-02-15T18:08:28.235Z",
+ "name": "Abbott-Christiansen",
+ "org_id": "481D9F3B323C3C091D3A23E0@AdobeOrg",
+ "updated_at": "2023-02-15T18:08:28.235Z",
+ "token": "1e70f02fb3c7",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -4459,46 +4459,49 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/COf5c80e0e51e94fe4b9ccd0ef11820596/properties"
+ "related": "https://reactor.adobe.io/companies/COa0704c3e79d44cfca1fcd08466d7e30f/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/COf5c80e0e51e94fe4b9ccd0ef11820596/entitlements"
+ "related": "https://reactor.adobe.io/companies/COa0704c3e79d44cfca1fcd08466d7e30f/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/COf5c80e0e51e94fe4b9ccd0ef11820596",
- "properties": "https://reactor.adobe.io/companies/COf5c80e0e51e94fe4b9ccd0ef11820596/properties",
- "entitlements": "https://reactor.adobe.io/companies/COf5c80e0e51e94fe4b9ccd0ef11820596/entitlements"
+ "self": "https://reactor.adobe.io/companies/COa0704c3e79d44cfca1fcd08466d7e30f",
+ "properties": "https://reactor.adobe.io/companies/COa0704c3e79d44cfca1fcd08466d7e30f/properties",
+ "entitlements": "https://reactor.adobe.io/companies/COa0704c3e79d44cfca1fcd08466d7e30f/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "COd3c53cf232014046a6511c30c2995462",
+ "id": "CO3f9de3ccdb224e068a10c62e594e668b",
"type": "companies",
"attributes": {
- "created_at": "2022-06-21T04:37:30.059Z",
- "name": "Conroy Group",
- "org_id": "43ED3C4679C6857A85BE5FB0@AdobeOrg",
- "updated_at": "2022-06-21T04:37:30.059Z",
- "token": "a2da4cb4bbe2",
+ "created_at": "2023-02-15T18:08:16.447Z",
+ "name": "Abbott-Kautzer",
+ "org_id": "A5BE58FD5775FB515FA4E4BB@AdobeOrg",
+ "updated_at": "2023-02-15T18:08:16.447Z",
+ "token": "1f102dbc1b8c",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -4507,46 +4510,49 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/COd3c53cf232014046a6511c30c2995462/properties"
+ "related": "https://reactor.adobe.io/companies/CO3f9de3ccdb224e068a10c62e594e668b/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/COd3c53cf232014046a6511c30c2995462/entitlements"
+ "related": "https://reactor.adobe.io/companies/CO3f9de3ccdb224e068a10c62e594e668b/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/COd3c53cf232014046a6511c30c2995462",
- "properties": "https://reactor.adobe.io/companies/COd3c53cf232014046a6511c30c2995462/properties",
- "entitlements": "https://reactor.adobe.io/companies/COd3c53cf232014046a6511c30c2995462/entitlements"
+ "self": "https://reactor.adobe.io/companies/CO3f9de3ccdb224e068a10c62e594e668b",
+ "properties": "https://reactor.adobe.io/companies/CO3f9de3ccdb224e068a10c62e594e668b/properties",
+ "entitlements": "https://reactor.adobe.io/companies/CO3f9de3ccdb224e068a10c62e594e668b/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "COb495543065944c6b93c3120b95ac4039",
+ "id": "COe1d2fbcad83a44d086ed68a86aa7aeee",
"type": "companies",
"attributes": {
- "created_at": "2022-06-21T04:37:18.029Z",
- "name": "Grant, Heaney and Kirlin",
- "org_id": "543E880E33FB2E06AA4147A6@AdobeOrg",
- "updated_at": "2022-06-21T04:37:18.029Z",
- "token": "8159a54ca0d1",
+ "created_at": "2023-02-15T18:06:09.904Z",
+ "name": "Abbott, Kertzmann and Macejkovic",
+ "org_id": "EC54ECF444B1B4B4D8DEE59C@AdobeOrg",
+ "updated_at": "2023-02-15T18:06:09.904Z",
+ "token": "802ae63c03de",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -4555,46 +4561,49 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/COb495543065944c6b93c3120b95ac4039/properties"
+ "related": "https://reactor.adobe.io/companies/COe1d2fbcad83a44d086ed68a86aa7aeee/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/COb495543065944c6b93c3120b95ac4039/entitlements"
+ "related": "https://reactor.adobe.io/companies/COe1d2fbcad83a44d086ed68a86aa7aeee/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/COb495543065944c6b93c3120b95ac4039",
- "properties": "https://reactor.adobe.io/companies/COb495543065944c6b93c3120b95ac4039/properties",
- "entitlements": "https://reactor.adobe.io/companies/COb495543065944c6b93c3120b95ac4039/entitlements"
+ "self": "https://reactor.adobe.io/companies/COe1d2fbcad83a44d086ed68a86aa7aeee",
+ "properties": "https://reactor.adobe.io/companies/COe1d2fbcad83a44d086ed68a86aa7aeee/properties",
+ "entitlements": "https://reactor.adobe.io/companies/COe1d2fbcad83a44d086ed68a86aa7aeee/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "COd458cbe0d9104a8c866830bad63c6f74",
+ "id": "COedc27e7a412649bdabbcc944edf4a243",
"type": "companies",
"attributes": {
- "created_at": "2022-06-21T04:37:30.090Z",
- "name": "Hagenes, Mohr and Lang",
- "org_id": "86B1B93271C732705E39C722@AdobeOrg",
- "updated_at": "2022-06-21T04:37:30.090Z",
- "token": "65e2fca88104",
+ "created_at": "2023-02-15T18:06:29.624Z",
+ "name": "Abbott, Littel and Hermann",
+ "org_id": "D6E588B15813CD0BE965BFDC@AdobeOrg",
+ "updated_at": "2023-02-15T18:06:29.624Z",
+ "token": "ced7c8c072bb",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -4603,50 +4612,49 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/COd458cbe0d9104a8c866830bad63c6f74/properties"
+ "related": "https://reactor.adobe.io/companies/COedc27e7a412649bdabbcc944edf4a243/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/COd458cbe0d9104a8c866830bad63c6f74/entitlements"
+ "related": "https://reactor.adobe.io/companies/COedc27e7a412649bdabbcc944edf4a243/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/COd458cbe0d9104a8c866830bad63c6f74",
- "properties": "https://reactor.adobe.io/companies/COd458cbe0d9104a8c866830bad63c6f74/properties",
- "entitlements": "https://reactor.adobe.io/companies/COd458cbe0d9104a8c866830bad63c6f74/entitlements"
+ "self": "https://reactor.adobe.io/companies/COedc27e7a412649bdabbcc944edf4a243",
+ "properties": "https://reactor.adobe.io/companies/COedc27e7a412649bdabbcc944edf4a243/properties",
+ "entitlements": "https://reactor.adobe.io/companies/COedc27e7a412649bdabbcc944edf4a243/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
- "edge": [
- "develop_extensions",
- "manage_properties"
- ],
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "CO44798e088ea14b6db31f052c9bee7a72",
+ "id": "CO5c18b89644e6453886533868c052bf13",
"type": "companies",
"attributes": {
- "created_at": "2022-06-21T04:47:15.425Z",
- "name": "Herman-Doyle",
- "org_id": "E321EB2B821C5EAEE782B6EE@AdobeOrg",
- "updated_at": "2022-06-21T04:47:15.425Z",
- "token": "1a7c4404a5ce",
+ "created_at": "2023-02-15T18:05:10.308Z",
+ "name": "Abbott LLC",
+ "org_id": "A0AAA7D4F51025918BE97537@AdobeOrg",
+ "updated_at": "2023-02-15T18:05:10.308Z",
+ "token": "bb03f18281b0",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -4655,46 +4663,49 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO44798e088ea14b6db31f052c9bee7a72/properties"
+ "related": "https://reactor.adobe.io/companies/CO5c18b89644e6453886533868c052bf13/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO44798e088ea14b6db31f052c9bee7a72/entitlements"
+ "related": "https://reactor.adobe.io/companies/CO5c18b89644e6453886533868c052bf13/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/CO44798e088ea14b6db31f052c9bee7a72",
- "properties": "https://reactor.adobe.io/companies/CO44798e088ea14b6db31f052c9bee7a72/properties",
- "entitlements": "https://reactor.adobe.io/companies/CO44798e088ea14b6db31f052c9bee7a72/entitlements"
+ "self": "https://reactor.adobe.io/companies/CO5c18b89644e6453886533868c052bf13",
+ "properties": "https://reactor.adobe.io/companies/CO5c18b89644e6453886533868c052bf13/properties",
+ "entitlements": "https://reactor.adobe.io/companies/CO5c18b89644e6453886533868c052bf13/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "CO878859827481402b8e4a673eab3db12c",
+ "id": "COde74662797c240b2b700366cb9eb7158",
"type": "companies",
"attributes": {
- "created_at": "2022-06-21T03:46:51.015Z",
- "name": "Kerluke LLC",
- "org_id": "5750BF4C6F35753D01D1330B@AdobeOrg",
- "updated_at": "2022-06-21T03:46:51.015Z",
- "token": "7e199f85d806",
+ "created_at": "2023-02-15T18:08:12.577Z",
+ "name": "Abbott LLC",
+ "org_id": "B8AF4E70390B3E45698DE30A@AdobeOrg",
+ "updated_at": "2023-02-15T18:08:12.577Z",
+ "token": "d4ab0f578488",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -4703,46 +4714,49 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO878859827481402b8e4a673eab3db12c/properties"
+ "related": "https://reactor.adobe.io/companies/COde74662797c240b2b700366cb9eb7158/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO878859827481402b8e4a673eab3db12c/entitlements"
+ "related": "https://reactor.adobe.io/companies/COde74662797c240b2b700366cb9eb7158/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/CO878859827481402b8e4a673eab3db12c",
- "properties": "https://reactor.adobe.io/companies/CO878859827481402b8e4a673eab3db12c/properties",
- "entitlements": "https://reactor.adobe.io/companies/CO878859827481402b8e4a673eab3db12c/entitlements"
+ "self": "https://reactor.adobe.io/companies/COde74662797c240b2b700366cb9eb7158",
+ "properties": "https://reactor.adobe.io/companies/COde74662797c240b2b700366cb9eb7158/properties",
+ "entitlements": "https://reactor.adobe.io/companies/COde74662797c240b2b700366cb9eb7158/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "CO4e40024de9684ce986c3c0708062233f",
+ "id": "COdea17f0add1b4b158adba2faf24d2e41",
"type": "companies",
"attributes": {
- "created_at": "2022-06-21T05:22:24.994Z",
- "name": "Kunze LLC",
- "org_id": "9418E8B978F7427E4FFA984A@AdobeOrg",
- "updated_at": "2022-06-21T05:22:24.994Z",
- "token": "c620656a6e13",
+ "created_at": "2023-02-15T18:07:21.724Z",
+ "name": "Abbott, Parisian and Fisher",
+ "org_id": "C1CD1E0B8B315DEAAC7ACF73@AdobeOrg",
+ "updated_at": "2023-02-15T18:07:21.724Z",
+ "token": "b6f502e2cb54",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -4751,50 +4765,49 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO4e40024de9684ce986c3c0708062233f/properties"
+ "related": "https://reactor.adobe.io/companies/COdea17f0add1b4b158adba2faf24d2e41/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO4e40024de9684ce986c3c0708062233f/entitlements"
+ "related": "https://reactor.adobe.io/companies/COdea17f0add1b4b158adba2faf24d2e41/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/CO4e40024de9684ce986c3c0708062233f",
- "properties": "https://reactor.adobe.io/companies/CO4e40024de9684ce986c3c0708062233f/properties",
- "entitlements": "https://reactor.adobe.io/companies/CO4e40024de9684ce986c3c0708062233f/entitlements"
+ "self": "https://reactor.adobe.io/companies/COdea17f0add1b4b158adba2faf24d2e41",
+ "properties": "https://reactor.adobe.io/companies/COdea17f0add1b4b158adba2faf24d2e41/properties",
+ "entitlements": "https://reactor.adobe.io/companies/COdea17f0add1b4b158adba2faf24d2e41/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
- "edge": [
- "develop_extensions",
- "manage_properties"
- ],
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "CO7b9918ad21ac47be88e6e571ac730654",
+ "id": "CO811038242c9549589fb5b078000ebf8d",
"type": "companies",
"attributes": {
- "created_at": "2022-06-21T04:07:37.501Z",
- "name": "Langworth-Fisher",
- "org_id": "F54F858A8F73584047AFB515@AdobeOrg",
- "updated_at": "2022-06-21T04:07:37.501Z",
- "token": "a891180b87fa",
+ "created_at": "2023-02-15T18:09:12.570Z",
+ "name": "Abbott-Ritchie",
+ "org_id": "CB33C3E30EFE1C5438F2BAEB@AdobeOrg",
+ "updated_at": "2023-02-15T18:09:12.570Z",
+ "token": "68ea0ddd5048",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -4803,50 +4816,49 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO7b9918ad21ac47be88e6e571ac730654/properties"
+ "related": "https://reactor.adobe.io/companies/CO811038242c9549589fb5b078000ebf8d/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO7b9918ad21ac47be88e6e571ac730654/entitlements"
+ "related": "https://reactor.adobe.io/companies/CO811038242c9549589fb5b078000ebf8d/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/CO7b9918ad21ac47be88e6e571ac730654",
- "properties": "https://reactor.adobe.io/companies/CO7b9918ad21ac47be88e6e571ac730654/properties",
- "entitlements": "https://reactor.adobe.io/companies/CO7b9918ad21ac47be88e6e571ac730654/entitlements"
+ "self": "https://reactor.adobe.io/companies/CO811038242c9549589fb5b078000ebf8d",
+ "properties": "https://reactor.adobe.io/companies/CO811038242c9549589fb5b078000ebf8d/properties",
+ "entitlements": "https://reactor.adobe.io/companies/CO811038242c9549589fb5b078000ebf8d/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
- "edge": [
- "develop_extensions",
- "manage_properties"
- ],
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "CObb5354aebcd44877941e51495a6392b0",
+ "id": "CO80c8212d948d4ec0992c33370412c42e",
"type": "companies",
"attributes": {
- "created_at": "2022-06-21T03:46:10.697Z",
- "name": "Oga, Grimes and Reinger",
- "org_id": "8D1FA69182091263745C03F0@AdobeOrg",
- "updated_at": "2022-06-21T03:46:10.697Z",
- "token": "61d3481c227d",
+ "created_at": "2023-02-15T18:09:53.141Z",
+ "name": "Abbott, Schowalter and Reinger",
+ "org_id": "ABEE415BD54A4A9D1DD63C4B@AdobeOrg",
+ "updated_at": "2023-02-15T18:09:53.141Z",
+ "token": "489eb9956a30",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -4855,46 +4867,49 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/CObb5354aebcd44877941e51495a6392b0/properties"
+ "related": "https://reactor.adobe.io/companies/CO80c8212d948d4ec0992c33370412c42e/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/CObb5354aebcd44877941e51495a6392b0/entitlements"
+ "related": "https://reactor.adobe.io/companies/CO80c8212d948d4ec0992c33370412c42e/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/CObb5354aebcd44877941e51495a6392b0",
- "properties": "https://reactor.adobe.io/companies/CObb5354aebcd44877941e51495a6392b0/properties",
- "entitlements": "https://reactor.adobe.io/companies/CObb5354aebcd44877941e51495a6392b0/entitlements"
+ "self": "https://reactor.adobe.io/companies/CO80c8212d948d4ec0992c33370412c42e",
+ "properties": "https://reactor.adobe.io/companies/CO80c8212d948d4ec0992c33370412c42e/properties",
+ "entitlements": "https://reactor.adobe.io/companies/CO80c8212d948d4ec0992c33370412c42e/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "CObdd41c15e4364c358befd4abba95cbb1",
+ "id": "CO368ae70aca1c45c9854cc580525267e2",
"type": "companies",
"attributes": {
- "created_at": "2022-06-16T17:20:04.857Z",
- "name": "Platform UI - INT",
- "org_id": "5D1328435BF324E90A49402A@AdobeOrg",
- "updated_at": "2022-06-16T17:20:04.857Z",
- "token": "7c4bf93fdb4f",
+ "created_at": "2023-02-15T18:06:47.957Z",
+ "name": "Abbott-Toy",
+ "org_id": "781DA66A7EEDF7BBD941A1D7@AdobeOrg",
+ "updated_at": "2023-02-15T18:06:47.957Z",
+ "token": "0f1d9d9ebfea",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -4903,50 +4918,49 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/CObdd41c15e4364c358befd4abba95cbb1/properties"
+ "related": "https://reactor.adobe.io/companies/CO368ae70aca1c45c9854cc580525267e2/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/CObdd41c15e4364c358befd4abba95cbb1/entitlements"
+ "related": "https://reactor.adobe.io/companies/CO368ae70aca1c45c9854cc580525267e2/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/CObdd41c15e4364c358befd4abba95cbb1",
- "properties": "https://reactor.adobe.io/companies/CObdd41c15e4364c358befd4abba95cbb1/properties",
- "entitlements": "https://reactor.adobe.io/companies/CObdd41c15e4364c358befd4abba95cbb1/entitlements"
+ "self": "https://reactor.adobe.io/companies/CO368ae70aca1c45c9854cc580525267e2",
+ "properties": "https://reactor.adobe.io/companies/CO368ae70aca1c45c9854cc580525267e2/properties",
+ "entitlements": "https://reactor.adobe.io/companies/CO368ae70aca1c45c9854cc580525267e2/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
- "edge": [
- "develop_extensions",
- "manage_properties"
- ],
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "CO72466ee7437f4e81a34d62651228e05a",
+ "id": "CO05adc54dcb3444afaa9342ffb889554e",
"type": "companies",
"attributes": {
- "created_at": "2022-06-16T17:20:05.142Z",
- "name": "QE Launch Automation",
- "org_id": "233432C559D3F8C90A49410E@AdobeOrg",
- "updated_at": "2022-06-16T17:20:05.142Z",
- "token": "ee7c55b469cc",
+ "created_at": "2023-02-15T18:08:31.133Z",
+ "name": "Abbott, VonRueden and Sporer",
+ "org_id": "7AACC730F9939F9E162DC0AA@AdobeOrg",
+ "updated_at": "2023-02-15T18:08:31.133Z",
+ "token": "bde2cbc63637",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -4955,46 +4969,49 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO72466ee7437f4e81a34d62651228e05a/properties"
+ "related": "https://reactor.adobe.io/companies/CO05adc54dcb3444afaa9342ffb889554e/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO72466ee7437f4e81a34d62651228e05a/entitlements"
+ "related": "https://reactor.adobe.io/companies/CO05adc54dcb3444afaa9342ffb889554e/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/CO72466ee7437f4e81a34d62651228e05a",
- "properties": "https://reactor.adobe.io/companies/CO72466ee7437f4e81a34d62651228e05a/properties",
- "entitlements": "https://reactor.adobe.io/companies/CO72466ee7437f4e81a34d62651228e05a/entitlements"
+ "self": "https://reactor.adobe.io/companies/CO05adc54dcb3444afaa9342ffb889554e",
+ "properties": "https://reactor.adobe.io/companies/CO05adc54dcb3444afaa9342ffb889554e/properties",
+ "entitlements": "https://reactor.adobe.io/companies/CO05adc54dcb3444afaa9342ffb889554e/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "CO843f8afde43b4cdfaa0d73b2fec1fc5a",
+ "id": "CO9ace0ad924234930b8221dae37ebf1e7",
"type": "companies",
"attributes": {
- "created_at": "2022-06-21T04:47:30.499Z",
- "name": "Quigley-Dare",
- "org_id": "7D53F878100B7F548EE2D23F@AdobeOrg",
- "updated_at": "2022-06-21T04:47:30.499Z",
- "token": "066d004b305e",
+ "created_at": "2023-02-15T18:08:26.118Z",
+ "name": "Abernathy and Sons",
+ "org_id": "14EFC3EFDFBAFB96061F32F0@AdobeOrg",
+ "updated_at": "2023-02-15T18:08:26.118Z",
+ "token": "6207bcdf4756",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -5003,50 +5020,49 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO843f8afde43b4cdfaa0d73b2fec1fc5a/properties"
+ "related": "https://reactor.adobe.io/companies/CO9ace0ad924234930b8221dae37ebf1e7/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO843f8afde43b4cdfaa0d73b2fec1fc5a/entitlements"
+ "related": "https://reactor.adobe.io/companies/CO9ace0ad924234930b8221dae37ebf1e7/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/CO843f8afde43b4cdfaa0d73b2fec1fc5a",
- "properties": "https://reactor.adobe.io/companies/CO843f8afde43b4cdfaa0d73b2fec1fc5a/properties",
- "entitlements": "https://reactor.adobe.io/companies/CO843f8afde43b4cdfaa0d73b2fec1fc5a/entitlements"
+ "self": "https://reactor.adobe.io/companies/CO9ace0ad924234930b8221dae37ebf1e7",
+ "properties": "https://reactor.adobe.io/companies/CO9ace0ad924234930b8221dae37ebf1e7/properties",
+ "entitlements": "https://reactor.adobe.io/companies/CO9ace0ad924234930b8221dae37ebf1e7/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
- "edge": [
- "develop_extensions",
- "manage_properties"
- ],
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
+ "id": "CO8e8feded57e94a029b0a5010cf70f1c8",
"type": "companies",
"attributes": {
- "created_at": "2022-06-16T17:20:05.122Z",
- "name": "Reactor QE",
- "org_id": "08364A825824E04F0A494115@AdobeOrg",
- "updated_at": "2022-06-16T17:20:05.122Z",
- "token": "042253ab27b4",
+ "created_at": "2023-02-15T18:08:59.995Z",
+ "name": "Abernathy, Cronin and Beier",
+ "org_id": "EA74C1744654F0066110BF9A@AdobeOrg",
+ "updated_at": "2023-02-15T18:08:59.995Z",
+ "token": "bbc8fc3881b2",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -5055,54 +5071,49 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb/properties"
+ "related": "https://reactor.adobe.io/companies/CO8e8feded57e94a029b0a5010cf70f1c8/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb/entitlements"
+ "related": "https://reactor.adobe.io/companies/CO8e8feded57e94a029b0a5010cf70f1c8/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "properties": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb/properties",
- "entitlements": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb/entitlements"
+ "self": "https://reactor.adobe.io/companies/CO8e8feded57e94a029b0a5010cf70f1c8",
+ "properties": "https://reactor.adobe.io/companies/CO8e8feded57e94a029b0a5010cf70f1c8/properties",
+ "entitlements": "https://reactor.adobe.io/companies/CO8e8feded57e94a029b0a5010cf70f1c8/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
],
"platform_rights": {
- "edge": [
- "develop_extensions",
- "manage_properties",
- "manage_app_configurations"
- ],
"web": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
],
"mobile": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
]
}
}
},
{
- "id": "COa1979ea3b4a44906ba7ebc7b05c44f31",
+ "id": "COf3849dc444a44d428161f28870561585",
"type": "companies",
"attributes": {
- "created_at": "2022-06-21T04:02:33.847Z",
- "name": "Satterfield Group",
- "org_id": "2C86627D51DF23B9466CBA1A@AdobeOrg",
- "updated_at": "2022-06-21T04:02:33.847Z",
- "token": "660a95fd5a2d",
+ "created_at": "2023-02-15T18:10:31.306Z",
+ "name": "Abernathy-Crooks",
+ "org_id": "649CCE119BCD3D466FAA3793@AdobeOrg",
+ "updated_at": "2023-02-15T18:10:31.306Z",
+ "token": "095271e6a4f3",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -5111,50 +5122,100 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/COa1979ea3b4a44906ba7ebc7b05c44f31/properties"
+ "related": "https://reactor.adobe.io/companies/COf3849dc444a44d428161f28870561585/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/COa1979ea3b4a44906ba7ebc7b05c44f31/entitlements"
+ "related": "https://reactor.adobe.io/companies/COf3849dc444a44d428161f28870561585/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/COa1979ea3b4a44906ba7ebc7b05c44f31",
- "properties": "https://reactor.adobe.io/companies/COa1979ea3b4a44906ba7ebc7b05c44f31/properties",
- "entitlements": "https://reactor.adobe.io/companies/COa1979ea3b4a44906ba7ebc7b05c44f31/entitlements"
+ "self": "https://reactor.adobe.io/companies/COf3849dc444a44d428161f28870561585",
+ "properties": "https://reactor.adobe.io/companies/COf3849dc444a44d428161f28870561585/properties",
+ "entitlements": "https://reactor.adobe.io/companies/COf3849dc444a44d428161f28870561585/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
- "edge": [
+ "web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
+ "mobile": [
+ "develop_extensions",
+ "manage_app_configurations",
+ "manage_properties"
+ ]
+ }
+ }
+ },
+ {
+ "id": "CO92e68d4bd3104e218b626e5d34db4a93",
+ "type": "companies",
+ "attributes": {
+ "created_at": "2023-02-15T18:05:47.918Z",
+ "name": "Abernathy, Effertz and Pfannerstill",
+ "org_id": "764FA1AF2F0398FB03C42D33@AdobeOrg",
+ "updated_at": "2023-02-15T18:05:47.918Z",
+ "token": "d2eeb347073c",
+ "created_by_email": "N/A",
+ "created_by_display_name": "N/A",
+ "updated_by_email": "N/A",
+ "updated_by_display_name": "N/A"
+ },
+ "relationships": {
+ "properties": {
+ "links": {
+ "related": "https://reactor.adobe.io/companies/CO92e68d4bd3104e218b626e5d34db4a93/properties"
+ }
+ },
+ "entitlements": {
+ "links": {
+ "related": "https://reactor.adobe.io/companies/CO92e68d4bd3104e218b626e5d34db4a93/entitlements"
+ }
+ }
+ },
+ "links": {
+ "self": "https://reactor.adobe.io/companies/CO92e68d4bd3104e218b626e5d34db4a93",
+ "properties": "https://reactor.adobe.io/companies/CO92e68d4bd3104e218b626e5d34db4a93/properties",
+ "entitlements": "https://reactor.adobe.io/companies/CO92e68d4bd3104e218b626e5d34db4a93/entitlements"
+ },
+ "meta": {
+ "rights": [
+ "develop_extensions",
+ "manage_app_configurations",
+ "manage_properties"
+ ],
+ "platform_rights": {
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "COb81bac10dbe346a58bd43d033157ea90",
+ "id": "CO299fc990f2224110b677fa194ff553c5",
"type": "companies",
"attributes": {
- "created_at": "2022-06-21T04:07:37.473Z",
- "name": "Schamberger-Yundt",
- "org_id": "BBCC5DA0A76208AABD990D9A@AdobeOrg",
- "updated_at": "2022-06-21T04:07:37.473Z",
- "token": "b9803f099bd4",
+ "created_at": "2023-02-15T18:06:18.673Z",
+ "name": "Abernathy, Gorczany and Tillman",
+ "org_id": "CE3F3B540D845107D266C21D@AdobeOrg",
+ "updated_at": "2023-02-15T18:06:18.673Z",
+ "token": "2077ce4b6f5c",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -5163,46 +5224,49 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/COb81bac10dbe346a58bd43d033157ea90/properties"
+ "related": "https://reactor.adobe.io/companies/CO299fc990f2224110b677fa194ff553c5/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/COb81bac10dbe346a58bd43d033157ea90/entitlements"
+ "related": "https://reactor.adobe.io/companies/CO299fc990f2224110b677fa194ff553c5/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/COb81bac10dbe346a58bd43d033157ea90",
- "properties": "https://reactor.adobe.io/companies/COb81bac10dbe346a58bd43d033157ea90/properties",
- "entitlements": "https://reactor.adobe.io/companies/COb81bac10dbe346a58bd43d033157ea90/entitlements"
+ "self": "https://reactor.adobe.io/companies/CO299fc990f2224110b677fa194ff553c5",
+ "properties": "https://reactor.adobe.io/companies/CO299fc990f2224110b677fa194ff553c5/properties",
+ "entitlements": "https://reactor.adobe.io/companies/CO299fc990f2224110b677fa194ff553c5/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "COe01caa535dde4eadb6aa08e850959e41",
+ "id": "CO60f3fcdd899c4c1fb274b7900b936e3f",
"type": "companies",
"attributes": {
- "created_at": "2022-06-21T04:47:30.465Z",
- "name": "Schimmel and Sons",
- "org_id": "06E8142C09796276373D3C4D@AdobeOrg",
- "updated_at": "2022-06-21T04:47:30.465Z",
- "token": "aa1a4f2f2073",
+ "created_at": "2023-02-15T18:04:49.160Z",
+ "name": "Abernathy Group",
+ "org_id": "FB8E1EDD2AB846F7AB12EB1F@AdobeOrg",
+ "updated_at": "2023-02-15T18:04:49.160Z",
+ "token": "9f72b6cdef0f",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -5211,46 +5275,49 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/COe01caa535dde4eadb6aa08e850959e41/properties"
+ "related": "https://reactor.adobe.io/companies/CO60f3fcdd899c4c1fb274b7900b936e3f/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/COe01caa535dde4eadb6aa08e850959e41/entitlements"
+ "related": "https://reactor.adobe.io/companies/CO60f3fcdd899c4c1fb274b7900b936e3f/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/COe01caa535dde4eadb6aa08e850959e41",
- "properties": "https://reactor.adobe.io/companies/COe01caa535dde4eadb6aa08e850959e41/properties",
- "entitlements": "https://reactor.adobe.io/companies/COe01caa535dde4eadb6aa08e850959e41/entitlements"
+ "self": "https://reactor.adobe.io/companies/CO60f3fcdd899c4c1fb274b7900b936e3f",
+ "properties": "https://reactor.adobe.io/companies/CO60f3fcdd899c4c1fb274b7900b936e3f/properties",
+ "entitlements": "https://reactor.adobe.io/companies/CO60f3fcdd899c4c1fb274b7900b936e3f/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "COd004106f59c8472bad3ea150e09a9a50",
+ "id": "CO2acb8d80edd5442083cac0796ac6bb05",
"type": "companies",
"attributes": {
- "created_at": "2022-06-21T05:23:01.745Z",
- "name": "Smith, Sawayn and Kemmer",
- "org_id": "FC5367DF715B2CC31235BC7F@AdobeOrg",
- "updated_at": "2022-06-21T05:23:01.745Z",
- "token": "b6ccc7e31ce8",
+ "created_at": "2023-02-15T18:09:58.859Z",
+ "name": "Abernathy-Hahn",
+ "org_id": "32E65BEDE485FBEC9A8EEE22@AdobeOrg",
+ "updated_at": "2023-02-15T18:09:58.859Z",
+ "token": "7b041f060ff5",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -5259,50 +5326,100 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/COd004106f59c8472bad3ea150e09a9a50/properties"
+ "related": "https://reactor.adobe.io/companies/CO2acb8d80edd5442083cac0796ac6bb05/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/COd004106f59c8472bad3ea150e09a9a50/entitlements"
+ "related": "https://reactor.adobe.io/companies/CO2acb8d80edd5442083cac0796ac6bb05/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/COd004106f59c8472bad3ea150e09a9a50",
- "properties": "https://reactor.adobe.io/companies/COd004106f59c8472bad3ea150e09a9a50/properties",
- "entitlements": "https://reactor.adobe.io/companies/COd004106f59c8472bad3ea150e09a9a50/entitlements"
+ "self": "https://reactor.adobe.io/companies/CO2acb8d80edd5442083cac0796ac6bb05",
+ "properties": "https://reactor.adobe.io/companies/CO2acb8d80edd5442083cac0796ac6bb05/properties",
+ "entitlements": "https://reactor.adobe.io/companies/CO2acb8d80edd5442083cac0796ac6bb05/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
- "edge": [
+ "web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
+ "mobile": [
+ "develop_extensions",
+ "manage_app_configurations",
+ "manage_properties"
+ ]
+ }
+ }
+ },
+ {
+ "id": "COa34e1ac33e29456d955a5f6ed60f068f",
+ "type": "companies",
+ "attributes": {
+ "created_at": "2023-02-15T18:08:53.063Z",
+ "name": "Abernathy, Herzog and Emard",
+ "org_id": "436A961819D5CA9A4A752AEF@AdobeOrg",
+ "updated_at": "2023-02-15T18:08:53.063Z",
+ "token": "2ec83e8bbbd5",
+ "created_by_email": "N/A",
+ "created_by_display_name": "N/A",
+ "updated_by_email": "N/A",
+ "updated_by_display_name": "N/A"
+ },
+ "relationships": {
+ "properties": {
+ "links": {
+ "related": "https://reactor.adobe.io/companies/COa34e1ac33e29456d955a5f6ed60f068f/properties"
+ }
+ },
+ "entitlements": {
+ "links": {
+ "related": "https://reactor.adobe.io/companies/COa34e1ac33e29456d955a5f6ed60f068f/entitlements"
+ }
+ }
+ },
+ "links": {
+ "self": "https://reactor.adobe.io/companies/COa34e1ac33e29456d955a5f6ed60f068f",
+ "properties": "https://reactor.adobe.io/companies/COa34e1ac33e29456d955a5f6ed60f068f/properties",
+ "entitlements": "https://reactor.adobe.io/companies/COa34e1ac33e29456d955a5f6ed60f068f/entitlements"
+ },
+ "meta": {
+ "rights": [
+ "develop_extensions",
+ "manage_app_configurations",
+ "manage_properties"
+ ],
+ "platform_rights": {
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
},
{
- "id": "CO99417dc2206645d58d0b4af23d0b318f",
+ "id": "CO6fa1ac941b8b48479821ea9a718b0b55",
"type": "companies",
"attributes": {
- "created_at": "2022-06-21T05:23:01.717Z",
- "name": "Wilkinson, Torphy and Rolfson",
- "org_id": "0B7502F0E5A2A6B8E9E13790@AdobeOrg",
- "updated_at": "2022-06-21T05:23:01.717Z",
- "token": "ceaa97b82d9f",
+ "created_at": "2023-02-15T18:05:19.836Z",
+ "name": "Abernathy Inc",
+ "org_id": "8F7AE7C9DA515F767E478061@AdobeOrg",
+ "updated_at": "2023-02-15T18:05:19.836Z",
+ "token": "2f424c453b65",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
"updated_by_email": "N/A",
@@ -5311,45 +5428,53 @@
"relationships": {
"properties": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO99417dc2206645d58d0b4af23d0b318f/properties"
+ "related": "https://reactor.adobe.io/companies/CO6fa1ac941b8b48479821ea9a718b0b55/properties"
}
},
"entitlements": {
"links": {
- "related": "https://reactor.adobe.io/companies/CO99417dc2206645d58d0b4af23d0b318f/entitlements"
+ "related": "https://reactor.adobe.io/companies/CO6fa1ac941b8b48479821ea9a718b0b55/entitlements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/companies/CO99417dc2206645d58d0b4af23d0b318f",
- "properties": "https://reactor.adobe.io/companies/CO99417dc2206645d58d0b4af23d0b318f/properties",
- "entitlements": "https://reactor.adobe.io/companies/CO99417dc2206645d58d0b4af23d0b318f/entitlements"
+ "self": "https://reactor.adobe.io/companies/CO6fa1ac941b8b48479821ea9a718b0b55",
+ "properties": "https://reactor.adobe.io/companies/CO6fa1ac941b8b48479821ea9a718b0b55/properties",
+ "entitlements": "https://reactor.adobe.io/companies/CO6fa1ac941b8b48479821ea9a718b0b55/entitlements"
},
"meta": {
"rights": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"platform_rights": {
"web": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
],
"mobile": [
"develop_extensions",
+ "manage_app_configurations",
"manage_properties"
]
}
}
}
],
+ "links": {
+ "self": "https://reactor.adobe.io/companies?page%5Bnumber%5D=1&page%5Bsize%5D=25",
+ "next": "https://reactor.adobe.io/companies?page%5Bnumber%5D=2&page%5Bsize%5D=25",
+ "last": "https://reactor.adobe.io/companies?page%5Bnumber%5D=324&page%5Bsize%5D=25"
+ },
"meta": {
"pagination": {
"current_page": 1,
- "next_page": null,
+ "next_page": 2,
"prev_page": null,
- "total_pages": 1,
- "total_count": 23
+ "total_pages": 324,
+ "total_count": 8085
}
}
},
@@ -5370,12 +5495,12 @@
"created_at": "2022-06-16T17:20:05.122Z",
"name": "Reactor QE",
"org_id": "08364A825824E04F0A494115@AdobeOrg",
- "updated_at": "2022-06-16T17:20:05.122Z",
+ "updated_at": "2023-03-23T21:43:40.301Z",
"token": "042253ab27b4",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
- "updated_by_email": "N/A",
- "updated_by_display_name": "N/A"
+ "updated_by_email": "ciltaru@adobe.com",
+ "updated_by_display_name": "George Ciltaru"
},
"relationships": {
"properties": {
@@ -5397,24 +5522,24 @@
"meta": {
"rights": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
],
"platform_rights": {
"edge": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
],
"web": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
],
"mobile": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
]
}
}
@@ -5437,12 +5562,12 @@
"created_at": "2022-06-16T17:20:05.122Z",
"name": "Reactor QE",
"org_id": "08364A825824E04F0A494115@AdobeOrg",
- "updated_at": "2022-06-16T17:20:05.122Z",
+ "updated_at": "2023-03-23T21:43:40.301Z",
"token": "042253ab27b4",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
- "updated_by_email": "N/A",
- "updated_by_display_name": "N/A"
+ "updated_by_email": "ciltaru@adobe.com",
+ "updated_by_display_name": "George Ciltaru"
},
"relationships": {
"properties": {
@@ -5464,24 +5589,24 @@
"meta": {
"rights": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
],
"platform_rights": {
"edge": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
],
"web": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
],
"mobile": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
]
}
}
@@ -5504,12 +5629,12 @@
"created_at": "2022-06-16T17:20:05.122Z",
"name": "Reactor QE",
"org_id": "08364A825824E04F0A494115@AdobeOrg",
- "updated_at": "2022-06-16T17:20:05.122Z",
+ "updated_at": "2023-03-23T21:43:40.301Z",
"token": "042253ab27b4",
"created_by_email": "N/A",
"created_by_display_name": "N/A",
- "updated_by_email": "N/A",
- "updated_by_display_name": "N/A"
+ "updated_by_email": "ciltaru@adobe.com",
+ "updated_by_display_name": "George Ciltaru"
},
"relationships": {
"properties": {
@@ -5531,24 +5656,24 @@
"meta": {
"rights": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
],
"platform_rights": {
"edge": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
],
"web": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
],
"mobile": [
"develop_extensions",
- "manage_properties",
- "manage_app_configurations"
+ "manage_app_configurations",
+ "manage_properties"
]
}
}
@@ -5577,7 +5702,7 @@
"relationships": {
"extension": {
"data": {
- "id": "EX15eabda057c84e0f8f3dc0eec733cae3",
+ "id": "EX1425d6e989bb4b72ba245fe729211785",
"type": "extensions"
}
}
@@ -5587,10 +5712,10 @@
},
"response": {
"data": {
- "id": "DEb74ce322fc1246a5bfa76df0a7ecd791",
+ "id": "DE305d6c8dec47488aa86ead90fc6a16cc",
"type": "data_elements",
"attributes": {
- "created_at": "2023-01-30T20:49:37.952Z",
+ "created_at": "2023-04-21T22:55:06.918Z",
"deleted_at": null,
"dirty": true,
"enabled": true,
@@ -5598,7 +5723,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:49:37.952Z",
+ "updated_at": "2023-04-21T22:55:06.918Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -5614,49 +5739,49 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEb74ce322fc1246a5bfa76df0a7ecd791/libraries"
+ "related": "https://reactor.adobe.io/data_elements/DE305d6c8dec47488aa86ead90fc6a16cc/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEb74ce322fc1246a5bfa76df0a7ecd791/revisions"
+ "related": "https://reactor.adobe.io/data_elements/DE305d6c8dec47488aa86ead90fc6a16cc/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEb74ce322fc1246a5bfa76df0a7ecd791/notes"
+ "related": "https://reactor.adobe.io/data_elements/DE305d6c8dec47488aa86ead90fc6a16cc/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEb74ce322fc1246a5bfa76df0a7ecd791/property"
+ "related": "https://reactor.adobe.io/data_elements/DE305d6c8dec47488aa86ead90fc6a16cc/property"
},
"data": {
- "id": "PR51246536955d4e7e8ac787018a8dce71",
+ "id": "PRec36c8b003884c94a812cdc1e7d795ae",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEb74ce322fc1246a5bfa76df0a7ecd791/origin"
+ "related": "https://reactor.adobe.io/data_elements/DE305d6c8dec47488aa86ead90fc6a16cc/origin"
},
"data": {
- "id": "DEb74ce322fc1246a5bfa76df0a7ecd791",
+ "id": "DE305d6c8dec47488aa86ead90fc6a16cc",
"type": "data_elements"
}
},
"extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEb74ce322fc1246a5bfa76df0a7ecd791/extension"
+ "related": "https://reactor.adobe.io/data_elements/DE305d6c8dec47488aa86ead90fc6a16cc/extension"
},
"data": {
- "id": "EX15eabda057c84e0f8f3dc0eec733cae3",
+ "id": "EX1425d6e989bb4b72ba245fe729211785",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEb74ce322fc1246a5bfa76df0a7ecd791/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/data_elements/DE305d6c8dec47488aa86ead90fc6a16cc/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -5665,19 +5790,19 @@
},
"updated_with_extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEb74ce322fc1246a5bfa76df0a7ecd791/updated_with_extension"
+ "related": "https://reactor.adobe.io/data_elements/DE305d6c8dec47488aa86ead90fc6a16cc/updated_with_extension"
},
"data": {
- "id": "EX52d472fe9cd549ecb50c92e1b25d9220",
+ "id": "EX0a1201bf26a844d19ad3c9897efcfef4",
"type": "extensions"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR51246536955d4e7e8ac787018a8dce71",
- "origin": "https://reactor.adobe.io/data_elements/DEb74ce322fc1246a5bfa76df0a7ecd791",
- "self": "https://reactor.adobe.io/data_elements/DEb74ce322fc1246a5bfa76df0a7ecd791",
- "extension": "https://reactor.adobe.io/extensions/EX15eabda057c84e0f8f3dc0eec733cae3"
+ "property": "https://reactor.adobe.io/properties/PRec36c8b003884c94a812cdc1e7d795ae",
+ "origin": "https://reactor.adobe.io/data_elements/DE305d6c8dec47488aa86ead90fc6a16cc",
+ "self": "https://reactor.adobe.io/data_elements/DE305d6c8dec47488aa86ead90fc6a16cc",
+ "extension": "https://reactor.adobe.io/extensions/EX1425d6e989bb4b72ba245fe729211785"
},
"meta": {
"latest_revision_number": 0
@@ -5695,18 +5820,18 @@
"request": null,
"response": {
"data": {
- "id": "DE9d49e6d893ae477898679d95c92ce972",
+ "id": "DE84ff881155f24d279b45c3a02923ab96",
"type": "data_elements",
"attributes": {
- "created_at": "2023-01-30T20:49:43.665Z",
+ "created_at": "2023-04-21T22:55:12.748Z",
"deleted_at": null,
"dirty": true,
"enabled": true,
- "name": "My Data Element 2023-01-30 13:49:43 -0700",
+ "name": "My Data Element 2023-04-21 16:55:12 -0600",
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:49:43.665Z",
+ "updated_at": "2023-04-21T22:55:12.748Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -5722,49 +5847,49 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE9d49e6d893ae477898679d95c92ce972/libraries"
+ "related": "https://reactor.adobe.io/data_elements/DE84ff881155f24d279b45c3a02923ab96/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE9d49e6d893ae477898679d95c92ce972/revisions"
+ "related": "https://reactor.adobe.io/data_elements/DE84ff881155f24d279b45c3a02923ab96/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE9d49e6d893ae477898679d95c92ce972/notes"
+ "related": "https://reactor.adobe.io/data_elements/DE84ff881155f24d279b45c3a02923ab96/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE9d49e6d893ae477898679d95c92ce972/property"
+ "related": "https://reactor.adobe.io/data_elements/DE84ff881155f24d279b45c3a02923ab96/property"
},
"data": {
- "id": "PR7e961c3f8a0242aa95d86674e254c8d1",
+ "id": "PRb12dd90f1e964d5ab05bf9c6b056fc75",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE9d49e6d893ae477898679d95c92ce972/origin"
+ "related": "https://reactor.adobe.io/data_elements/DE84ff881155f24d279b45c3a02923ab96/origin"
},
"data": {
- "id": "DE9d49e6d893ae477898679d95c92ce972",
+ "id": "DE84ff881155f24d279b45c3a02923ab96",
"type": "data_elements"
}
},
"extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE9d49e6d893ae477898679d95c92ce972/extension"
+ "related": "https://reactor.adobe.io/data_elements/DE84ff881155f24d279b45c3a02923ab96/extension"
},
"data": {
- "id": "EXa233fdd73eb74d9c9026eb77753ecd87",
+ "id": "EXb5ab393a7432428c9e864dd81b83fb01",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE9d49e6d893ae477898679d95c92ce972/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/data_elements/DE84ff881155f24d279b45c3a02923ab96/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -5773,19 +5898,19 @@
},
"updated_with_extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE9d49e6d893ae477898679d95c92ce972/updated_with_extension"
+ "related": "https://reactor.adobe.io/data_elements/DE84ff881155f24d279b45c3a02923ab96/updated_with_extension"
},
"data": {
- "id": "EXa4f7fd297e8546d1b4ad5a7f400702f8",
+ "id": "EX106fcbebad1044faa77a99e4e3dfa1f3",
"type": "extensions"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR7e961c3f8a0242aa95d86674e254c8d1",
- "origin": "https://reactor.adobe.io/data_elements/DE9d49e6d893ae477898679d95c92ce972",
- "self": "https://reactor.adobe.io/data_elements/DE9d49e6d893ae477898679d95c92ce972",
- "extension": "https://reactor.adobe.io/extensions/EXa233fdd73eb74d9c9026eb77753ecd87"
+ "property": "https://reactor.adobe.io/properties/PRb12dd90f1e964d5ab05bf9c6b056fc75",
+ "origin": "https://reactor.adobe.io/data_elements/DE84ff881155f24d279b45c3a02923ab96",
+ "self": "https://reactor.adobe.io/data_elements/DE84ff881155f24d279b45c3a02923ab96",
+ "extension": "https://reactor.adobe.io/extensions/EXb5ab393a7432428c9e864dd81b83fb01"
},
"meta": {
"latest_revision_number": 0
@@ -5804,18 +5929,18 @@
"response": {
"data": [
{
- "id": "DEdb281d4309c348f2aff89d94d1830de4",
+ "id": "DE72d0bc8940354ff0a874ca4fc085cf8c",
"type": "data_elements",
"attributes": {
- "created_at": "2023-01-30T20:49:49.405Z",
+ "created_at": "2023-04-21T22:55:18.485Z",
"deleted_at": null,
"dirty": true,
"enabled": true,
- "name": "My Data Element 2023-01-30 13:49:49 -0700",
+ "name": "My Data Element 2023-04-21 16:55:18 -0600",
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:49:49.405Z",
+ "updated_at": "2023-04-21T22:55:18.485Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -5831,49 +5956,49 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEdb281d4309c348f2aff89d94d1830de4/libraries"
+ "related": "https://reactor.adobe.io/data_elements/DE72d0bc8940354ff0a874ca4fc085cf8c/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEdb281d4309c348f2aff89d94d1830de4/revisions"
+ "related": "https://reactor.adobe.io/data_elements/DE72d0bc8940354ff0a874ca4fc085cf8c/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEdb281d4309c348f2aff89d94d1830de4/notes"
+ "related": "https://reactor.adobe.io/data_elements/DE72d0bc8940354ff0a874ca4fc085cf8c/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEdb281d4309c348f2aff89d94d1830de4/property"
+ "related": "https://reactor.adobe.io/data_elements/DE72d0bc8940354ff0a874ca4fc085cf8c/property"
},
"data": {
- "id": "PR4248f874c6884580b7ce317332cc10cd",
+ "id": "PR6c09c23c76c44d14a6cb540968c98aae",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEdb281d4309c348f2aff89d94d1830de4/origin"
+ "related": "https://reactor.adobe.io/data_elements/DE72d0bc8940354ff0a874ca4fc085cf8c/origin"
},
"data": {
- "id": "DEdb281d4309c348f2aff89d94d1830de4",
+ "id": "DE72d0bc8940354ff0a874ca4fc085cf8c",
"type": "data_elements"
}
},
"extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEdb281d4309c348f2aff89d94d1830de4/extension"
+ "related": "https://reactor.adobe.io/data_elements/DE72d0bc8940354ff0a874ca4fc085cf8c/extension"
},
"data": {
- "id": "EX5a2aa5db9a524a6abc622d1e04a09e66",
+ "id": "EX1d17acefc9084827b6711dcdb43ec076",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEdb281d4309c348f2aff89d94d1830de4/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/data_elements/DE72d0bc8940354ff0a874ca4fc085cf8c/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -5882,19 +6007,19 @@
},
"updated_with_extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEdb281d4309c348f2aff89d94d1830de4/updated_with_extension"
+ "related": "https://reactor.adobe.io/data_elements/DE72d0bc8940354ff0a874ca4fc085cf8c/updated_with_extension"
},
"data": {
- "id": "EXbe69643924d2447da950adbbb401cc30",
+ "id": "EX2f89d885cb8542cb9e18abe2225e0b21",
"type": "extensions"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR4248f874c6884580b7ce317332cc10cd",
- "origin": "https://reactor.adobe.io/data_elements/DEdb281d4309c348f2aff89d94d1830de4",
- "self": "https://reactor.adobe.io/data_elements/DEdb281d4309c348f2aff89d94d1830de4",
- "extension": "https://reactor.adobe.io/extensions/EX5a2aa5db9a524a6abc622d1e04a09e66"
+ "property": "https://reactor.adobe.io/properties/PR6c09c23c76c44d14a6cb540968c98aae",
+ "origin": "https://reactor.adobe.io/data_elements/DE72d0bc8940354ff0a874ca4fc085cf8c",
+ "self": "https://reactor.adobe.io/data_elements/DE72d0bc8940354ff0a874ca4fc085cf8c",
+ "extension": "https://reactor.adobe.io/extensions/EX1d17acefc9084827b6711dcdb43ec076"
},
"meta": {
"latest_revision_number": 0
@@ -5926,15 +6051,15 @@
"settings": "{\"elementSelector\":\".target-element-b\",\"elementProperty\":\"html\"}"
},
"type": "data_elements",
- "id": "DE1246eb06e8884ef4b34a8e87dd9673a7"
+ "id": "DEe52108e5cf1e4b74908028744b8b0d47"
}
},
"response": {
"data": {
- "id": "DE1246eb06e8884ef4b34a8e87dd9673a7",
+ "id": "DEe52108e5cf1e4b74908028744b8b0d47",
"type": "data_elements",
"attributes": {
- "created_at": "2023-01-30T20:49:55.139Z",
+ "created_at": "2023-04-21T22:55:24.306Z",
"deleted_at": null,
"dirty": true,
"enabled": true,
@@ -5942,7 +6067,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:49:55.205Z",
+ "updated_at": "2023-04-21T22:55:24.380Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -5958,49 +6083,49 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE1246eb06e8884ef4b34a8e87dd9673a7/libraries"
+ "related": "https://reactor.adobe.io/data_elements/DEe52108e5cf1e4b74908028744b8b0d47/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE1246eb06e8884ef4b34a8e87dd9673a7/revisions"
+ "related": "https://reactor.adobe.io/data_elements/DEe52108e5cf1e4b74908028744b8b0d47/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE1246eb06e8884ef4b34a8e87dd9673a7/notes"
+ "related": "https://reactor.adobe.io/data_elements/DEe52108e5cf1e4b74908028744b8b0d47/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE1246eb06e8884ef4b34a8e87dd9673a7/property"
+ "related": "https://reactor.adobe.io/data_elements/DEe52108e5cf1e4b74908028744b8b0d47/property"
},
"data": {
- "id": "PR891272eb70454df0b09b6f7b8f813214",
+ "id": "PRbd3fadbce6244571a4a9d7ea2ca94129",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE1246eb06e8884ef4b34a8e87dd9673a7/origin"
+ "related": "https://reactor.adobe.io/data_elements/DEe52108e5cf1e4b74908028744b8b0d47/origin"
},
"data": {
- "id": "DE1246eb06e8884ef4b34a8e87dd9673a7",
+ "id": "DEe52108e5cf1e4b74908028744b8b0d47",
"type": "data_elements"
}
},
"extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE1246eb06e8884ef4b34a8e87dd9673a7/extension"
+ "related": "https://reactor.adobe.io/data_elements/DEe52108e5cf1e4b74908028744b8b0d47/extension"
},
"data": {
- "id": "EX45d5c7cc5a634304b28b0790f1b8d89c",
+ "id": "EX1ce24885e4ec406a84c6d237a6627876",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE1246eb06e8884ef4b34a8e87dd9673a7/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/data_elements/DEe52108e5cf1e4b74908028744b8b0d47/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -6009,19 +6134,19 @@
},
"updated_with_extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE1246eb06e8884ef4b34a8e87dd9673a7/updated_with_extension"
+ "related": "https://reactor.adobe.io/data_elements/DEe52108e5cf1e4b74908028744b8b0d47/updated_with_extension"
},
"data": {
- "id": "EXe2fc39e6cdd34fa58eee5ea7f029cbae",
+ "id": "EXccce72957fdd45bdaa2ef21d4608e84e",
"type": "extensions"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR891272eb70454df0b09b6f7b8f813214",
- "origin": "https://reactor.adobe.io/data_elements/DE1246eb06e8884ef4b34a8e87dd9673a7",
- "self": "https://reactor.adobe.io/data_elements/DE1246eb06e8884ef4b34a8e87dd9673a7",
- "extension": "https://reactor.adobe.io/extensions/EX45d5c7cc5a634304b28b0790f1b8d89c"
+ "property": "https://reactor.adobe.io/properties/PRbd3fadbce6244571a4a9d7ea2ca94129",
+ "origin": "https://reactor.adobe.io/data_elements/DEe52108e5cf1e4b74908028744b8b0d47",
+ "self": "https://reactor.adobe.io/data_elements/DEe52108e5cf1e4b74908028744b8b0d47",
+ "extension": "https://reactor.adobe.io/extensions/EX1ce24885e4ec406a84c6d237a6627876"
},
"meta": {
"latest_revision_number": 0
@@ -6053,24 +6178,24 @@
"meta": {
"action": "revise"
},
- "id": "DE2c9e0bc4c6ed490d97ebeb1070ab5b28",
+ "id": "DE9464b6574e76449d8802363af59d1e70",
"type": "data_elements"
}
},
"response": {
"data": {
- "id": "DEfba7af5ff53d4a449032220745e1f106",
+ "id": "DEb724bb37252b4c499abf493577191742",
"type": "data_elements",
"attributes": {
- "created_at": "2023-01-30T20:50:06.796Z",
+ "created_at": "2023-04-21T22:55:36.934Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
- "name": "My Data Element 2023-01-30 13:50:06 -0700",
+ "name": "My Data Element 2023-04-21 16:55:36 -0600",
"published": false,
"published_at": null,
"revision_number": 1,
- "updated_at": "2023-01-30T20:50:06.796Z",
+ "updated_at": "2023-04-21T22:55:36.934Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -6086,49 +6211,49 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEfba7af5ff53d4a449032220745e1f106/libraries"
+ "related": "https://reactor.adobe.io/data_elements/DEb724bb37252b4c499abf493577191742/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEfba7af5ff53d4a449032220745e1f106/revisions"
+ "related": "https://reactor.adobe.io/data_elements/DEb724bb37252b4c499abf493577191742/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEfba7af5ff53d4a449032220745e1f106/notes"
+ "related": "https://reactor.adobe.io/data_elements/DEb724bb37252b4c499abf493577191742/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEfba7af5ff53d4a449032220745e1f106/property"
+ "related": "https://reactor.adobe.io/data_elements/DEb724bb37252b4c499abf493577191742/property"
},
"data": {
- "id": "PRd84e0fd6d41a41818c185492dff977a5",
+ "id": "PRd936df70d3dd43a592a2920ffe7786d4",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEfba7af5ff53d4a449032220745e1f106/origin"
+ "related": "https://reactor.adobe.io/data_elements/DEb724bb37252b4c499abf493577191742/origin"
},
"data": {
- "id": "DE2c9e0bc4c6ed490d97ebeb1070ab5b28",
+ "id": "DE9464b6574e76449d8802363af59d1e70",
"type": "data_elements"
}
},
"extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEfba7af5ff53d4a449032220745e1f106/extension"
+ "related": "https://reactor.adobe.io/data_elements/DEb724bb37252b4c499abf493577191742/extension"
},
"data": {
- "id": "EXafd2758c0fa54b5fbbc885fa8ac41400",
+ "id": "EXf705bd2e761f48b2b906a32b8ac41a4e",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEfba7af5ff53d4a449032220745e1f106/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/data_elements/DEb724bb37252b4c499abf493577191742/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -6137,19 +6262,19 @@
},
"updated_with_extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DEfba7af5ff53d4a449032220745e1f106/updated_with_extension"
+ "related": "https://reactor.adobe.io/data_elements/DEb724bb37252b4c499abf493577191742/updated_with_extension"
},
"data": {
- "id": "EX0df31d7fdd7f46ef998c848fd3c8dc02",
+ "id": "EX5aae386e046d45f29c033dd782582b35",
"type": "extensions"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRd84e0fd6d41a41818c185492dff977a5",
- "origin": "https://reactor.adobe.io/data_elements/DE2c9e0bc4c6ed490d97ebeb1070ab5b28",
- "self": "https://reactor.adobe.io/data_elements/DEfba7af5ff53d4a449032220745e1f106",
- "extension": "https://reactor.adobe.io/extensions/EXafd2758c0fa54b5fbbc885fa8ac41400"
+ "property": "https://reactor.adobe.io/properties/PRd936df70d3dd43a592a2920ffe7786d4",
+ "origin": "https://reactor.adobe.io/data_elements/DE9464b6574e76449d8802363af59d1e70",
+ "self": "https://reactor.adobe.io/data_elements/DEb724bb37252b4c499abf493577191742",
+ "extension": "https://reactor.adobe.io/extensions/EXf705bd2e761f48b2b906a32b8ac41a4e"
},
"meta": {
"latest_revision_number": 1
@@ -6168,18 +6293,18 @@
"response": {
"data": [
{
- "id": "DE4cf01d80eb5849888ef373199f022114",
+ "id": "DE249f1986c9c742ffb7444ff398dcb328",
"type": "data_elements",
"attributes": {
- "created_at": "2023-01-30T20:50:12.476Z",
+ "created_at": "2023-04-21T22:55:43.036Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
- "name": "My Data Element 2023-01-30 13:50:12 -0700",
+ "name": "My Data Element 2023-04-21 16:55:42 -0600",
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:50:12.476Z",
+ "updated_at": "2023-04-21T22:55:43.036Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -6195,49 +6320,49 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE4cf01d80eb5849888ef373199f022114/libraries"
+ "related": "https://reactor.adobe.io/data_elements/DE249f1986c9c742ffb7444ff398dcb328/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE4cf01d80eb5849888ef373199f022114/revisions"
+ "related": "https://reactor.adobe.io/data_elements/DE249f1986c9c742ffb7444ff398dcb328/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE4cf01d80eb5849888ef373199f022114/notes"
+ "related": "https://reactor.adobe.io/data_elements/DE249f1986c9c742ffb7444ff398dcb328/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE4cf01d80eb5849888ef373199f022114/property"
+ "related": "https://reactor.adobe.io/data_elements/DE249f1986c9c742ffb7444ff398dcb328/property"
},
"data": {
- "id": "PR76af15fb3dfa424f96977bddf43a8fa8",
+ "id": "PR3eb3eca0b9bc4259b058581dfaa57026",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE4cf01d80eb5849888ef373199f022114/origin"
+ "related": "https://reactor.adobe.io/data_elements/DE249f1986c9c742ffb7444ff398dcb328/origin"
},
"data": {
- "id": "DE4cf01d80eb5849888ef373199f022114",
+ "id": "DE249f1986c9c742ffb7444ff398dcb328",
"type": "data_elements"
}
},
"extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE4cf01d80eb5849888ef373199f022114/extension"
+ "related": "https://reactor.adobe.io/data_elements/DE249f1986c9c742ffb7444ff398dcb328/extension"
},
"data": {
- "id": "EX9643e7834d434a28b87615a7f9cbb1db",
+ "id": "EXb91e9eab561a4d049adbf3d45c2a6113",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE4cf01d80eb5849888ef373199f022114/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/data_elements/DE249f1986c9c742ffb7444ff398dcb328/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -6246,37 +6371,37 @@
},
"updated_with_extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE4cf01d80eb5849888ef373199f022114/updated_with_extension"
+ "related": "https://reactor.adobe.io/data_elements/DE249f1986c9c742ffb7444ff398dcb328/updated_with_extension"
},
"data": {
- "id": "EXbdb31120c9364190979ad640021f5ff5",
+ "id": "EX9078f7e924974a8f84ca9a60eda4b313",
"type": "extensions"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR76af15fb3dfa424f96977bddf43a8fa8",
- "origin": "https://reactor.adobe.io/data_elements/DE4cf01d80eb5849888ef373199f022114",
- "self": "https://reactor.adobe.io/data_elements/DE4cf01d80eb5849888ef373199f022114",
- "extension": "https://reactor.adobe.io/extensions/EX9643e7834d434a28b87615a7f9cbb1db"
+ "property": "https://reactor.adobe.io/properties/PR3eb3eca0b9bc4259b058581dfaa57026",
+ "origin": "https://reactor.adobe.io/data_elements/DE249f1986c9c742ffb7444ff398dcb328",
+ "self": "https://reactor.adobe.io/data_elements/DE249f1986c9c742ffb7444ff398dcb328",
+ "extension": "https://reactor.adobe.io/extensions/EXb91e9eab561a4d049adbf3d45c2a6113"
},
"meta": {
"latest_revision_number": 1
}
},
{
- "id": "DE94944bca8549482c93f149b2b294d05e",
+ "id": "DEff0671e0fe644b0d947a9666078c4821",
"type": "data_elements",
"attributes": {
- "created_at": "2023-01-30T20:50:12.541Z",
+ "created_at": "2023-04-21T22:55:43.135Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
- "name": "My Data Element 2023-01-30 13:50:12 -0700",
+ "name": "My Data Element 2023-04-21 16:55:42 -0600",
"published": false,
"published_at": null,
"revision_number": 1,
- "updated_at": "2023-01-30T20:50:12.541Z",
+ "updated_at": "2023-04-21T22:55:43.135Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -6292,49 +6417,49 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE94944bca8549482c93f149b2b294d05e/libraries"
+ "related": "https://reactor.adobe.io/data_elements/DEff0671e0fe644b0d947a9666078c4821/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE94944bca8549482c93f149b2b294d05e/revisions"
+ "related": "https://reactor.adobe.io/data_elements/DEff0671e0fe644b0d947a9666078c4821/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE94944bca8549482c93f149b2b294d05e/notes"
+ "related": "https://reactor.adobe.io/data_elements/DEff0671e0fe644b0d947a9666078c4821/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE94944bca8549482c93f149b2b294d05e/property"
+ "related": "https://reactor.adobe.io/data_elements/DEff0671e0fe644b0d947a9666078c4821/property"
},
"data": {
- "id": "PR76af15fb3dfa424f96977bddf43a8fa8",
+ "id": "PR3eb3eca0b9bc4259b058581dfaa57026",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE94944bca8549482c93f149b2b294d05e/origin"
+ "related": "https://reactor.adobe.io/data_elements/DEff0671e0fe644b0d947a9666078c4821/origin"
},
"data": {
- "id": "DE4cf01d80eb5849888ef373199f022114",
+ "id": "DE249f1986c9c742ffb7444ff398dcb328",
"type": "data_elements"
}
},
"extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE94944bca8549482c93f149b2b294d05e/extension"
+ "related": "https://reactor.adobe.io/data_elements/DEff0671e0fe644b0d947a9666078c4821/extension"
},
"data": {
- "id": "EX9643e7834d434a28b87615a7f9cbb1db",
+ "id": "EXb91e9eab561a4d049adbf3d45c2a6113",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE94944bca8549482c93f149b2b294d05e/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/data_elements/DEff0671e0fe644b0d947a9666078c4821/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -6343,19 +6468,19 @@
},
"updated_with_extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE94944bca8549482c93f149b2b294d05e/updated_with_extension"
+ "related": "https://reactor.adobe.io/data_elements/DEff0671e0fe644b0d947a9666078c4821/updated_with_extension"
},
"data": {
- "id": "EXbdb31120c9364190979ad640021f5ff5",
+ "id": "EX9078f7e924974a8f84ca9a60eda4b313",
"type": "extensions"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR76af15fb3dfa424f96977bddf43a8fa8",
- "origin": "https://reactor.adobe.io/data_elements/DE4cf01d80eb5849888ef373199f022114",
- "self": "https://reactor.adobe.io/data_elements/DE94944bca8549482c93f149b2b294d05e",
- "extension": "https://reactor.adobe.io/extensions/EX9643e7834d434a28b87615a7f9cbb1db"
+ "property": "https://reactor.adobe.io/properties/PR3eb3eca0b9bc4259b058581dfaa57026",
+ "origin": "https://reactor.adobe.io/data_elements/DE249f1986c9c742ffb7444ff398dcb328",
+ "self": "https://reactor.adobe.io/data_elements/DEff0671e0fe644b0d947a9666078c4821",
+ "extension": "https://reactor.adobe.io/extensions/EXb91e9eab561a4d049adbf3d45c2a6113"
},
"meta": {
"latest_revision_number": 1
@@ -6383,18 +6508,18 @@
"request": null,
"response": {
"data": {
- "id": "DE73634309809b422286dead725d0db949",
+ "id": "DEa3a2e614376249c0966c7d1fa0e2f2f7",
"type": "data_elements",
"attributes": {
- "created_at": "2023-01-30T20:50:18.251Z",
+ "created_at": "2023-04-21T22:55:49.378Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
- "name": "My Data Element 2023-01-30 13:50:18 -0700",
+ "name": "My Data Element 2023-04-21 16:55:49 -0600",
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:50:18.251Z",
+ "updated_at": "2023-04-21T22:55:49.378Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -6410,49 +6535,49 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE73634309809b422286dead725d0db949/libraries"
+ "related": "https://reactor.adobe.io/data_elements/DEa3a2e614376249c0966c7d1fa0e2f2f7/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE73634309809b422286dead725d0db949/revisions"
+ "related": "https://reactor.adobe.io/data_elements/DEa3a2e614376249c0966c7d1fa0e2f2f7/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE73634309809b422286dead725d0db949/notes"
+ "related": "https://reactor.adobe.io/data_elements/DEa3a2e614376249c0966c7d1fa0e2f2f7/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE73634309809b422286dead725d0db949/property"
+ "related": "https://reactor.adobe.io/data_elements/DEa3a2e614376249c0966c7d1fa0e2f2f7/property"
},
"data": {
- "id": "PR5c3db2263b1f4f189949a439a8cfe7ee",
+ "id": "PRaff9628d84214f8bb885c1400ea93f9d",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE73634309809b422286dead725d0db949/origin"
+ "related": "https://reactor.adobe.io/data_elements/DEa3a2e614376249c0966c7d1fa0e2f2f7/origin"
},
"data": {
- "id": "DE73634309809b422286dead725d0db949",
+ "id": "DEa3a2e614376249c0966c7d1fa0e2f2f7",
"type": "data_elements"
}
},
"extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE73634309809b422286dead725d0db949/extension"
+ "related": "https://reactor.adobe.io/data_elements/DEa3a2e614376249c0966c7d1fa0e2f2f7/extension"
},
"data": {
- "id": "EXfd424937336d4a55a1aa80caa7b85dcd",
+ "id": "EXe0657247d6474044b4ff9a8e1acacab4",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE73634309809b422286dead725d0db949/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/data_elements/DEa3a2e614376249c0966c7d1fa0e2f2f7/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -6461,19 +6586,19 @@
},
"updated_with_extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE73634309809b422286dead725d0db949/updated_with_extension"
+ "related": "https://reactor.adobe.io/data_elements/DEa3a2e614376249c0966c7d1fa0e2f2f7/updated_with_extension"
},
"data": {
- "id": "EX05c6a8c835f0440cb6368821b13c7953",
+ "id": "EX727de9ac4e254f88a84d3d94a5cd5adf",
"type": "extensions"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR5c3db2263b1f4f189949a439a8cfe7ee",
- "origin": "https://reactor.adobe.io/data_elements/DE73634309809b422286dead725d0db949",
- "self": "https://reactor.adobe.io/data_elements/DE73634309809b422286dead725d0db949",
- "extension": "https://reactor.adobe.io/extensions/EXfd424937336d4a55a1aa80caa7b85dcd"
+ "property": "https://reactor.adobe.io/properties/PRaff9628d84214f8bb885c1400ea93f9d",
+ "origin": "https://reactor.adobe.io/data_elements/DEa3a2e614376249c0966c7d1fa0e2f2f7",
+ "self": "https://reactor.adobe.io/data_elements/DEa3a2e614376249c0966c7d1fa0e2f2f7",
+ "extension": "https://reactor.adobe.io/extensions/EXe0657247d6474044b4ff9a8e1acacab4"
},
"meta": {
"latest_revision_number": 1
@@ -6491,10 +6616,10 @@
"request": null,
"response": {
"data": {
- "id": "EX865f18c99dd341fabbf8c3414dc8ee05",
+ "id": "EX09280790e645484d806d48fd7f5e809e",
"type": "extensions",
"attributes": {
- "created_at": "2023-01-30T20:50:23.872Z",
+ "created_at": "2023-04-21T22:55:55.607Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -6502,7 +6627,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:50:23.872Z",
+ "updated_at": "2023-04-21T22:55:55.607Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -6516,40 +6641,40 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX865f18c99dd341fabbf8c3414dc8ee05/libraries"
+ "related": "https://reactor.adobe.io/extensions/EX09280790e645484d806d48fd7f5e809e/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX865f18c99dd341fabbf8c3414dc8ee05/revisions"
+ "related": "https://reactor.adobe.io/extensions/EX09280790e645484d806d48fd7f5e809e/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX865f18c99dd341fabbf8c3414dc8ee05/notes"
+ "related": "https://reactor.adobe.io/extensions/EX09280790e645484d806d48fd7f5e809e/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX865f18c99dd341fabbf8c3414dc8ee05/property"
+ "related": "https://reactor.adobe.io/extensions/EX09280790e645484d806d48fd7f5e809e/property"
},
"data": {
- "id": "PR476c69187a084239acecae401a07e253",
+ "id": "PR24abf60b2b274e56b4740a7635ab799a",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX865f18c99dd341fabbf8c3414dc8ee05/origin"
+ "related": "https://reactor.adobe.io/extensions/EX09280790e645484d806d48fd7f5e809e/origin"
},
"data": {
- "id": "EX865f18c99dd341fabbf8c3414dc8ee05",
+ "id": "EX09280790e645484d806d48fd7f5e809e",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX865f18c99dd341fabbf8c3414dc8ee05/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX09280790e645484d806d48fd7f5e809e/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -6558,7 +6683,7 @@
},
"extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX865f18c99dd341fabbf8c3414dc8ee05/extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX09280790e645484d806d48fd7f5e809e/extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -6567,9 +6692,9 @@
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR476c69187a084239acecae401a07e253",
- "origin": "https://reactor.adobe.io/extensions/EX865f18c99dd341fabbf8c3414dc8ee05",
- "self": "https://reactor.adobe.io/extensions/EX865f18c99dd341fabbf8c3414dc8ee05",
+ "property": "https://reactor.adobe.io/properties/PR24abf60b2b274e56b4740a7635ab799a",
+ "origin": "https://reactor.adobe.io/extensions/EX09280790e645484d806d48fd7f5e809e",
+ "self": "https://reactor.adobe.io/extensions/EX09280790e645484d806d48fd7f5e809e",
"extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab",
"latest_extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab"
},
@@ -6596,28 +6721,28 @@
},
"response": {
"data": {
- "id": "NTa9eb667b8dbd4ffaa3f78c797e2e33b4",
+ "id": "NT6d52a4e2fab844679f566449968614c3",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:50:29.793Z",
+ "created_at": "2023-04-21T22:56:02.317Z",
"text": "this note on a data element intentionally left blank"
},
"relationships": {
"resource": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE69637b3a781e4969b845e9814aa7cee8"
+ "related": "https://reactor.adobe.io/data_elements/DE674837c9990049d880275ee8f68d261c"
},
"data": {
- "id": "DE69637b3a781e4969b845e9814aa7cee8",
+ "id": "DE674837c9990049d880275ee8f68d261c",
"type": "data_elements"
}
}
},
"links": {
- "resource": "https://reactor.adobe.io/data_elements/DE69637b3a781e4969b845e9814aa7cee8",
- "self": "https://reactor.adobe.io/notes/NTa9eb667b8dbd4ffaa3f78c797e2e33b4"
+ "resource": "https://reactor.adobe.io/data_elements/DE674837c9990049d880275ee8f68d261c",
+ "self": "https://reactor.adobe.io/notes/NT6d52a4e2fab844679f566449968614c3"
}
}
},
@@ -6633,28 +6758,28 @@
"response": {
"data": [
{
- "id": "NT5590c682325946328a4898e47ccf3d84",
+ "id": "NTa8f015904efb4c0e82eb802c744a90cb",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:50:35.474Z",
+ "created_at": "2023-04-21T22:56:08.664Z",
"text": "this is a note on a data element"
},
"relationships": {
"resource": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE955c4007c9c345f7b1548f3575ef9ac6"
+ "related": "https://reactor.adobe.io/data_elements/DE00117bc859aa4016836114c30ced329a"
},
"data": {
- "id": "DE955c4007c9c345f7b1548f3575ef9ac6",
+ "id": "DE00117bc859aa4016836114c30ced329a",
"type": "data_elements"
}
}
},
"links": {
- "resource": "https://reactor.adobe.io/data_elements/DE955c4007c9c345f7b1548f3575ef9ac6",
- "self": "https://reactor.adobe.io/notes/NT5590c682325946328a4898e47ccf3d84"
+ "resource": "https://reactor.adobe.io/data_elements/DE00117bc859aa4016836114c30ced329a",
+ "self": "https://reactor.adobe.io/notes/NTa8f015904efb4c0e82eb802c744a90cb"
}
}
],
@@ -9086,10 +9211,10 @@
"request": null,
"response": {
"data": {
- "id": "EX3d4f5650b7834337a2d975c1699ba00a",
+ "id": "EX29595f11f09f491db7bdc8fd257bcdfb",
"type": "extensions",
"attributes": {
- "created_at": "2023-01-30T20:50:46.727Z",
+ "created_at": "2023-04-21T22:56:20.040Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -9097,7 +9222,7 @@
"published": false,
"published_at": null,
"revision_number": 1,
- "updated_at": "2023-01-30T20:50:46.727Z",
+ "updated_at": "2023-04-21T22:56:20.040Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -9111,40 +9236,40 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX3d4f5650b7834337a2d975c1699ba00a/libraries"
+ "related": "https://reactor.adobe.io/extensions/EX29595f11f09f491db7bdc8fd257bcdfb/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX3d4f5650b7834337a2d975c1699ba00a/revisions"
+ "related": "https://reactor.adobe.io/extensions/EX29595f11f09f491db7bdc8fd257bcdfb/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX3d4f5650b7834337a2d975c1699ba00a/notes"
+ "related": "https://reactor.adobe.io/extensions/EX29595f11f09f491db7bdc8fd257bcdfb/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX3d4f5650b7834337a2d975c1699ba00a/property"
+ "related": "https://reactor.adobe.io/extensions/EX29595f11f09f491db7bdc8fd257bcdfb/property"
},
"data": {
- "id": "PR9cf0c6851c8b44e499177ab6ebcb19af",
+ "id": "PR15d8c9c6f4654208bf79788869cd0ae8",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX3d4f5650b7834337a2d975c1699ba00a/origin"
+ "related": "https://reactor.adobe.io/extensions/EX29595f11f09f491db7bdc8fd257bcdfb/origin"
},
"data": {
- "id": "EX7cf84b33f8544ae3bfd6eafd15138111",
+ "id": "EXe5716691764e47e8975a849dc0aa673c",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX3d4f5650b7834337a2d975c1699ba00a/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX29595f11f09f491db7bdc8fd257bcdfb/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -9153,7 +9278,7 @@
},
"extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX3d4f5650b7834337a2d975c1699ba00a/extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX29595f11f09f491db7bdc8fd257bcdfb/extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -9162,9 +9287,9 @@
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR9cf0c6851c8b44e499177ab6ebcb19af",
- "origin": "https://reactor.adobe.io/extensions/EX7cf84b33f8544ae3bfd6eafd15138111",
- "self": "https://reactor.adobe.io/extensions/EX3d4f5650b7834337a2d975c1699ba00a",
+ "property": "https://reactor.adobe.io/properties/PR15d8c9c6f4654208bf79788869cd0ae8",
+ "origin": "https://reactor.adobe.io/extensions/EXe5716691764e47e8975a849dc0aa673c",
+ "self": "https://reactor.adobe.io/extensions/EX29595f11f09f491db7bdc8fd257bcdfb",
"extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab",
"latest_extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab"
},
@@ -9189,7 +9314,7 @@
"relationships": {
"host": {
"data": {
- "id": "HTe06a34f2da1d4d76bc550115497273c2",
+ "id": "HTb476952db371492d880cad49cf25c5a6",
"type": "hosts"
}
}
@@ -9199,36 +9324,36 @@
},
"response": {
"data": {
- "id": "EN88c5e4bd62ad4f5095d13e62a2998a1c",
+ "id": "ENeb9d74cf364b4e04add62acab505463e",
"type": "environments",
"attributes": {
"archive": false,
- "created_at": "2023-01-30T20:50:52.412Z",
- "library_path": "042253ab27b4/781c120f62f8",
- "library_name": "launch-18a6fc0359bd-development.min.js",
+ "created_at": "2023-04-21T22:56:25.898Z",
+ "library_path": "042253ab27b4/882e75679783",
+ "library_name": "launch-0e49ee849248-development.min.js",
"library_entry_points": [
{
- "library_name": "launch-18a6fc0359bd-development.min.js",
+ "library_name": "launch-0e49ee849248-development.min.js",
"minified": true,
"references": [
- "042253ab27b4/781c120f62f8/launch-18a6fc0359bd-development.min.js"
+ "042253ab27b4/882e75679783/launch-0e49ee849248-development.min.js"
],
- "license_path": "042253ab27b4/781c120f62f8/launch-18a6fc0359bd-development.js"
+ "license_path": "042253ab27b4/882e75679783/launch-0e49ee849248-development.js"
},
{
- "library_name": "launch-18a6fc0359bd-development.js",
+ "library_name": "launch-0e49ee849248-development.js",
"minified": false,
"references": [
- "042253ab27b4/781c120f62f8/launch-18a6fc0359bd-development.js"
+ "042253ab27b4/882e75679783/launch-0e49ee849248-development.js"
]
}
],
"name": "Dev Environment A",
"path": "https://assets.adobedtm.com/staging",
"stage": "development",
- "updated_at": "2023-01-30T20:50:52.412Z",
+ "updated_at": "2023-04-21T22:56:25.898Z",
"status": "succeeded",
- "token": "18a6fc0359bd",
+ "token": "0e49ee849248",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -9237,47 +9362,47 @@
"relationships": {
"library": {
"links": {
- "related": "https://reactor.adobe.io/environments/EN88c5e4bd62ad4f5095d13e62a2998a1c/library"
+ "related": "https://reactor.adobe.io/environments/ENeb9d74cf364b4e04add62acab505463e/library"
},
"data": null
},
"builds": {
"links": {
- "related": "https://reactor.adobe.io/environments/EN88c5e4bd62ad4f5095d13e62a2998a1c/builds"
+ "related": "https://reactor.adobe.io/environments/ENeb9d74cf364b4e04add62acab505463e/builds"
}
},
"host": {
"links": {
- "related": "https://reactor.adobe.io/environments/EN88c5e4bd62ad4f5095d13e62a2998a1c/host",
- "self": "https://reactor.adobe.io/environments/EN88c5e4bd62ad4f5095d13e62a2998a1c/relationships/host"
+ "related": "https://reactor.adobe.io/environments/ENeb9d74cf364b4e04add62acab505463e/host",
+ "self": "https://reactor.adobe.io/environments/ENeb9d74cf364b4e04add62acab505463e/relationships/host"
},
"data": {
- "id": "HTe06a34f2da1d4d76bc550115497273c2",
+ "id": "HTb476952db371492d880cad49cf25c5a6",
"type": "hosts"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/environments/EN88c5e4bd62ad4f5095d13e62a2998a1c/property"
+ "related": "https://reactor.adobe.io/environments/ENeb9d74cf364b4e04add62acab505463e/property"
},
"data": {
- "id": "PR91e3ffdea4054a559b01e106c5dd8adc",
+ "id": "PR742584c3093f4d7e8ef7fdd840e72bbd",
"type": "properties"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR91e3ffdea4054a559b01e106c5dd8adc",
- "self": "https://reactor.adobe.io/environments/EN88c5e4bd62ad4f5095d13e62a2998a1c"
+ "property": "https://reactor.adobe.io/properties/PR742584c3093f4d7e8ef7fdd840e72bbd",
+ "self": "https://reactor.adobe.io/environments/ENeb9d74cf364b4e04add62acab505463e"
},
"meta": {
"archive_encrypted": false,
"script_sources": [
{
"hosting_region": "Standard",
- "minified": "https://assets.adobedtm.com/staging/042253ab27b4/781c120f62f8/launch-18a6fc0359bd-development.min.js",
- "license_path": "https://assets.adobedtm.com/staging/042253ab27b4/781c120f62f8/launch-18a6fc0359bd-development.js",
- "debug": "https://assets.adobedtm.com/staging/042253ab27b4/781c120f62f8/launch-18a6fc0359bd-development.js"
+ "minified": "https://assets.adobedtm.com/staging/042253ab27b4/882e75679783/launch-0e49ee849248-development.min.js",
+ "license_path": "https://assets.adobedtm.com/staging/042253ab27b4/882e75679783/launch-0e49ee849248-development.js",
+ "debug": "https://assets.adobedtm.com/staging/042253ab27b4/882e75679783/launch-0e49ee849248-development.js"
}
]
}
@@ -9299,7 +9424,7 @@
"relationships": {
"host": {
"data": {
- "id": "HT1bf139cca39f47cb8e4d0656d67bb9ed",
+ "id": "HT62e0275f4f5c452dbc15f4dabcdb0bcf",
"type": "hosts"
}
}
@@ -9309,36 +9434,36 @@
},
"response": {
"data": {
- "id": "ENf0361ad40dfc4533adf93a92c1dc11d5",
+ "id": "ENe85a4d21bfcf407d98d6177fd2ace6f5",
"type": "environments",
"attributes": {
"archive": false,
- "created_at": "2023-01-30T20:50:57.818Z",
- "library_path": "042253ab27b4/653ef1beef32",
- "library_name": "launch-ee813d3ff44c-development.min.js",
+ "created_at": "2023-04-21T22:56:31.459Z",
+ "library_path": "042253ab27b4/d8f6e55acbc0",
+ "library_name": "launch-b6c90902c6d1-development.min.js",
"library_entry_points": [
{
- "library_name": "launch-ee813d3ff44c-development.min.js",
+ "library_name": "launch-b6c90902c6d1-development.min.js",
"minified": true,
"references": [
- "042253ab27b4/653ef1beef32/launch-ee813d3ff44c-development.min.js"
+ "042253ab27b4/d8f6e55acbc0/launch-b6c90902c6d1-development.min.js"
],
- "license_path": "042253ab27b4/653ef1beef32/launch-ee813d3ff44c-development.js"
+ "license_path": "042253ab27b4/d8f6e55acbc0/launch-b6c90902c6d1-development.js"
},
{
- "library_name": "launch-ee813d3ff44c-development.js",
+ "library_name": "launch-b6c90902c6d1-development.js",
"minified": false,
"references": [
- "042253ab27b4/653ef1beef32/launch-ee813d3ff44c-development.js"
+ "042253ab27b4/d8f6e55acbc0/launch-b6c90902c6d1-development.js"
]
}
],
"name": "Akamai Dev Environment",
"path": "https://assets.adobedtm.com/staging",
"stage": "development",
- "updated_at": "2023-01-30T20:50:57.818Z",
+ "updated_at": "2023-04-21T22:56:31.459Z",
"status": "succeeded",
- "token": "ee813d3ff44c",
+ "token": "b6c90902c6d1",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -9347,47 +9472,47 @@
"relationships": {
"library": {
"links": {
- "related": "https://reactor.adobe.io/environments/ENf0361ad40dfc4533adf93a92c1dc11d5/library"
+ "related": "https://reactor.adobe.io/environments/ENe85a4d21bfcf407d98d6177fd2ace6f5/library"
},
"data": null
},
"builds": {
"links": {
- "related": "https://reactor.adobe.io/environments/ENf0361ad40dfc4533adf93a92c1dc11d5/builds"
+ "related": "https://reactor.adobe.io/environments/ENe85a4d21bfcf407d98d6177fd2ace6f5/builds"
}
},
"host": {
"links": {
- "related": "https://reactor.adobe.io/environments/ENf0361ad40dfc4533adf93a92c1dc11d5/host",
- "self": "https://reactor.adobe.io/environments/ENf0361ad40dfc4533adf93a92c1dc11d5/relationships/host"
+ "related": "https://reactor.adobe.io/environments/ENe85a4d21bfcf407d98d6177fd2ace6f5/host",
+ "self": "https://reactor.adobe.io/environments/ENe85a4d21bfcf407d98d6177fd2ace6f5/relationships/host"
},
"data": {
- "id": "HT1bf139cca39f47cb8e4d0656d67bb9ed",
+ "id": "HT62e0275f4f5c452dbc15f4dabcdb0bcf",
"type": "hosts"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/environments/ENf0361ad40dfc4533adf93a92c1dc11d5/property"
+ "related": "https://reactor.adobe.io/environments/ENe85a4d21bfcf407d98d6177fd2ace6f5/property"
},
"data": {
- "id": "PR0ed3bfb17f92452a918ba62ac916bc44",
+ "id": "PR712c1019a68140b4b1335dcfe0ff01b2",
"type": "properties"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR0ed3bfb17f92452a918ba62ac916bc44",
- "self": "https://reactor.adobe.io/environments/ENf0361ad40dfc4533adf93a92c1dc11d5"
+ "property": "https://reactor.adobe.io/properties/PR712c1019a68140b4b1335dcfe0ff01b2",
+ "self": "https://reactor.adobe.io/environments/ENe85a4d21bfcf407d98d6177fd2ace6f5"
},
"meta": {
"archive_encrypted": false,
"script_sources": [
{
"hosting_region": "Standard",
- "minified": "https://assets.adobedtm.com/staging/042253ab27b4/653ef1beef32/launch-ee813d3ff44c-development.min.js",
- "license_path": "https://assets.adobedtm.com/staging/042253ab27b4/653ef1beef32/launch-ee813d3ff44c-development.js",
- "debug": "https://assets.adobedtm.com/staging/042253ab27b4/653ef1beef32/launch-ee813d3ff44c-development.js"
+ "minified": "https://assets.adobedtm.com/staging/042253ab27b4/d8f6e55acbc0/launch-b6c90902c6d1-development.min.js",
+ "license_path": "https://assets.adobedtm.com/staging/042253ab27b4/d8f6e55acbc0/launch-b6c90902c6d1-development.js",
+ "debug": "https://assets.adobedtm.com/staging/042253ab27b4/d8f6e55acbc0/launch-b6c90902c6d1-development.js"
}
]
}
@@ -9404,36 +9529,36 @@
"request": null,
"response": {
"data": {
- "id": "ENcd0d5928201c40a4ac6fdec21327a0b1",
+ "id": "EN7ab8d6be4c924d2a93c541616691d548",
"type": "environments",
"attributes": {
"archive": false,
- "created_at": "2023-01-30T20:51:03.220Z",
- "library_path": "042253ab27b4/40636fa7ab84",
- "library_name": "launch-a6dbda81db04-development.min.js",
+ "created_at": "2023-04-21T22:56:37.069Z",
+ "library_path": "042253ab27b4/69516f2176b2",
+ "library_name": "launch-b694cc7a3971-development.min.js",
"library_entry_points": [
{
- "library_name": "launch-a6dbda81db04-development.min.js",
+ "library_name": "launch-b694cc7a3971-development.min.js",
"minified": true,
"references": [
- "042253ab27b4/40636fa7ab84/launch-a6dbda81db04-development.min.js"
+ "042253ab27b4/69516f2176b2/launch-b694cc7a3971-development.min.js"
],
- "license_path": "042253ab27b4/40636fa7ab84/launch-a6dbda81db04-development.js"
+ "license_path": "042253ab27b4/69516f2176b2/launch-b694cc7a3971-development.js"
},
{
- "library_name": "launch-a6dbda81db04-development.js",
+ "library_name": "launch-b694cc7a3971-development.js",
"minified": false,
"references": [
- "042253ab27b4/40636fa7ab84/launch-a6dbda81db04-development.js"
+ "042253ab27b4/69516f2176b2/launch-b694cc7a3971-development.js"
]
}
],
"name": "Development Environment A",
"path": "https://assets.adobedtm.com/staging",
"stage": "development",
- "updated_at": "2023-01-30T20:51:03.220Z",
+ "updated_at": "2023-04-21T22:56:37.069Z",
"status": "succeeded",
- "token": "a6dbda81db04",
+ "token": "b694cc7a3971",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -9442,47 +9567,47 @@
"relationships": {
"library": {
"links": {
- "related": "https://reactor.adobe.io/environments/ENcd0d5928201c40a4ac6fdec21327a0b1/library"
+ "related": "https://reactor.adobe.io/environments/EN7ab8d6be4c924d2a93c541616691d548/library"
},
"data": null
},
"builds": {
"links": {
- "related": "https://reactor.adobe.io/environments/ENcd0d5928201c40a4ac6fdec21327a0b1/builds"
+ "related": "https://reactor.adobe.io/environments/EN7ab8d6be4c924d2a93c541616691d548/builds"
}
},
"host": {
"links": {
- "related": "https://reactor.adobe.io/environments/ENcd0d5928201c40a4ac6fdec21327a0b1/host",
- "self": "https://reactor.adobe.io/environments/ENcd0d5928201c40a4ac6fdec21327a0b1/relationships/host"
+ "related": "https://reactor.adobe.io/environments/EN7ab8d6be4c924d2a93c541616691d548/host",
+ "self": "https://reactor.adobe.io/environments/EN7ab8d6be4c924d2a93c541616691d548/relationships/host"
},
"data": {
- "id": "HT2e3089eee00344f3bd50a020b9e97f2a",
+ "id": "HT5618920fa2bd4fa2bf3c06848c171111",
"type": "hosts"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/environments/ENcd0d5928201c40a4ac6fdec21327a0b1/property"
+ "related": "https://reactor.adobe.io/environments/EN7ab8d6be4c924d2a93c541616691d548/property"
},
"data": {
- "id": "PRbb9e7d26d613416386cfc357e6954784",
+ "id": "PR7f0e86846d8c440293a0b6248b7bc22d",
"type": "properties"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRbb9e7d26d613416386cfc357e6954784",
- "self": "https://reactor.adobe.io/environments/ENcd0d5928201c40a4ac6fdec21327a0b1"
+ "property": "https://reactor.adobe.io/properties/PR7f0e86846d8c440293a0b6248b7bc22d",
+ "self": "https://reactor.adobe.io/environments/EN7ab8d6be4c924d2a93c541616691d548"
},
"meta": {
"archive_encrypted": false,
"script_sources": [
{
"hosting_region": "Standard",
- "minified": "https://assets.adobedtm.com/staging/042253ab27b4/40636fa7ab84/launch-a6dbda81db04-development.min.js",
- "license_path": "https://assets.adobedtm.com/staging/042253ab27b4/40636fa7ab84/launch-a6dbda81db04-development.js",
- "debug": "https://assets.adobedtm.com/staging/042253ab27b4/40636fa7ab84/launch-a6dbda81db04-development.js"
+ "minified": "https://assets.adobedtm.com/staging/042253ab27b4/69516f2176b2/launch-b694cc7a3971-development.min.js",
+ "license_path": "https://assets.adobedtm.com/staging/042253ab27b4/69516f2176b2/launch-b694cc7a3971-development.js",
+ "debug": "https://assets.adobedtm.com/staging/042253ab27b4/69516f2176b2/launch-b694cc7a3971-development.js"
}
]
}
@@ -9501,42 +9626,42 @@
"attributes": {
"name": "New environment name"
},
- "id": "EN28725c4a124c49298315d9b023898323",
+ "id": "EN899100ab552a442ea39e5f123a719ba7",
"type": "environments"
}
},
"response": {
"data": {
- "id": "EN28725c4a124c49298315d9b023898323",
+ "id": "EN899100ab552a442ea39e5f123a719ba7",
"type": "environments",
"attributes": {
"archive": false,
- "created_at": "2023-01-30T20:51:08.761Z",
- "library_path": "042253ab27b4/6eaa6f9791b7",
- "library_name": "launch-16d9a906c8d5-development.min.js",
+ "created_at": "2023-04-21T22:56:42.542Z",
+ "library_path": "042253ab27b4/d6abdd4c8e6e",
+ "library_name": "launch-452fb1a8ed94-development.min.js",
"library_entry_points": [
{
- "library_name": "launch-16d9a906c8d5-development.min.js",
+ "library_name": "launch-452fb1a8ed94-development.min.js",
"minified": true,
"references": [
- "042253ab27b4/6eaa6f9791b7/launch-16d9a906c8d5-development.min.js"
+ "042253ab27b4/d6abdd4c8e6e/launch-452fb1a8ed94-development.min.js"
],
- "license_path": "042253ab27b4/6eaa6f9791b7/launch-16d9a906c8d5-development.js"
+ "license_path": "042253ab27b4/d6abdd4c8e6e/launch-452fb1a8ed94-development.js"
},
{
- "library_name": "launch-16d9a906c8d5-development.js",
+ "library_name": "launch-452fb1a8ed94-development.js",
"minified": false,
"references": [
- "042253ab27b4/6eaa6f9791b7/launch-16d9a906c8d5-development.js"
+ "042253ab27b4/d6abdd4c8e6e/launch-452fb1a8ed94-development.js"
]
}
],
"name": "New environment name",
"path": "https://assets.adobedtm.com/staging",
"stage": "development",
- "updated_at": "2023-01-30T20:51:08.804Z",
+ "updated_at": "2023-04-21T22:56:42.596Z",
"status": "succeeded",
- "token": "16d9a906c8d5",
+ "token": "452fb1a8ed94",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -9545,47 +9670,47 @@
"relationships": {
"library": {
"links": {
- "related": "https://reactor.adobe.io/environments/EN28725c4a124c49298315d9b023898323/library"
+ "related": "https://reactor.adobe.io/environments/EN899100ab552a442ea39e5f123a719ba7/library"
},
"data": null
},
"builds": {
"links": {
- "related": "https://reactor.adobe.io/environments/EN28725c4a124c49298315d9b023898323/builds"
+ "related": "https://reactor.adobe.io/environments/EN899100ab552a442ea39e5f123a719ba7/builds"
}
},
"host": {
"links": {
- "related": "https://reactor.adobe.io/environments/EN28725c4a124c49298315d9b023898323/host",
- "self": "https://reactor.adobe.io/environments/EN28725c4a124c49298315d9b023898323/relationships/host"
+ "related": "https://reactor.adobe.io/environments/EN899100ab552a442ea39e5f123a719ba7/host",
+ "self": "https://reactor.adobe.io/environments/EN899100ab552a442ea39e5f123a719ba7/relationships/host"
},
"data": {
- "id": "HT9b130fcad10f485ab7899c584a089c72",
+ "id": "HT2348b0e466ee4d0a9ae04be46b8bddc6",
"type": "hosts"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/environments/EN28725c4a124c49298315d9b023898323/property"
+ "related": "https://reactor.adobe.io/environments/EN899100ab552a442ea39e5f123a719ba7/property"
},
"data": {
- "id": "PR9ba03975b4054d57852c80eb583001f6",
+ "id": "PR47d5d00a50e14586964680a12cdac53e",
"type": "properties"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR9ba03975b4054d57852c80eb583001f6",
- "self": "https://reactor.adobe.io/environments/EN28725c4a124c49298315d9b023898323"
+ "property": "https://reactor.adobe.io/properties/PR47d5d00a50e14586964680a12cdac53e",
+ "self": "https://reactor.adobe.io/environments/EN899100ab552a442ea39e5f123a719ba7"
},
"meta": {
"archive_encrypted": false,
"script_sources": [
{
"hosting_region": "Standard",
- "minified": "https://assets.adobedtm.com/staging/042253ab27b4/6eaa6f9791b7/launch-16d9a906c8d5-development.min.js",
- "license_path": "https://assets.adobedtm.com/staging/042253ab27b4/6eaa6f9791b7/launch-16d9a906c8d5-development.js",
- "debug": "https://assets.adobedtm.com/staging/042253ab27b4/6eaa6f9791b7/launch-16d9a906c8d5-development.js"
+ "minified": "https://assets.adobedtm.com/staging/042253ab27b4/d6abdd4c8e6e/launch-452fb1a8ed94-development.min.js",
+ "license_path": "https://assets.adobedtm.com/staging/042253ab27b4/d6abdd4c8e6e/launch-452fb1a8ed94-development.js",
+ "debug": "https://assets.adobedtm.com/staging/042253ab27b4/d6abdd4c8e6e/launch-452fb1a8ed94-development.js"
}
]
}
@@ -9603,36 +9728,36 @@
"response": {
"data": [
{
- "id": "EN4ac43e3653b9417880e30fb48ff19d29",
+ "id": "EN692cf0c432274fea873d51578275319c",
"type": "environments",
"attributes": {
"archive": false,
- "created_at": "2023-01-30T20:51:14.244Z",
- "library_path": "042253ab27b4/73bcacc9b2a5",
- "library_name": "launch-04e8c3a4c945-development.min.js",
+ "created_at": "2023-04-21T22:56:48.086Z",
+ "library_path": "042253ab27b4/4d7f53b1921b",
+ "library_name": "launch-eaafb5213fbf-development.min.js",
"library_entry_points": [
{
- "library_name": "launch-04e8c3a4c945-development.min.js",
+ "library_name": "launch-eaafb5213fbf-development.min.js",
"minified": true,
"references": [
- "042253ab27b4/73bcacc9b2a5/launch-04e8c3a4c945-development.min.js"
+ "042253ab27b4/4d7f53b1921b/launch-eaafb5213fbf-development.min.js"
],
- "license_path": "042253ab27b4/73bcacc9b2a5/launch-04e8c3a4c945-development.js"
+ "license_path": "042253ab27b4/4d7f53b1921b/launch-eaafb5213fbf-development.js"
},
{
- "library_name": "launch-04e8c3a4c945-development.js",
+ "library_name": "launch-eaafb5213fbf-development.js",
"minified": false,
"references": [
- "042253ab27b4/73bcacc9b2a5/launch-04e8c3a4c945-development.js"
+ "042253ab27b4/4d7f53b1921b/launch-eaafb5213fbf-development.js"
]
}
],
"name": "Development Environment A",
"path": "https://assets.adobedtm.com/staging",
"stage": "development",
- "updated_at": "2023-01-30T20:51:14.244Z",
+ "updated_at": "2023-04-21T22:56:48.086Z",
"status": "succeeded",
- "token": "04e8c3a4c945",
+ "token": "eaafb5213fbf",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -9641,47 +9766,47 @@
"relationships": {
"library": {
"links": {
- "related": "https://reactor.adobe.io/environments/EN4ac43e3653b9417880e30fb48ff19d29/library"
+ "related": "https://reactor.adobe.io/environments/EN692cf0c432274fea873d51578275319c/library"
},
"data": null
},
"builds": {
"links": {
- "related": "https://reactor.adobe.io/environments/EN4ac43e3653b9417880e30fb48ff19d29/builds"
+ "related": "https://reactor.adobe.io/environments/EN692cf0c432274fea873d51578275319c/builds"
}
},
"host": {
"links": {
- "related": "https://reactor.adobe.io/environments/EN4ac43e3653b9417880e30fb48ff19d29/host",
- "self": "https://reactor.adobe.io/environments/EN4ac43e3653b9417880e30fb48ff19d29/relationships/host"
+ "related": "https://reactor.adobe.io/environments/EN692cf0c432274fea873d51578275319c/host",
+ "self": "https://reactor.adobe.io/environments/EN692cf0c432274fea873d51578275319c/relationships/host"
},
"data": {
- "id": "HT19c282a7b57d423cae1ba5deb774f668",
+ "id": "HT301f636224d942e19005a294919b32c3",
"type": "hosts"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/environments/EN4ac43e3653b9417880e30fb48ff19d29/property"
+ "related": "https://reactor.adobe.io/environments/EN692cf0c432274fea873d51578275319c/property"
},
"data": {
- "id": "PRbfd0b6d8bbd1498abc9299d756868e89",
+ "id": "PR6ed385e2d4004913872f5d0f2468d455",
"type": "properties"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRbfd0b6d8bbd1498abc9299d756868e89",
- "self": "https://reactor.adobe.io/environments/EN4ac43e3653b9417880e30fb48ff19d29"
+ "property": "https://reactor.adobe.io/properties/PR6ed385e2d4004913872f5d0f2468d455",
+ "self": "https://reactor.adobe.io/environments/EN692cf0c432274fea873d51578275319c"
},
"meta": {
"archive_encrypted": false,
"script_sources": [
{
"hosting_region": "Standard",
- "minified": "https://assets.adobedtm.com/staging/042253ab27b4/73bcacc9b2a5/launch-04e8c3a4c945-development.min.js",
- "license_path": "https://assets.adobedtm.com/staging/042253ab27b4/73bcacc9b2a5/launch-04e8c3a4c945-development.js",
- "debug": "https://assets.adobedtm.com/staging/042253ab27b4/73bcacc9b2a5/launch-04e8c3a4c945-development.js"
+ "minified": "https://assets.adobedtm.com/staging/042253ab27b4/4d7f53b1921b/launch-eaafb5213fbf-development.min.js",
+ "license_path": "https://assets.adobedtm.com/staging/042253ab27b4/4d7f53b1921b/launch-eaafb5213fbf-development.js",
+ "debug": "https://assets.adobedtm.com/staging/042253ab27b4/4d7f53b1921b/launch-eaafb5213fbf-development.js"
}
]
}
@@ -9718,36 +9843,36 @@
"request": null,
"response": {
"data": {
- "id": "ENc488ee41bd12427190db304e0a1dcee1",
+ "id": "EN0517c270516e447b8cbe2231e621c2be",
"type": "environments",
"attributes": {
"archive": false,
- "created_at": "2023-01-30T20:51:25.194Z",
- "library_path": "042253ab27b4/3d67e2ccd0c6",
- "library_name": "launch-8c484ec4cf06-development.min.js",
+ "created_at": "2023-04-21T22:56:59.340Z",
+ "library_path": "042253ab27b4/38779ed0158e",
+ "library_name": "launch-4b170eeeb2c6-development.min.js",
"library_entry_points": [
{
- "library_name": "launch-8c484ec4cf06-development.min.js",
+ "library_name": "launch-4b170eeeb2c6-development.min.js",
"minified": true,
"references": [
- "042253ab27b4/3d67e2ccd0c6/launch-8c484ec4cf06-development.min.js"
+ "042253ab27b4/38779ed0158e/launch-4b170eeeb2c6-development.min.js"
],
- "license_path": "042253ab27b4/3d67e2ccd0c6/launch-8c484ec4cf06-development.js"
+ "license_path": "042253ab27b4/38779ed0158e/launch-4b170eeeb2c6-development.js"
},
{
- "library_name": "launch-8c484ec4cf06-development.js",
+ "library_name": "launch-4b170eeeb2c6-development.js",
"minified": false,
"references": [
- "042253ab27b4/3d67e2ccd0c6/launch-8c484ec4cf06-development.js"
+ "042253ab27b4/38779ed0158e/launch-4b170eeeb2c6-development.js"
]
}
],
"name": "Development Environment A",
"path": "https://assets.adobedtm.com/staging",
"stage": "development",
- "updated_at": "2023-01-30T20:51:25.346Z",
+ "updated_at": "2023-04-21T22:56:59.475Z",
"status": "succeeded",
- "token": "8c484ec4cf06",
+ "token": "4b170eeeb2c6",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -9756,50 +9881,50 @@
"relationships": {
"library": {
"links": {
- "related": "https://reactor.adobe.io/environments/ENc488ee41bd12427190db304e0a1dcee1/library"
+ "related": "https://reactor.adobe.io/environments/EN0517c270516e447b8cbe2231e621c2be/library"
},
"data": {
- "id": "LB3dfa265062b84fbab0d493474ee1b461",
+ "id": "LB7016ff4b4fa7488198f2ed6072a3efcc",
"type": "libraries"
}
},
"builds": {
"links": {
- "related": "https://reactor.adobe.io/environments/ENc488ee41bd12427190db304e0a1dcee1/builds"
+ "related": "https://reactor.adobe.io/environments/EN0517c270516e447b8cbe2231e621c2be/builds"
}
},
"host": {
"links": {
- "related": "https://reactor.adobe.io/environments/ENc488ee41bd12427190db304e0a1dcee1/host",
- "self": "https://reactor.adobe.io/environments/ENc488ee41bd12427190db304e0a1dcee1/relationships/host"
+ "related": "https://reactor.adobe.io/environments/EN0517c270516e447b8cbe2231e621c2be/host",
+ "self": "https://reactor.adobe.io/environments/EN0517c270516e447b8cbe2231e621c2be/relationships/host"
},
"data": {
- "id": "HT4a14f88210b94ef1a0894b9c98ec35c4",
+ "id": "HTe19feedbfa8f410ebd7e8695471f3070",
"type": "hosts"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/environments/ENc488ee41bd12427190db304e0a1dcee1/property"
+ "related": "https://reactor.adobe.io/environments/EN0517c270516e447b8cbe2231e621c2be/property"
},
"data": {
- "id": "PRd4dafd8efa544d42b95237eecea78600",
+ "id": "PRdefedcc06f084d45a363de04cabe0720",
"type": "properties"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRd4dafd8efa544d42b95237eecea78600",
- "self": "https://reactor.adobe.io/environments/ENc488ee41bd12427190db304e0a1dcee1"
+ "property": "https://reactor.adobe.io/properties/PRdefedcc06f084d45a363de04cabe0720",
+ "self": "https://reactor.adobe.io/environments/EN0517c270516e447b8cbe2231e621c2be"
},
"meta": {
"archive_encrypted": false,
"script_sources": [
{
"hosting_region": "Standard",
- "minified": "https://assets.adobedtm.com/staging/042253ab27b4/3d67e2ccd0c6/launch-8c484ec4cf06-development.min.js",
- "license_path": "https://assets.adobedtm.com/staging/042253ab27b4/3d67e2ccd0c6/launch-8c484ec4cf06-development.js",
- "debug": "https://assets.adobedtm.com/staging/042253ab27b4/3d67e2ccd0c6/launch-8c484ec4cf06-development.js"
+ "minified": "https://assets.adobedtm.com/staging/042253ab27b4/38779ed0158e/launch-4b170eeeb2c6-development.min.js",
+ "license_path": "https://assets.adobedtm.com/staging/042253ab27b4/38779ed0158e/launch-4b170eeeb2c6-development.js",
+ "debug": "https://assets.adobedtm.com/staging/042253ab27b4/38779ed0158e/launch-4b170eeeb2c6-development.js"
}
]
}
@@ -9816,36 +9941,36 @@
"request": null,
"response": {
"data": {
- "id": "ENdddab5bb7843439895f84b8ff5c403fc",
+ "id": "EN5834a6b3d8904842b840a1f98d29adbc",
"type": "environments",
"attributes": {
"archive": false,
- "created_at": "2023-01-30T20:51:31.268Z",
- "library_path": "042253ab27b4/dc8e3178a55c",
- "library_name": "launch-17a2e7e19e1d-development.min.js",
+ "created_at": "2023-04-21T22:57:05.106Z",
+ "library_path": "042253ab27b4/9666202dd9b1",
+ "library_name": "launch-aa51f26e44e6-development.min.js",
"library_entry_points": [
{
- "library_name": "launch-17a2e7e19e1d-development.min.js",
+ "library_name": "launch-aa51f26e44e6-development.min.js",
"minified": true,
"references": [
- "042253ab27b4/dc8e3178a55c/launch-17a2e7e19e1d-development.min.js"
+ "042253ab27b4/9666202dd9b1/launch-aa51f26e44e6-development.min.js"
],
- "license_path": "042253ab27b4/dc8e3178a55c/launch-17a2e7e19e1d-development.js"
+ "license_path": "042253ab27b4/9666202dd9b1/launch-aa51f26e44e6-development.js"
},
{
- "library_name": "launch-17a2e7e19e1d-development.js",
+ "library_name": "launch-aa51f26e44e6-development.js",
"minified": false,
"references": [
- "042253ab27b4/dc8e3178a55c/launch-17a2e7e19e1d-development.js"
+ "042253ab27b4/9666202dd9b1/launch-aa51f26e44e6-development.js"
]
}
],
"name": "Development Environment A",
"path": "https://assets.adobedtm.com/staging",
"stage": "development",
- "updated_at": "2023-01-30T20:51:31.390Z",
+ "updated_at": "2023-04-21T22:57:05.221Z",
"status": "succeeded",
- "token": "17a2e7e19e1d",
+ "token": "aa51f26e44e6",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -9854,50 +9979,50 @@
"relationships": {
"library": {
"links": {
- "related": "https://reactor.adobe.io/environments/ENdddab5bb7843439895f84b8ff5c403fc/library"
+ "related": "https://reactor.adobe.io/environments/EN5834a6b3d8904842b840a1f98d29adbc/library"
},
"data": {
- "id": "LB598458e3d58047baa4a4beef7552a16c",
+ "id": "LB72bd1eeed1494db3bedebd2447e9a41f",
"type": "libraries"
}
},
"builds": {
"links": {
- "related": "https://reactor.adobe.io/environments/ENdddab5bb7843439895f84b8ff5c403fc/builds"
+ "related": "https://reactor.adobe.io/environments/EN5834a6b3d8904842b840a1f98d29adbc/builds"
}
},
"host": {
"links": {
- "related": "https://reactor.adobe.io/environments/ENdddab5bb7843439895f84b8ff5c403fc/host",
- "self": "https://reactor.adobe.io/environments/ENdddab5bb7843439895f84b8ff5c403fc/relationships/host"
+ "related": "https://reactor.adobe.io/environments/EN5834a6b3d8904842b840a1f98d29adbc/host",
+ "self": "https://reactor.adobe.io/environments/EN5834a6b3d8904842b840a1f98d29adbc/relationships/host"
},
"data": {
- "id": "HT50a85da6ab4645aea191f9d3099fb185",
+ "id": "HT7083fc2360144f73b701217af0536e79",
"type": "hosts"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/environments/ENdddab5bb7843439895f84b8ff5c403fc/property"
+ "related": "https://reactor.adobe.io/environments/EN5834a6b3d8904842b840a1f98d29adbc/property"
},
"data": {
- "id": "PRcf7507b89faa4cfc983538c1eed7aea2",
+ "id": "PRa807c60642114ef0840678c21c808d5c",
"type": "properties"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRcf7507b89faa4cfc983538c1eed7aea2",
- "self": "https://reactor.adobe.io/environments/ENdddab5bb7843439895f84b8ff5c403fc"
+ "property": "https://reactor.adobe.io/properties/PRa807c60642114ef0840678c21c808d5c",
+ "self": "https://reactor.adobe.io/environments/EN5834a6b3d8904842b840a1f98d29adbc"
},
"meta": {
"archive_encrypted": false,
"script_sources": [
{
"hosting_region": "Standard",
- "minified": "https://assets.adobedtm.com/staging/042253ab27b4/dc8e3178a55c/launch-17a2e7e19e1d-development.min.js",
- "license_path": "https://assets.adobedtm.com/staging/042253ab27b4/dc8e3178a55c/launch-17a2e7e19e1d-development.js",
- "debug": "https://assets.adobedtm.com/staging/042253ab27b4/dc8e3178a55c/launch-17a2e7e19e1d-development.js"
+ "minified": "https://assets.adobedtm.com/staging/042253ab27b4/9666202dd9b1/launch-aa51f26e44e6-development.min.js",
+ "license_path": "https://assets.adobedtm.com/staging/042253ab27b4/9666202dd9b1/launch-aa51f26e44e6-development.js",
+ "debug": "https://assets.adobedtm.com/staging/042253ab27b4/9666202dd9b1/launch-aa51f26e44e6-development.js"
}
]
}
@@ -9914,36 +10039,36 @@
"request": null,
"response": {
"data": {
- "id": "EN76d62a0050dd48f086ec2c1dd72b8677",
+ "id": "EN71563c3eea304584a5cbb017ee5b7775",
"type": "environments",
"attributes": {
"archive": false,
- "created_at": "2023-01-30T20:51:37.314Z",
- "library_path": "042253ab27b4/4707d88a1c25",
- "library_name": "launch-5f6cb92d6401-development.min.js",
+ "created_at": "2023-04-21T22:57:11.106Z",
+ "library_path": "042253ab27b4/c2163558f91a",
+ "library_name": "launch-ea1accb85b2e-development.min.js",
"library_entry_points": [
{
- "library_name": "launch-5f6cb92d6401-development.min.js",
+ "library_name": "launch-ea1accb85b2e-development.min.js",
"minified": true,
"references": [
- "042253ab27b4/4707d88a1c25/launch-5f6cb92d6401-development.min.js"
+ "042253ab27b4/c2163558f91a/launch-ea1accb85b2e-development.min.js"
],
- "license_path": "042253ab27b4/4707d88a1c25/launch-5f6cb92d6401-development.js"
+ "license_path": "042253ab27b4/c2163558f91a/launch-ea1accb85b2e-development.js"
},
{
- "library_name": "launch-5f6cb92d6401-development.js",
+ "library_name": "launch-ea1accb85b2e-development.js",
"minified": false,
"references": [
- "042253ab27b4/4707d88a1c25/launch-5f6cb92d6401-development.js"
+ "042253ab27b4/c2163558f91a/launch-ea1accb85b2e-development.js"
]
}
],
"name": "Development Environment A",
"path": null,
"stage": "development",
- "updated_at": "2023-01-30T20:51:38.065Z",
+ "updated_at": "2023-04-21T22:57:11.305Z",
"status": "succeeded",
- "token": "5f6cb92d6401",
+ "token": "ea1accb85b2e",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -9952,38 +10077,38 @@
"relationships": {
"library": {
"links": {
- "related": "https://reactor.adobe.io/environments/EN76d62a0050dd48f086ec2c1dd72b8677/library"
+ "related": "https://reactor.adobe.io/environments/EN71563c3eea304584a5cbb017ee5b7775/library"
},
"data": null
},
"builds": {
"links": {
- "related": "https://reactor.adobe.io/environments/EN76d62a0050dd48f086ec2c1dd72b8677/builds"
+ "related": "https://reactor.adobe.io/environments/EN71563c3eea304584a5cbb017ee5b7775/builds"
}
},
"host": {
"links": {
- "related": "https://reactor.adobe.io/environments/EN76d62a0050dd48f086ec2c1dd72b8677/host",
- "self": "https://reactor.adobe.io/environments/EN76d62a0050dd48f086ec2c1dd72b8677/relationships/host"
+ "related": "https://reactor.adobe.io/environments/EN71563c3eea304584a5cbb017ee5b7775/host",
+ "self": "https://reactor.adobe.io/environments/EN71563c3eea304584a5cbb017ee5b7775/relationships/host"
},
"data": {
- "id": "HT0a5d4a286c8843c5be3601678ba761ba",
+ "id": "HTa3b270ba69fa43d28cac62ec4a7f94c6",
"type": "hosts"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/environments/EN76d62a0050dd48f086ec2c1dd72b8677/property"
+ "related": "https://reactor.adobe.io/environments/EN71563c3eea304584a5cbb017ee5b7775/property"
},
"data": {
- "id": "PRb55d3b95d8af44aeacc4ca69385b3a1c",
+ "id": "PR8f0cd1de2d3c4072b932bb2a046bcb43",
"type": "properties"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRb55d3b95d8af44aeacc4ca69385b3a1c",
- "self": "https://reactor.adobe.io/environments/EN76d62a0050dd48f086ec2c1dd72b8677"
+ "property": "https://reactor.adobe.io/properties/PR8f0cd1de2d3c4072b932bb2a046bcb43",
+ "self": "https://reactor.adobe.io/environments/EN71563c3eea304584a5cbb017ee5b7775"
},
"meta": {
"archive_encrypted": false
@@ -10003,7 +10128,7 @@
},
"response": {
"data": {
- "id": "EP1a415ebb33c04c3ea5d37721a19c52b4",
+ "id": "EPfc75137bb23b439384ebf5a67979e84f",
"type": "extension_packages",
"attributes": {
"actions": null,
@@ -10016,7 +10141,7 @@
"cdn_path": null,
"conditions": null,
"configuration": null,
- "created_at": "2023-01-30T20:51:38.752Z",
+ "created_at": "2023-04-21T22:57:11.871Z",
"data_elements": null,
"description": "Provides nothing.",
"discontinued": false,
@@ -10027,13 +10152,13 @@
"hosted_lib_files": null,
"icon_path": null,
"main": null,
- "name": "test-1675111898",
+ "name": "test-1682117831",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "pending",
"platform": "web",
- "updated_at": "2023-01-30T20:51:38.752Z",
+ "updated_at": "2023-04-21T22:57:11.871Z",
"version": "1.0.0",
"view_base_path": null,
"created_by_email": "ciltaru@adobe.com",
@@ -10042,7 +10167,7 @@
"updated_by_display_name": "George Ciltaru"
},
"links": {
- "self": "https://reactor.adobe.io/extension_packages/EP1a415ebb33c04c3ea5d37721a19c52b4"
+ "self": "https://reactor.adobe.io/extension_packages/EPfc75137bb23b439384ebf5a67979e84f"
}
}
},
@@ -10059,7 +10184,7 @@
},
"response": {
"data": {
- "id": "EP5eb32f57d71e436cac2b8e0e72ad08d2",
+ "id": "EP4849516b318148adafed65d629541ff9",
"type": "extension_packages",
"attributes": {
"actions": [
@@ -10071,12 +10196,12 @@
"email": "reactor@adobe.com"
},
"availability": "development",
- "cdn_path": "https://assets.adobedtm.com/staging/extensions/EP5eb32f57d71e436cac2b8e0e72ad08d2",
+ "cdn_path": "https://assets.adobedtm.com/staging/extensions/EP4849516b318148adafed65d629541ff9",
"conditions": [
],
"configuration": null,
- "created_at": "2023-01-30T20:51:44.307Z",
+ "created_at": "2023-04-21T22:57:22.402Z",
"data_elements": [
],
@@ -10091,13 +10216,13 @@
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
- "name": "test-1675111904",
+ "name": "test-1682117842",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "pending",
"platform": "web",
- "updated_at": "2023-01-30T20:51:49.650Z",
+ "updated_at": "2023-04-21T22:57:27.763Z",
"version": "2.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
@@ -10106,7 +10231,7 @@
"updated_by_display_name": "George Ciltaru"
},
"links": {
- "self": "https://reactor.adobe.io/extension_packages/EP5eb32f57d71e436cac2b8e0e72ad08d2"
+ "self": "https://reactor.adobe.io/extension_packages/EP4849516b318148adafed65d629541ff9"
}
}
},
@@ -10124,12 +10249,12 @@
"action": "release_private"
},
"type": "extension_packages",
- "id": "EPe38e2e0354e0476b9f059f2ad9d97499"
+ "id": "EP0e4cc432ddfc4e86a6888bb1a40075ec"
}
},
"response": {
"data": {
- "id": "EPe38e2e0354e0476b9f059f2ad9d97499",
+ "id": "EP0e4cc432ddfc4e86a6888bb1a40075ec",
"type": "extension_packages",
"attributes": {
"actions": [
@@ -10141,12 +10266,12 @@
"email": "reactor@adobe.com"
},
"availability": "private",
- "cdn_path": "https://assets.adobedtm.com/staging/extensions/EPe38e2e0354e0476b9f059f2ad9d97499",
+ "cdn_path": "https://assets.adobedtm.com/staging/extensions/EP0e4cc432ddfc4e86a6888bb1a40075ec",
"conditions": [
],
"configuration": null,
- "created_at": "2023-01-30T20:51:54.992Z",
+ "created_at": "2023-04-21T22:57:33.113Z",
"data_elements": [
],
@@ -10161,13 +10286,13 @@
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
- "name": "test-1675111914",
+ "name": "test-1682117852",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
- "updated_at": "2023-01-30T20:52:05.265Z",
+ "updated_at": "2023-04-21T22:57:38.352Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
@@ -10176,7 +10301,7 @@
"updated_by_display_name": "George Ciltaru"
},
"links": {
- "self": "https://reactor.adobe.io/extension_packages/EPe38e2e0354e0476b9f059f2ad9d97499"
+ "self": "https://reactor.adobe.io/extension_packages/EP0e4cc432ddfc4e86a6888bb1a40075ec"
}
}
},
@@ -10194,12 +10319,12 @@
"discontinued": true
},
"type": "extension_packages",
- "id": "EP6a5cbc04a036475c801d7baab2e1f61b"
+ "id": "EPddc7c6299fb24337bb936368683b89d4"
}
},
"response": {
"data": {
- "id": "EP6a5cbc04a036475c801d7baab2e1f61b",
+ "id": "EPddc7c6299fb24337bb936368683b89d4",
"type": "extension_packages",
"attributes": {
"actions": [
@@ -10211,12 +10336,12 @@
"email": "reactor@adobe.com"
},
"availability": "private",
- "cdn_path": "https://assets.adobedtm.com/staging/extensions/EP6a5cbc04a036475c801d7baab2e1f61b",
+ "cdn_path": "https://assets.adobedtm.com/staging/extensions/EPddc7c6299fb24337bb936368683b89d4",
"conditions": [
],
"configuration": null,
- "created_at": "2023-01-30T20:52:05.511Z",
+ "created_at": "2023-04-21T22:57:38.679Z",
"data_elements": [
],
@@ -10231,13 +10356,13 @@
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
- "name": "test-1675111925",
+ "name": "test-1682117858",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
- "updated_at": "2023-01-30T20:52:10.793Z",
+ "updated_at": "2023-04-21T22:57:44.041Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
@@ -10246,7 +10371,7 @@
"updated_by_display_name": "George Ciltaru"
},
"links": {
- "self": "https://reactor.adobe.io/extension_packages/EP6a5cbc04a036475c801d7baab2e1f61b"
+ "self": "https://reactor.adobe.io/extension_packages/EPddc7c6299fb24337bb936368683b89d4"
}
}
},
@@ -21657,10 +21782,10 @@
},
"response": {
"data": {
- "id": "EX030d45552bd94ad7b7e4e6255f89aeb8",
+ "id": "EX0dd0418d4bc8424aba6129ba02f19c9f",
"type": "extensions",
"attributes": {
- "created_at": "2023-01-30T20:52:22.039Z",
+ "created_at": "2023-04-21T22:58:00.660Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -21668,7 +21793,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:52:22.039Z",
+ "updated_at": "2023-04-21T22:58:00.660Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -21682,40 +21807,40 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX030d45552bd94ad7b7e4e6255f89aeb8/libraries"
+ "related": "https://reactor.adobe.io/extensions/EX0dd0418d4bc8424aba6129ba02f19c9f/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX030d45552bd94ad7b7e4e6255f89aeb8/revisions"
+ "related": "https://reactor.adobe.io/extensions/EX0dd0418d4bc8424aba6129ba02f19c9f/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX030d45552bd94ad7b7e4e6255f89aeb8/notes"
+ "related": "https://reactor.adobe.io/extensions/EX0dd0418d4bc8424aba6129ba02f19c9f/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX030d45552bd94ad7b7e4e6255f89aeb8/property"
+ "related": "https://reactor.adobe.io/extensions/EX0dd0418d4bc8424aba6129ba02f19c9f/property"
},
"data": {
- "id": "PR92ad4d2de9b74899a9e6332cdb192d04",
+ "id": "PR99559eff613045c89fe97e5dd3ee1a4a",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX030d45552bd94ad7b7e4e6255f89aeb8/origin"
+ "related": "https://reactor.adobe.io/extensions/EX0dd0418d4bc8424aba6129ba02f19c9f/origin"
},
"data": {
- "id": "EX030d45552bd94ad7b7e4e6255f89aeb8",
+ "id": "EX0dd0418d4bc8424aba6129ba02f19c9f",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX030d45552bd94ad7b7e4e6255f89aeb8/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX0dd0418d4bc8424aba6129ba02f19c9f/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -21724,7 +21849,7 @@
},
"extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX030d45552bd94ad7b7e4e6255f89aeb8/extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX0dd0418d4bc8424aba6129ba02f19c9f/extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -21733,9 +21858,9 @@
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR92ad4d2de9b74899a9e6332cdb192d04",
- "origin": "https://reactor.adobe.io/extensions/EX030d45552bd94ad7b7e4e6255f89aeb8",
- "self": "https://reactor.adobe.io/extensions/EX030d45552bd94ad7b7e4e6255f89aeb8",
+ "property": "https://reactor.adobe.io/properties/PR99559eff613045c89fe97e5dd3ee1a4a",
+ "origin": "https://reactor.adobe.io/extensions/EX0dd0418d4bc8424aba6129ba02f19c9f",
+ "self": "https://reactor.adobe.io/extensions/EX0dd0418d4bc8424aba6129ba02f19c9f",
"extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab",
"latest_extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab"
},
@@ -21758,15 +21883,15 @@
"enabled": false
},
"type": "extensions",
- "id": "EXc46dd4e6a8534c71b9840854614a86ca"
+ "id": "EX3d79fbbd24de41d48107ae2b76ae9bd3"
}
},
"response": {
"data": {
- "id": "EXc46dd4e6a8534c71b9840854614a86ca",
+ "id": "EX3d79fbbd24de41d48107ae2b76ae9bd3",
"type": "extensions",
"attributes": {
- "created_at": "2023-01-30T20:52:27.604Z",
+ "created_at": "2023-04-21T22:58:06.362Z",
"deleted_at": null,
"dirty": false,
"enabled": false,
@@ -21774,7 +21899,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:52:27.689Z",
+ "updated_at": "2023-04-21T22:58:06.541Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -21788,40 +21913,40 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXc46dd4e6a8534c71b9840854614a86ca/libraries"
+ "related": "https://reactor.adobe.io/extensions/EX3d79fbbd24de41d48107ae2b76ae9bd3/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXc46dd4e6a8534c71b9840854614a86ca/revisions"
+ "related": "https://reactor.adobe.io/extensions/EX3d79fbbd24de41d48107ae2b76ae9bd3/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXc46dd4e6a8534c71b9840854614a86ca/notes"
+ "related": "https://reactor.adobe.io/extensions/EX3d79fbbd24de41d48107ae2b76ae9bd3/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXc46dd4e6a8534c71b9840854614a86ca/property"
+ "related": "https://reactor.adobe.io/extensions/EX3d79fbbd24de41d48107ae2b76ae9bd3/property"
},
"data": {
- "id": "PRea5f0dc2f4be4be4861e4c88e5516e31",
+ "id": "PR649b3ea9ab57424a9f6a4d9124110741",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXc46dd4e6a8534c71b9840854614a86ca/origin"
+ "related": "https://reactor.adobe.io/extensions/EX3d79fbbd24de41d48107ae2b76ae9bd3/origin"
},
"data": {
- "id": "EXc46dd4e6a8534c71b9840854614a86ca",
+ "id": "EX3d79fbbd24de41d48107ae2b76ae9bd3",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXc46dd4e6a8534c71b9840854614a86ca/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX3d79fbbd24de41d48107ae2b76ae9bd3/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -21830,7 +21955,7 @@
},
"extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXc46dd4e6a8534c71b9840854614a86ca/extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX3d79fbbd24de41d48107ae2b76ae9bd3/extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -21839,9 +21964,9 @@
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRea5f0dc2f4be4be4861e4c88e5516e31",
- "origin": "https://reactor.adobe.io/extensions/EXc46dd4e6a8534c71b9840854614a86ca",
- "self": "https://reactor.adobe.io/extensions/EXc46dd4e6a8534c71b9840854614a86ca",
+ "property": "https://reactor.adobe.io/properties/PR649b3ea9ab57424a9f6a4d9124110741",
+ "origin": "https://reactor.adobe.io/extensions/EX3d79fbbd24de41d48107ae2b76ae9bd3",
+ "self": "https://reactor.adobe.io/extensions/EX3d79fbbd24de41d48107ae2b76ae9bd3",
"extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab",
"latest_extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab"
},
@@ -21861,10 +21986,10 @@
"request": null,
"response": {
"data": {
- "id": "EXbde5428d1345417fa43b2b763932d1d6",
+ "id": "EX3cf1a0b4e1a6445791ac35ed11421621",
"type": "extensions",
"attributes": {
- "created_at": "2023-01-30T20:52:33.279Z",
+ "created_at": "2023-04-21T22:58:12.151Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -21872,7 +21997,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:52:33.279Z",
+ "updated_at": "2023-04-21T22:58:12.151Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -21886,40 +22011,40 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXbde5428d1345417fa43b2b763932d1d6/libraries"
+ "related": "https://reactor.adobe.io/extensions/EX3cf1a0b4e1a6445791ac35ed11421621/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXbde5428d1345417fa43b2b763932d1d6/revisions"
+ "related": "https://reactor.adobe.io/extensions/EX3cf1a0b4e1a6445791ac35ed11421621/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXbde5428d1345417fa43b2b763932d1d6/notes"
+ "related": "https://reactor.adobe.io/extensions/EX3cf1a0b4e1a6445791ac35ed11421621/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXbde5428d1345417fa43b2b763932d1d6/property"
+ "related": "https://reactor.adobe.io/extensions/EX3cf1a0b4e1a6445791ac35ed11421621/property"
},
"data": {
- "id": "PR1044de1e4150437687a76f1f12609ffd",
+ "id": "PR5cf1d23bd4254b0ab5ecdebed41ab7fc",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXbde5428d1345417fa43b2b763932d1d6/origin"
+ "related": "https://reactor.adobe.io/extensions/EX3cf1a0b4e1a6445791ac35ed11421621/origin"
},
"data": {
- "id": "EXbde5428d1345417fa43b2b763932d1d6",
+ "id": "EX3cf1a0b4e1a6445791ac35ed11421621",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXbde5428d1345417fa43b2b763932d1d6/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX3cf1a0b4e1a6445791ac35ed11421621/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -21928,7 +22053,7 @@
},
"extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXbde5428d1345417fa43b2b763932d1d6/extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX3cf1a0b4e1a6445791ac35ed11421621/extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -21937,9 +22062,9 @@
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR1044de1e4150437687a76f1f12609ffd",
- "origin": "https://reactor.adobe.io/extensions/EXbde5428d1345417fa43b2b763932d1d6",
- "self": "https://reactor.adobe.io/extensions/EXbde5428d1345417fa43b2b763932d1d6",
+ "property": "https://reactor.adobe.io/properties/PR5cf1d23bd4254b0ab5ecdebed41ab7fc",
+ "origin": "https://reactor.adobe.io/extensions/EX3cf1a0b4e1a6445791ac35ed11421621",
+ "self": "https://reactor.adobe.io/extensions/EX3cf1a0b4e1a6445791ac35ed11421621",
"extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab",
"latest_extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab"
},
@@ -21960,10 +22085,10 @@
"response": {
"data": [
{
- "id": "EX8be36a13a73845c395dd333f0321872f",
+ "id": "EX640aea5dd5c74b73b86f6530897ab0bc",
"type": "extensions",
"attributes": {
- "created_at": "2023-01-30T20:52:38.829Z",
+ "created_at": "2023-04-21T22:58:17.773Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -21971,7 +22096,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:52:38.829Z",
+ "updated_at": "2023-04-21T22:58:17.773Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -21985,40 +22110,40 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX8be36a13a73845c395dd333f0321872f/libraries"
+ "related": "https://reactor.adobe.io/extensions/EX640aea5dd5c74b73b86f6530897ab0bc/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX8be36a13a73845c395dd333f0321872f/revisions"
+ "related": "https://reactor.adobe.io/extensions/EX640aea5dd5c74b73b86f6530897ab0bc/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX8be36a13a73845c395dd333f0321872f/notes"
+ "related": "https://reactor.adobe.io/extensions/EX640aea5dd5c74b73b86f6530897ab0bc/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX8be36a13a73845c395dd333f0321872f/property"
+ "related": "https://reactor.adobe.io/extensions/EX640aea5dd5c74b73b86f6530897ab0bc/property"
},
"data": {
- "id": "PR22a6d4e1084d4fbfacad8c2c6595ac81",
+ "id": "PR04066656b7264f038bd1e98295bbb1c9",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX8be36a13a73845c395dd333f0321872f/origin"
+ "related": "https://reactor.adobe.io/extensions/EX640aea5dd5c74b73b86f6530897ab0bc/origin"
},
"data": {
- "id": "EX8be36a13a73845c395dd333f0321872f",
+ "id": "EX640aea5dd5c74b73b86f6530897ab0bc",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX8be36a13a73845c395dd333f0321872f/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX640aea5dd5c74b73b86f6530897ab0bc/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -22027,7 +22152,7 @@
},
"extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX8be36a13a73845c395dd333f0321872f/extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX640aea5dd5c74b73b86f6530897ab0bc/extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -22036,9 +22161,9 @@
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR22a6d4e1084d4fbfacad8c2c6595ac81",
- "origin": "https://reactor.adobe.io/extensions/EX8be36a13a73845c395dd333f0321872f",
- "self": "https://reactor.adobe.io/extensions/EX8be36a13a73845c395dd333f0321872f",
+ "property": "https://reactor.adobe.io/properties/PR04066656b7264f038bd1e98295bbb1c9",
+ "origin": "https://reactor.adobe.io/extensions/EX640aea5dd5c74b73b86f6530897ab0bc",
+ "self": "https://reactor.adobe.io/extensions/EX640aea5dd5c74b73b86f6530897ab0bc",
"extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab",
"latest_extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab"
},
@@ -22047,10 +22172,10 @@
}
},
{
- "id": "EX2b78f8ab5ff341c5a087955249f21abe",
+ "id": "EXc7f3952d5b5047bf8d682a88405ecb4f",
"type": "extensions",
"attributes": {
- "created_at": "2023-01-30T20:52:33.618Z",
+ "created_at": "2023-04-21T22:58:12.551Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -22058,7 +22183,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:52:33.618Z",
+ "updated_at": "2023-04-21T22:58:12.551Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -22072,40 +22197,40 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX2b78f8ab5ff341c5a087955249f21abe/libraries"
+ "related": "https://reactor.adobe.io/extensions/EXc7f3952d5b5047bf8d682a88405ecb4f/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX2b78f8ab5ff341c5a087955249f21abe/revisions"
+ "related": "https://reactor.adobe.io/extensions/EXc7f3952d5b5047bf8d682a88405ecb4f/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX2b78f8ab5ff341c5a087955249f21abe/notes"
+ "related": "https://reactor.adobe.io/extensions/EXc7f3952d5b5047bf8d682a88405ecb4f/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX2b78f8ab5ff341c5a087955249f21abe/property"
+ "related": "https://reactor.adobe.io/extensions/EXc7f3952d5b5047bf8d682a88405ecb4f/property"
},
"data": {
- "id": "PR22a6d4e1084d4fbfacad8c2c6595ac81",
+ "id": "PR04066656b7264f038bd1e98295bbb1c9",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX2b78f8ab5ff341c5a087955249f21abe/origin"
+ "related": "https://reactor.adobe.io/extensions/EXc7f3952d5b5047bf8d682a88405ecb4f/origin"
},
"data": {
- "id": "EX2b78f8ab5ff341c5a087955249f21abe",
+ "id": "EXc7f3952d5b5047bf8d682a88405ecb4f",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX2b78f8ab5ff341c5a087955249f21abe/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/extensions/EXc7f3952d5b5047bf8d682a88405ecb4f/updated_with_extension_package"
},
"data": {
"id": "EP8451c63b3239426892f8cca940349990",
@@ -22114,7 +22239,7 @@
},
"extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX2b78f8ab5ff341c5a087955249f21abe/extension_package"
+ "related": "https://reactor.adobe.io/extensions/EXc7f3952d5b5047bf8d682a88405ecb4f/extension_package"
},
"data": {
"id": "EP8451c63b3239426892f8cca940349990",
@@ -22123,9 +22248,9 @@
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR22a6d4e1084d4fbfacad8c2c6595ac81",
- "origin": "https://reactor.adobe.io/extensions/EX2b78f8ab5ff341c5a087955249f21abe",
- "self": "https://reactor.adobe.io/extensions/EX2b78f8ab5ff341c5a087955249f21abe",
+ "property": "https://reactor.adobe.io/properties/PR04066656b7264f038bd1e98295bbb1c9",
+ "origin": "https://reactor.adobe.io/extensions/EXc7f3952d5b5047bf8d682a88405ecb4f",
+ "self": "https://reactor.adobe.io/extensions/EXc7f3952d5b5047bf8d682a88405ecb4f",
"extension_package": "https://reactor.adobe.io/extension_packages/EP8451c63b3239426892f8cca940349990",
"latest_extension_package": "https://reactor.adobe.io/extension_packages/EP8451c63b3239426892f8cca940349990"
},
@@ -22159,16 +22284,16 @@
"meta": {
"action": "revise"
},
- "id": "EX93ba576435c449c4b796d47bb90381fd",
+ "id": "EX06155a539d8d4e4d8493fd9cc30d329e",
"type": "extensions"
}
},
"response": {
"data": {
- "id": "EX44636fe214984a7fb97e4b32f9e7ae5c",
+ "id": "EXddcfd74be8d84f909c39da62e1be6ca7",
"type": "extensions",
"attributes": {
- "created_at": "2023-01-30T20:52:44.424Z",
+ "created_at": "2023-04-21T22:58:23.636Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -22176,7 +22301,7 @@
"published": false,
"published_at": null,
"revision_number": 1,
- "updated_at": "2023-01-30T20:52:44.424Z",
+ "updated_at": "2023-04-21T22:58:23.636Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -22190,40 +22315,40 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX44636fe214984a7fb97e4b32f9e7ae5c/libraries"
+ "related": "https://reactor.adobe.io/extensions/EXddcfd74be8d84f909c39da62e1be6ca7/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX44636fe214984a7fb97e4b32f9e7ae5c/revisions"
+ "related": "https://reactor.adobe.io/extensions/EXddcfd74be8d84f909c39da62e1be6ca7/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX44636fe214984a7fb97e4b32f9e7ae5c/notes"
+ "related": "https://reactor.adobe.io/extensions/EXddcfd74be8d84f909c39da62e1be6ca7/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX44636fe214984a7fb97e4b32f9e7ae5c/property"
+ "related": "https://reactor.adobe.io/extensions/EXddcfd74be8d84f909c39da62e1be6ca7/property"
},
"data": {
- "id": "PR66c30d34927148c79e8b7cf82260b24b",
+ "id": "PR643e78fc2f6a44b68036156abfc98e1b",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX44636fe214984a7fb97e4b32f9e7ae5c/origin"
+ "related": "https://reactor.adobe.io/extensions/EXddcfd74be8d84f909c39da62e1be6ca7/origin"
},
"data": {
- "id": "EX93ba576435c449c4b796d47bb90381fd",
+ "id": "EX06155a539d8d4e4d8493fd9cc30d329e",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX44636fe214984a7fb97e4b32f9e7ae5c/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/extensions/EXddcfd74be8d84f909c39da62e1be6ca7/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -22232,7 +22357,7 @@
},
"extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX44636fe214984a7fb97e4b32f9e7ae5c/extension_package"
+ "related": "https://reactor.adobe.io/extensions/EXddcfd74be8d84f909c39da62e1be6ca7/extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -22241,9 +22366,9 @@
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR66c30d34927148c79e8b7cf82260b24b",
- "origin": "https://reactor.adobe.io/extensions/EX93ba576435c449c4b796d47bb90381fd",
- "self": "https://reactor.adobe.io/extensions/EX44636fe214984a7fb97e4b32f9e7ae5c",
+ "property": "https://reactor.adobe.io/properties/PR643e78fc2f6a44b68036156abfc98e1b",
+ "origin": "https://reactor.adobe.io/extensions/EX06155a539d8d4e4d8493fd9cc30d329e",
+ "self": "https://reactor.adobe.io/extensions/EXddcfd74be8d84f909c39da62e1be6ca7",
"extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab",
"latest_extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab"
},
@@ -22264,14 +22389,14 @@
"response": {
"data": [
{
- "id": "LBf0ebb4ee60df451abb7654f38fcf8e6b",
+ "id": "LB28b8c34387cf4bf6a1bb9e65a3058f6d",
"type": "libraries",
"attributes": {
- "created_at": "2023-01-30T20:52:50.166Z",
+ "created_at": "2023-04-21T22:58:29.641Z",
"name": "My Library",
"published_at": null,
"state": "development",
- "updated_at": "2023-01-30T20:52:50.182Z",
+ "updated_at": "2023-04-21T22:58:29.662Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -22281,36 +22406,36 @@
"relationships": {
"builds": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBf0ebb4ee60df451abb7654f38fcf8e6b/builds"
+ "related": "https://reactor.adobe.io/libraries/LB28b8c34387cf4bf6a1bb9e65a3058f6d/builds"
}
},
"environment": {
"links": {
- "self": "https://reactor.adobe.io/libraries/LBf0ebb4ee60df451abb7654f38fcf8e6b/relationships/environment"
+ "self": "https://reactor.adobe.io/libraries/LB28b8c34387cf4bf6a1bb9e65a3058f6d/relationships/environment"
},
"data": null
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBf0ebb4ee60df451abb7654f38fcf8e6b/data_elements",
- "self": "https://reactor.adobe.io/libraries/LBf0ebb4ee60df451abb7654f38fcf8e6b/relationships/data_elements"
+ "related": "https://reactor.adobe.io/libraries/LB28b8c34387cf4bf6a1bb9e65a3058f6d/data_elements",
+ "self": "https://reactor.adobe.io/libraries/LB28b8c34387cf4bf6a1bb9e65a3058f6d/relationships/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBf0ebb4ee60df451abb7654f38fcf8e6b/extensions",
- "self": "https://reactor.adobe.io/libraries/LBf0ebb4ee60df451abb7654f38fcf8e6b/relationships/extensions"
+ "related": "https://reactor.adobe.io/libraries/LB28b8c34387cf4bf6a1bb9e65a3058f6d/extensions",
+ "self": "https://reactor.adobe.io/libraries/LB28b8c34387cf4bf6a1bb9e65a3058f6d/relationships/extensions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBf0ebb4ee60df451abb7654f38fcf8e6b/notes"
+ "related": "https://reactor.adobe.io/libraries/LB28b8c34387cf4bf6a1bb9e65a3058f6d/notes"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBf0ebb4ee60df451abb7654f38fcf8e6b/rules",
- "self": "https://reactor.adobe.io/libraries/LBf0ebb4ee60df451abb7654f38fcf8e6b/relationships/rules"
+ "related": "https://reactor.adobe.io/libraries/LB28b8c34387cf4bf6a1bb9e65a3058f6d/rules",
+ "self": "https://reactor.adobe.io/libraries/LB28b8c34387cf4bf6a1bb9e65a3058f6d/relationships/rules"
}
},
"upstream_library": {
@@ -22318,23 +22443,23 @@
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBf0ebb4ee60df451abb7654f38fcf8e6b/property"
+ "related": "https://reactor.adobe.io/libraries/LB28b8c34387cf4bf6a1bb9e65a3058f6d/property"
},
"data": {
- "id": "PR4eb1aaf7490b4823b883ce4a05987594",
+ "id": "PRacfb8cb066f849fc8ea03e82b697408a",
"type": "properties"
}
},
"last_build": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBf0ebb4ee60df451abb7654f38fcf8e6b/last_build"
+ "related": "https://reactor.adobe.io/libraries/LB28b8c34387cf4bf6a1bb9e65a3058f6d/last_build"
},
"data": null
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR4eb1aaf7490b4823b883ce4a05987594",
- "self": "https://reactor.adobe.io/libraries/LBf0ebb4ee60df451abb7654f38fcf8e6b"
+ "property": "https://reactor.adobe.io/properties/PRacfb8cb066f849fc8ea03e82b697408a",
+ "self": "https://reactor.adobe.io/libraries/LB28b8c34387cf4bf6a1bb9e65a3058f6d"
},
"meta": {
"build_status": null,
@@ -22374,10 +22499,10 @@
"response": {
"data": [
{
- "id": "EX366c2fd3d57045ecb199d0dbd10d79bd",
+ "id": "EX8ab7d2880e4845fb88bb4f8788e7099d",
"type": "extensions",
"attributes": {
- "created_at": "2023-01-30T20:53:01.425Z",
+ "created_at": "2023-04-21T22:58:41.082Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -22385,7 +22510,7 @@
"published": false,
"published_at": null,
"revision_number": 1,
- "updated_at": "2023-01-30T20:53:01.425Z",
+ "updated_at": "2023-04-21T22:58:41.082Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -22399,40 +22524,40 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX366c2fd3d57045ecb199d0dbd10d79bd/libraries"
+ "related": "https://reactor.adobe.io/extensions/EX8ab7d2880e4845fb88bb4f8788e7099d/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX366c2fd3d57045ecb199d0dbd10d79bd/revisions"
+ "related": "https://reactor.adobe.io/extensions/EX8ab7d2880e4845fb88bb4f8788e7099d/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX366c2fd3d57045ecb199d0dbd10d79bd/notes"
+ "related": "https://reactor.adobe.io/extensions/EX8ab7d2880e4845fb88bb4f8788e7099d/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX366c2fd3d57045ecb199d0dbd10d79bd/property"
+ "related": "https://reactor.adobe.io/extensions/EX8ab7d2880e4845fb88bb4f8788e7099d/property"
},
"data": {
- "id": "PRdc16f4c5c35448ca802a351c59fce6f7",
+ "id": "PR4d2ca060d12646c89f5dac0c4af5ff82",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX366c2fd3d57045ecb199d0dbd10d79bd/origin"
+ "related": "https://reactor.adobe.io/extensions/EX8ab7d2880e4845fb88bb4f8788e7099d/origin"
},
"data": {
- "id": "EXa716a89a3bf340ae8d9049c6a18194b0",
+ "id": "EXcc16651451eb4738b4b452c3cacb92ef",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX366c2fd3d57045ecb199d0dbd10d79bd/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX8ab7d2880e4845fb88bb4f8788e7099d/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -22441,7 +22566,7 @@
},
"extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX366c2fd3d57045ecb199d0dbd10d79bd/extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX8ab7d2880e4845fb88bb4f8788e7099d/extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -22450,9 +22575,9 @@
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRdc16f4c5c35448ca802a351c59fce6f7",
- "origin": "https://reactor.adobe.io/extensions/EXa716a89a3bf340ae8d9049c6a18194b0",
- "self": "https://reactor.adobe.io/extensions/EX366c2fd3d57045ecb199d0dbd10d79bd",
+ "property": "https://reactor.adobe.io/properties/PR4d2ca060d12646c89f5dac0c4af5ff82",
+ "origin": "https://reactor.adobe.io/extensions/EXcc16651451eb4738b4b452c3cacb92ef",
+ "self": "https://reactor.adobe.io/extensions/EX8ab7d2880e4845fb88bb4f8788e7099d",
"extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab",
"latest_extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab"
},
@@ -22461,10 +22586,10 @@
}
},
{
- "id": "EXa716a89a3bf340ae8d9049c6a18194b0",
+ "id": "EXcc16651451eb4738b4b452c3cacb92ef",
"type": "extensions",
"attributes": {
- "created_at": "2023-01-30T20:53:01.418Z",
+ "created_at": "2023-04-21T22:58:41.072Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -22472,7 +22597,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:53:01.418Z",
+ "updated_at": "2023-04-21T22:58:41.072Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -22486,40 +22611,40 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXa716a89a3bf340ae8d9049c6a18194b0/libraries"
+ "related": "https://reactor.adobe.io/extensions/EXcc16651451eb4738b4b452c3cacb92ef/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXa716a89a3bf340ae8d9049c6a18194b0/revisions"
+ "related": "https://reactor.adobe.io/extensions/EXcc16651451eb4738b4b452c3cacb92ef/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXa716a89a3bf340ae8d9049c6a18194b0/notes"
+ "related": "https://reactor.adobe.io/extensions/EXcc16651451eb4738b4b452c3cacb92ef/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXa716a89a3bf340ae8d9049c6a18194b0/property"
+ "related": "https://reactor.adobe.io/extensions/EXcc16651451eb4738b4b452c3cacb92ef/property"
},
"data": {
- "id": "PRdc16f4c5c35448ca802a351c59fce6f7",
+ "id": "PR4d2ca060d12646c89f5dac0c4af5ff82",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXa716a89a3bf340ae8d9049c6a18194b0/origin"
+ "related": "https://reactor.adobe.io/extensions/EXcc16651451eb4738b4b452c3cacb92ef/origin"
},
"data": {
- "id": "EXa716a89a3bf340ae8d9049c6a18194b0",
+ "id": "EXcc16651451eb4738b4b452c3cacb92ef",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXa716a89a3bf340ae8d9049c6a18194b0/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/extensions/EXcc16651451eb4738b4b452c3cacb92ef/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -22528,7 +22653,7 @@
},
"extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXa716a89a3bf340ae8d9049c6a18194b0/extension_package"
+ "related": "https://reactor.adobe.io/extensions/EXcc16651451eb4738b4b452c3cacb92ef/extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -22537,9 +22662,9 @@
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRdc16f4c5c35448ca802a351c59fce6f7",
- "origin": "https://reactor.adobe.io/extensions/EXa716a89a3bf340ae8d9049c6a18194b0",
- "self": "https://reactor.adobe.io/extensions/EXa716a89a3bf340ae8d9049c6a18194b0",
+ "property": "https://reactor.adobe.io/properties/PR4d2ca060d12646c89f5dac0c4af5ff82",
+ "origin": "https://reactor.adobe.io/extensions/EXcc16651451eb4738b4b452c3cacb92ef",
+ "self": "https://reactor.adobe.io/extensions/EXcc16651451eb4738b4b452c3cacb92ef",
"extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab",
"latest_extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab"
},
@@ -22569,10 +22694,10 @@
"request": null,
"response": {
"data": {
- "id": "EX2d034a715c1f4b94aad4861d5bc20be5",
+ "id": "EX4c50f6dadffb44cc9650f3bb7b9ef1d7",
"type": "extensions",
"attributes": {
- "created_at": "2023-01-30T20:53:07.088Z",
+ "created_at": "2023-04-21T22:58:46.879Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -22580,7 +22705,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:53:07.088Z",
+ "updated_at": "2023-04-21T22:58:46.879Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -22594,40 +22719,40 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX2d034a715c1f4b94aad4861d5bc20be5/libraries"
+ "related": "https://reactor.adobe.io/extensions/EX4c50f6dadffb44cc9650f3bb7b9ef1d7/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX2d034a715c1f4b94aad4861d5bc20be5/revisions"
+ "related": "https://reactor.adobe.io/extensions/EX4c50f6dadffb44cc9650f3bb7b9ef1d7/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX2d034a715c1f4b94aad4861d5bc20be5/notes"
+ "related": "https://reactor.adobe.io/extensions/EX4c50f6dadffb44cc9650f3bb7b9ef1d7/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX2d034a715c1f4b94aad4861d5bc20be5/property"
+ "related": "https://reactor.adobe.io/extensions/EX4c50f6dadffb44cc9650f3bb7b9ef1d7/property"
},
"data": {
- "id": "PRcec1189b2422411688844d9fe8e9cd6b",
+ "id": "PR3ee6768327514f82bcae9818cabebea4",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX2d034a715c1f4b94aad4861d5bc20be5/origin"
+ "related": "https://reactor.adobe.io/extensions/EX4c50f6dadffb44cc9650f3bb7b9ef1d7/origin"
},
"data": {
- "id": "EX2d034a715c1f4b94aad4861d5bc20be5",
+ "id": "EX4c50f6dadffb44cc9650f3bb7b9ef1d7",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX2d034a715c1f4b94aad4861d5bc20be5/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX4c50f6dadffb44cc9650f3bb7b9ef1d7/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -22636,7 +22761,7 @@
},
"extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX2d034a715c1f4b94aad4861d5bc20be5/extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX4c50f6dadffb44cc9650f3bb7b9ef1d7/extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -22645,9 +22770,9 @@
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRcec1189b2422411688844d9fe8e9cd6b",
- "origin": "https://reactor.adobe.io/extensions/EX2d034a715c1f4b94aad4861d5bc20be5",
- "self": "https://reactor.adobe.io/extensions/EX2d034a715c1f4b94aad4861d5bc20be5",
+ "property": "https://reactor.adobe.io/properties/PR3ee6768327514f82bcae9818cabebea4",
+ "origin": "https://reactor.adobe.io/extensions/EX4c50f6dadffb44cc9650f3bb7b9ef1d7",
+ "self": "https://reactor.adobe.io/extensions/EX4c50f6dadffb44cc9650f3bb7b9ef1d7",
"extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab",
"latest_extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab"
},
@@ -25081,28 +25206,28 @@
},
"response": {
"data": {
- "id": "NT8560215759bd43a5892335b423ccef74",
+ "id": "NT9a8014da1ea84b94a195cc7a85cb287d",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:53:18.544Z",
+ "created_at": "2023-04-21T22:58:58.247Z",
"text": "this note on an extension intentionally left blank"
},
"relationships": {
"resource": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX9e95aad2c2034d9480c818d619f434dd"
+ "related": "https://reactor.adobe.io/extensions/EX55fdec55f45d4a2c98b6eb7bb734c57c"
},
"data": {
- "id": "EX9e95aad2c2034d9480c818d619f434dd",
+ "id": "EX55fdec55f45d4a2c98b6eb7bb734c57c",
"type": "extensions"
}
}
},
"links": {
- "resource": "https://reactor.adobe.io/extensions/EX9e95aad2c2034d9480c818d619f434dd",
- "self": "https://reactor.adobe.io/notes/NT8560215759bd43a5892335b423ccef74"
+ "resource": "https://reactor.adobe.io/extensions/EX55fdec55f45d4a2c98b6eb7bb734c57c",
+ "self": "https://reactor.adobe.io/notes/NT9a8014da1ea84b94a195cc7a85cb287d"
}
}
},
@@ -25118,28 +25243,28 @@
"response": {
"data": [
{
- "id": "NT92a9cb1827c24e15820799878cd7a279",
+ "id": "NTd71d64dbfb0b4890aa2a9769ba16f5fb",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:53:24.857Z",
+ "created_at": "2023-04-21T22:59:03.957Z",
"text": "this is a note on an extension"
},
"relationships": {
"resource": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXb6f970f562ca43aa8694031c6e071194"
+ "related": "https://reactor.adobe.io/extensions/EXbb077191e2c14cc68176826724cf0d63"
},
"data": {
- "id": "EXb6f970f562ca43aa8694031c6e071194",
+ "id": "EXbb077191e2c14cc68176826724cf0d63",
"type": "extensions"
}
}
},
"links": {
- "resource": "https://reactor.adobe.io/extensions/EXb6f970f562ca43aa8694031c6e071194",
- "self": "https://reactor.adobe.io/notes/NT92a9cb1827c24e15820799878cd7a279"
+ "resource": "https://reactor.adobe.io/extensions/EXbb077191e2c14cc68176826724cf0d63",
+ "self": "https://reactor.adobe.io/notes/NTd71d64dbfb0b4890aa2a9769ba16f5fb"
}
}
],
@@ -27585,10 +27710,10 @@
},
"response": {
"data": {
- "id": "HT1e8902fb4de54e26b28c42ac2d1d7d3f",
+ "id": "HTc97eebbf2cf14dd28ab818f04ec2cdda",
"type": "hosts",
"attributes": {
- "created_at": "2023-01-30T20:53:35.895Z",
+ "created_at": "2023-04-21T22:59:15.238Z",
"server": "//example.com",
"name": "Example SFTP Host",
"path": "assets",
@@ -27596,7 +27721,7 @@
"status": "pending",
"skip_symlinks": false,
"type_of": "sftp",
- "updated_at": "2023-01-30T20:53:35.895Z",
+ "updated_at": "2023-04-21T22:59:15.238Z",
"username": "John Doe",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
@@ -27606,17 +27731,17 @@
"relationships": {
"property": {
"links": {
- "related": "https://reactor.adobe.io/hosts/HT1e8902fb4de54e26b28c42ac2d1d7d3f/property"
+ "related": "https://reactor.adobe.io/hosts/HTc97eebbf2cf14dd28ab818f04ec2cdda/property"
},
"data": {
- "id": "PRbd9ead3eabe9446f99d5295973ec464d",
+ "id": "PR250ac2a653d346f78e85290e0dce8d54",
"type": "properties"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRbd9ead3eabe9446f99d5295973ec464d",
- "self": "https://reactor.adobe.io/hosts/HT1e8902fb4de54e26b28c42ac2d1d7d3f"
+ "property": "https://reactor.adobe.io/properties/PR250ac2a653d346f78e85290e0dce8d54",
+ "self": "https://reactor.adobe.io/hosts/HTc97eebbf2cf14dd28ab818f04ec2cdda"
}
}
},
@@ -27639,10 +27764,10 @@
},
"response": {
"data": {
- "id": "HTa60777dce7fe45deb31688ad6e7e716b",
+ "id": "HT05f34069c10c49309c99a1c491985947",
"type": "hosts",
"attributes": {
- "created_at": "2023-01-30T20:53:41.449Z",
+ "created_at": "2023-04-21T22:59:21.027Z",
"server": null,
"name": "Example Akamai Host",
"path": null,
@@ -27650,7 +27775,7 @@
"status": "succeeded",
"skip_symlinks": false,
"type_of": "akamai",
- "updated_at": "2023-01-30T20:53:41.449Z",
+ "updated_at": "2023-04-21T22:59:21.027Z",
"username": null,
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
@@ -27660,17 +27785,17 @@
"relationships": {
"property": {
"links": {
- "related": "https://reactor.adobe.io/hosts/HTa60777dce7fe45deb31688ad6e7e716b/property"
+ "related": "https://reactor.adobe.io/hosts/HT05f34069c10c49309c99a1c491985947/property"
},
"data": {
- "id": "PR47c50219e5c94b6889dd922bc6f2d54a",
+ "id": "PR8de0392bb4984b0b8c24ca838ef04dec",
"type": "properties"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR47c50219e5c94b6889dd922bc6f2d54a",
- "self": "https://reactor.adobe.io/hosts/HTa60777dce7fe45deb31688ad6e7e716b"
+ "property": "https://reactor.adobe.io/properties/PR8de0392bb4984b0b8c24ca838ef04dec",
+ "self": "https://reactor.adobe.io/hosts/HT05f34069c10c49309c99a1c491985947"
}
}
},
@@ -27685,10 +27810,10 @@
"request": null,
"response": {
"data": {
- "id": "HT6654a54b89e94891b3b375281fc2e79b",
+ "id": "HT66bf22a0d2224abc9d085eb90656962d",
"type": "hosts",
"attributes": {
- "created_at": "2023-01-30T20:53:46.911Z",
+ "created_at": "2023-04-21T22:59:26.411Z",
"server": null,
"name": "Example Akamai Host",
"path": null,
@@ -27696,7 +27821,7 @@
"status": "succeeded",
"skip_symlinks": false,
"type_of": "akamai",
- "updated_at": "2023-01-30T20:53:46.911Z",
+ "updated_at": "2023-04-21T22:59:26.411Z",
"username": null,
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
@@ -27706,17 +27831,17 @@
"relationships": {
"property": {
"links": {
- "related": "https://reactor.adobe.io/hosts/HT6654a54b89e94891b3b375281fc2e79b/property"
+ "related": "https://reactor.adobe.io/hosts/HT66bf22a0d2224abc9d085eb90656962d/property"
},
"data": {
- "id": "PRa39b9cdbfb8945c58e676ba2eecf8e31",
+ "id": "PR5757c400a10e4ab7a3bb7bbdaa4faaad",
"type": "properties"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRa39b9cdbfb8945c58e676ba2eecf8e31",
- "self": "https://reactor.adobe.io/hosts/HT6654a54b89e94891b3b375281fc2e79b"
+ "property": "https://reactor.adobe.io/properties/PR5757c400a10e4ab7a3bb7bbdaa4faaad",
+ "self": "https://reactor.adobe.io/hosts/HT66bf22a0d2224abc9d085eb90656962d"
}
}
},
@@ -27732,10 +27857,10 @@
"response": {
"data": [
{
- "id": "HT0d8204b54b0c4e28b6abfdcfba41a7f1",
+ "id": "HT9fbd30dc8f024fc1abf98b492ffcd2fe",
"type": "hosts",
"attributes": {
- "created_at": "2023-01-30T20:53:52.321Z",
+ "created_at": "2023-04-21T22:59:31.863Z",
"server": null,
"name": "Example Akamai Host",
"path": null,
@@ -27743,7 +27868,7 @@
"status": "succeeded",
"skip_symlinks": false,
"type_of": "akamai",
- "updated_at": "2023-01-30T20:53:52.321Z",
+ "updated_at": "2023-04-21T22:59:31.863Z",
"username": null,
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
@@ -27753,17 +27878,17 @@
"relationships": {
"property": {
"links": {
- "related": "https://reactor.adobe.io/hosts/HT0d8204b54b0c4e28b6abfdcfba41a7f1/property"
+ "related": "https://reactor.adobe.io/hosts/HT9fbd30dc8f024fc1abf98b492ffcd2fe/property"
},
"data": {
- "id": "PR679c171565be4fc6931949ea99dae235",
+ "id": "PR6d6cc55084ec495b90fa84157fc5f5e7",
"type": "properties"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR679c171565be4fc6931949ea99dae235",
- "self": "https://reactor.adobe.io/hosts/HT0d8204b54b0c4e28b6abfdcfba41a7f1"
+ "property": "https://reactor.adobe.io/properties/PR6d6cc55084ec495b90fa84157fc5f5e7",
+ "self": "https://reactor.adobe.io/hosts/HT9fbd30dc8f024fc1abf98b492ffcd2fe"
}
}
],
@@ -27790,16 +27915,16 @@
"attributes": {
"name": "My SFTP host"
},
- "id": "HTac96c73a16de4a3a9055ee413fdd39c1",
+ "id": "HTfafbfb876a0b444e9fe3fed86cefe5e3",
"type": "hosts"
}
},
"response": {
"data": {
- "id": "HTac96c73a16de4a3a9055ee413fdd39c1",
+ "id": "HTfafbfb876a0b444e9fe3fed86cefe5e3",
"type": "hosts",
"attributes": {
- "created_at": "2023-01-30T20:53:57.681Z",
+ "created_at": "2023-04-21T22:59:37.418Z",
"server": null,
"name": "My SFTP host",
"path": null,
@@ -27807,7 +27932,7 @@
"status": "succeeded",
"skip_symlinks": false,
"type_of": "akamai",
- "updated_at": "2023-01-30T20:53:57.720Z",
+ "updated_at": "2023-04-21T22:59:37.467Z",
"username": null,
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
@@ -27817,17 +27942,17 @@
"relationships": {
"property": {
"links": {
- "related": "https://reactor.adobe.io/hosts/HTac96c73a16de4a3a9055ee413fdd39c1/property"
+ "related": "https://reactor.adobe.io/hosts/HTfafbfb876a0b444e9fe3fed86cefe5e3/property"
},
"data": {
- "id": "PR2a4eec6b381a47e6bebea30fe1953e83",
+ "id": "PRe6b24968ff2c4c959065c117fd41534c",
"type": "properties"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR2a4eec6b381a47e6bebea30fe1953e83",
- "self": "https://reactor.adobe.io/hosts/HTac96c73a16de4a3a9055ee413fdd39c1"
+ "property": "https://reactor.adobe.io/properties/PRe6b24968ff2c4c959065c117fd41534c",
+ "self": "https://reactor.adobe.io/hosts/HTfafbfb876a0b444e9fe3fed86cefe5e3"
}
}
},
@@ -27852,10 +27977,10 @@
"request": null,
"response": {
"data": {
- "id": "HT20382c27d76f42d19acb7a29effca0f0",
+ "id": "HT5f853236b94042f5b3c404f1dec90aa9",
"type": "hosts",
"attributes": {
- "created_at": "2023-01-30T20:54:08.632Z",
+ "created_at": "2023-04-21T22:59:48.379Z",
"server": null,
"name": "Example Akamai Host",
"path": null,
@@ -27863,7 +27988,7 @@
"status": "succeeded",
"skip_symlinks": false,
"type_of": "akamai",
- "updated_at": "2023-01-30T20:54:08.632Z",
+ "updated_at": "2023-04-21T22:59:48.379Z",
"username": null,
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
@@ -27873,17 +27998,17 @@
"relationships": {
"property": {
"links": {
- "related": "https://reactor.adobe.io/hosts/HT20382c27d76f42d19acb7a29effca0f0/property"
+ "related": "https://reactor.adobe.io/hosts/HT5f853236b94042f5b3c404f1dec90aa9/property"
},
"data": {
- "id": "PR0571b5e433184bbd94dc31372dfd3118",
+ "id": "PR12743f47e244493cb5b6f6204ad4e73e",
"type": "properties"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR0571b5e433184bbd94dc31372dfd3118",
- "self": "https://reactor.adobe.io/hosts/HT20382c27d76f42d19acb7a29effca0f0"
+ "property": "https://reactor.adobe.io/properties/PR12743f47e244493cb5b6f6204ad4e73e",
+ "self": "https://reactor.adobe.io/hosts/HT5f853236b94042f5b3c404f1dec90aa9"
}
}
},
@@ -27898,12 +28023,12 @@
"request": null,
"response": {
"data": {
- "id": "HTf412b4b572d140b9a276a32caea40e51",
+ "id": "HT4f35fa20382348fdacb2aa12a4303293",
"type": "hosts"
},
"links": {
- "related": "https://reactor.adobe.io/environments/EN41dcd05520884e96aae273d5142b2225/host",
- "self": "https://reactor.adobe.io/environments/EN41dcd05520884e96aae273d5142b2225/relationships/host"
+ "related": "https://reactor.adobe.io/environments/EN0f0cc345afaf496293f7b442a8cc1056/host",
+ "self": "https://reactor.adobe.io/environments/EN0f0cc345afaf496293f7b442a8cc1056/relationships/host"
}
},
"response_code": 200,
@@ -27916,18 +28041,18 @@
"multipart": false,
"request": {
"data": {
- "id": "HT13de4f7c54894437996fc4380a72450f",
+ "id": "HT655a77f495274628b0e2e55899385c0a",
"type": "hosts"
}
},
"response": {
"data": {
- "id": "HT13de4f7c54894437996fc4380a72450f",
+ "id": "HT655a77f495274628b0e2e55899385c0a",
"type": "hosts"
},
"links": {
- "related": "https://reactor.adobe.io/environments/EN2305e6f9e28f4ae6b0a69a7354e3d1ec/host",
- "self": "https://reactor.adobe.io/environments/EN2305e6f9e28f4ae6b0a69a7354e3d1ec/relationships/host"
+ "related": "https://reactor.adobe.io/environments/ENbc12155013f3433da9a4e9ab119157c8/host",
+ "self": "https://reactor.adobe.io/environments/ENbc12155013f3433da9a4e9ab119157c8/relationships/host"
}
},
"response_code": 200,
@@ -27948,14 +28073,14 @@
},
"response": {
"data": {
- "id": "LB4ae9b04971f44c97a49c68aaba26cb28",
+ "id": "LB356dc37577ae422aaacac81fef5d3904",
"type": "libraries",
"attributes": {
- "created_at": "2023-01-30T20:54:25.204Z",
+ "created_at": "2023-04-21T23:00:05.340Z",
"name": "My Library",
"published_at": null,
"state": "development",
- "updated_at": "2023-01-30T20:54:25.204Z",
+ "updated_at": "2023-04-21T23:00:05.340Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -27965,36 +28090,36 @@
"relationships": {
"builds": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB4ae9b04971f44c97a49c68aaba26cb28/builds"
+ "related": "https://reactor.adobe.io/libraries/LB356dc37577ae422aaacac81fef5d3904/builds"
}
},
"environment": {
"links": {
- "self": "https://reactor.adobe.io/libraries/LB4ae9b04971f44c97a49c68aaba26cb28/relationships/environment"
+ "self": "https://reactor.adobe.io/libraries/LB356dc37577ae422aaacac81fef5d3904/relationships/environment"
},
"data": null
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB4ae9b04971f44c97a49c68aaba26cb28/data_elements",
- "self": "https://reactor.adobe.io/libraries/LB4ae9b04971f44c97a49c68aaba26cb28/relationships/data_elements"
+ "related": "https://reactor.adobe.io/libraries/LB356dc37577ae422aaacac81fef5d3904/data_elements",
+ "self": "https://reactor.adobe.io/libraries/LB356dc37577ae422aaacac81fef5d3904/relationships/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB4ae9b04971f44c97a49c68aaba26cb28/extensions",
- "self": "https://reactor.adobe.io/libraries/LB4ae9b04971f44c97a49c68aaba26cb28/relationships/extensions"
+ "related": "https://reactor.adobe.io/libraries/LB356dc37577ae422aaacac81fef5d3904/extensions",
+ "self": "https://reactor.adobe.io/libraries/LB356dc37577ae422aaacac81fef5d3904/relationships/extensions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB4ae9b04971f44c97a49c68aaba26cb28/notes"
+ "related": "https://reactor.adobe.io/libraries/LB356dc37577ae422aaacac81fef5d3904/notes"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB4ae9b04971f44c97a49c68aaba26cb28/rules",
- "self": "https://reactor.adobe.io/libraries/LB4ae9b04971f44c97a49c68aaba26cb28/relationships/rules"
+ "related": "https://reactor.adobe.io/libraries/LB356dc37577ae422aaacac81fef5d3904/rules",
+ "self": "https://reactor.adobe.io/libraries/LB356dc37577ae422aaacac81fef5d3904/relationships/rules"
}
},
"upstream_library": {
@@ -28002,23 +28127,23 @@
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB4ae9b04971f44c97a49c68aaba26cb28/property"
+ "related": "https://reactor.adobe.io/libraries/LB356dc37577ae422aaacac81fef5d3904/property"
},
"data": {
- "id": "PRbdbb4a2771644cc28d487a6533fa1f05",
+ "id": "PReb3477a64c724f8796725d3d7f73d22f",
"type": "properties"
}
},
"last_build": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB4ae9b04971f44c97a49c68aaba26cb28/last_build"
+ "related": "https://reactor.adobe.io/libraries/LB356dc37577ae422aaacac81fef5d3904/last_build"
},
"data": null
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRbdbb4a2771644cc28d487a6533fa1f05",
- "self": "https://reactor.adobe.io/libraries/LB4ae9b04971f44c97a49c68aaba26cb28"
+ "property": "https://reactor.adobe.io/properties/PReb3477a64c724f8796725d3d7f73d22f",
+ "self": "https://reactor.adobe.io/libraries/LB356dc37577ae422aaacac81fef5d3904"
},
"meta": {
"build_status": null,
@@ -28044,14 +28169,14 @@
},
"response": {
"data": {
- "id": "LBaf864e5318494ca6888383e1a46e4942",
+ "id": "LB6c271f7454d64120a219eb60af57b269",
"type": "libraries",
"attributes": {
- "created_at": "2023-01-30T20:54:30.583Z",
+ "created_at": "2023-04-21T23:00:10.688Z",
"name": "My Library",
"published_at": null,
"state": "development",
- "updated_at": "2023-01-30T20:54:30.583Z",
+ "updated_at": "2023-04-21T23:00:10.688Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -28061,36 +28186,36 @@
"relationships": {
"builds": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBaf864e5318494ca6888383e1a46e4942/builds"
+ "related": "https://reactor.adobe.io/libraries/LB6c271f7454d64120a219eb60af57b269/builds"
}
},
"environment": {
"links": {
- "self": "https://reactor.adobe.io/libraries/LBaf864e5318494ca6888383e1a46e4942/relationships/environment"
+ "self": "https://reactor.adobe.io/libraries/LB6c271f7454d64120a219eb60af57b269/relationships/environment"
},
"data": null
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBaf864e5318494ca6888383e1a46e4942/data_elements",
- "self": "https://reactor.adobe.io/libraries/LBaf864e5318494ca6888383e1a46e4942/relationships/data_elements"
+ "related": "https://reactor.adobe.io/libraries/LB6c271f7454d64120a219eb60af57b269/data_elements",
+ "self": "https://reactor.adobe.io/libraries/LB6c271f7454d64120a219eb60af57b269/relationships/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBaf864e5318494ca6888383e1a46e4942/extensions",
- "self": "https://reactor.adobe.io/libraries/LBaf864e5318494ca6888383e1a46e4942/relationships/extensions"
+ "related": "https://reactor.adobe.io/libraries/LB6c271f7454d64120a219eb60af57b269/extensions",
+ "self": "https://reactor.adobe.io/libraries/LB6c271f7454d64120a219eb60af57b269/relationships/extensions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBaf864e5318494ca6888383e1a46e4942/notes"
+ "related": "https://reactor.adobe.io/libraries/LB6c271f7454d64120a219eb60af57b269/notes"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBaf864e5318494ca6888383e1a46e4942/rules",
- "self": "https://reactor.adobe.io/libraries/LBaf864e5318494ca6888383e1a46e4942/relationships/rules"
+ "related": "https://reactor.adobe.io/libraries/LB6c271f7454d64120a219eb60af57b269/rules",
+ "self": "https://reactor.adobe.io/libraries/LB6c271f7454d64120a219eb60af57b269/relationships/rules"
}
},
"upstream_library": {
@@ -28098,23 +28223,23 @@
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBaf864e5318494ca6888383e1a46e4942/property"
+ "related": "https://reactor.adobe.io/libraries/LB6c271f7454d64120a219eb60af57b269/property"
},
"data": {
- "id": "PRb8cfab1046f54afd9e1fe9cad719da00",
+ "id": "PR43415b7a914d463f891d6a2cdda0b80f",
"type": "properties"
}
},
"last_build": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBaf864e5318494ca6888383e1a46e4942/last_build"
+ "related": "https://reactor.adobe.io/libraries/LB6c271f7454d64120a219eb60af57b269/last_build"
},
"data": null
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRb8cfab1046f54afd9e1fe9cad719da00",
- "self": "https://reactor.adobe.io/libraries/LBaf864e5318494ca6888383e1a46e4942"
+ "property": "https://reactor.adobe.io/properties/PR43415b7a914d463f891d6a2cdda0b80f",
+ "self": "https://reactor.adobe.io/libraries/LB6c271f7454d64120a219eb60af57b269"
},
"meta": {
"build_status": null,
@@ -28133,14 +28258,14 @@
"request": null,
"response": {
"data": {
- "id": "LB09b9c5735abd4e74bd2dfba25d3d96c3",
+ "id": "LBdb29f2254e004c96a8ed8c145438837b",
"type": "libraries",
"attributes": {
- "created_at": "2023-01-30T20:54:35.996Z",
+ "created_at": "2023-04-21T23:00:16.094Z",
"name": "My Library",
"published_at": null,
"state": "development",
- "updated_at": "2023-01-30T20:54:35.996Z",
+ "updated_at": "2023-04-21T23:00:16.094Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -28150,36 +28275,36 @@
"relationships": {
"builds": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB09b9c5735abd4e74bd2dfba25d3d96c3/builds"
+ "related": "https://reactor.adobe.io/libraries/LBdb29f2254e004c96a8ed8c145438837b/builds"
}
},
"environment": {
"links": {
- "self": "https://reactor.adobe.io/libraries/LB09b9c5735abd4e74bd2dfba25d3d96c3/relationships/environment"
+ "self": "https://reactor.adobe.io/libraries/LBdb29f2254e004c96a8ed8c145438837b/relationships/environment"
},
"data": null
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB09b9c5735abd4e74bd2dfba25d3d96c3/data_elements",
- "self": "https://reactor.adobe.io/libraries/LB09b9c5735abd4e74bd2dfba25d3d96c3/relationships/data_elements"
+ "related": "https://reactor.adobe.io/libraries/LBdb29f2254e004c96a8ed8c145438837b/data_elements",
+ "self": "https://reactor.adobe.io/libraries/LBdb29f2254e004c96a8ed8c145438837b/relationships/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB09b9c5735abd4e74bd2dfba25d3d96c3/extensions",
- "self": "https://reactor.adobe.io/libraries/LB09b9c5735abd4e74bd2dfba25d3d96c3/relationships/extensions"
+ "related": "https://reactor.adobe.io/libraries/LBdb29f2254e004c96a8ed8c145438837b/extensions",
+ "self": "https://reactor.adobe.io/libraries/LBdb29f2254e004c96a8ed8c145438837b/relationships/extensions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB09b9c5735abd4e74bd2dfba25d3d96c3/notes"
+ "related": "https://reactor.adobe.io/libraries/LBdb29f2254e004c96a8ed8c145438837b/notes"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB09b9c5735abd4e74bd2dfba25d3d96c3/rules",
- "self": "https://reactor.adobe.io/libraries/LB09b9c5735abd4e74bd2dfba25d3d96c3/relationships/rules"
+ "related": "https://reactor.adobe.io/libraries/LBdb29f2254e004c96a8ed8c145438837b/rules",
+ "self": "https://reactor.adobe.io/libraries/LBdb29f2254e004c96a8ed8c145438837b/relationships/rules"
}
},
"upstream_library": {
@@ -28187,23 +28312,23 @@
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB09b9c5735abd4e74bd2dfba25d3d96c3/property"
+ "related": "https://reactor.adobe.io/libraries/LBdb29f2254e004c96a8ed8c145438837b/property"
},
"data": {
- "id": "PR493f4e11e02d4046a2c0c740f4098240",
+ "id": "PRc4fb2ede94b04ac3a980cba4c030a25b",
"type": "properties"
}
},
"last_build": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB09b9c5735abd4e74bd2dfba25d3d96c3/last_build"
+ "related": "https://reactor.adobe.io/libraries/LBdb29f2254e004c96a8ed8c145438837b/last_build"
},
"data": null
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR493f4e11e02d4046a2c0c740f4098240",
- "self": "https://reactor.adobe.io/libraries/LB09b9c5735abd4e74bd2dfba25d3d96c3"
+ "property": "https://reactor.adobe.io/properties/PRc4fb2ede94b04ac3a980cba4c030a25b",
+ "self": "https://reactor.adobe.io/libraries/LBdb29f2254e004c96a8ed8c145438837b"
},
"meta": {
"build_status": null,
@@ -28223,14 +28348,14 @@
"response": {
"data": [
{
- "id": "LB6eb2e8be57d5492498862f7c6fdb0eae",
+ "id": "LBcec3cf680a4744ddba5953d4bc0e4554",
"type": "libraries",
"attributes": {
- "created_at": "2023-01-30T20:54:41.416Z",
+ "created_at": "2023-04-21T23:00:22.255Z",
"name": "My Library",
"published_at": null,
"state": "development",
- "updated_at": "2023-01-30T20:54:41.416Z",
+ "updated_at": "2023-04-21T23:00:22.255Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -28240,36 +28365,36 @@
"relationships": {
"builds": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB6eb2e8be57d5492498862f7c6fdb0eae/builds"
+ "related": "https://reactor.adobe.io/libraries/LBcec3cf680a4744ddba5953d4bc0e4554/builds"
}
},
"environment": {
"links": {
- "self": "https://reactor.adobe.io/libraries/LB6eb2e8be57d5492498862f7c6fdb0eae/relationships/environment"
+ "self": "https://reactor.adobe.io/libraries/LBcec3cf680a4744ddba5953d4bc0e4554/relationships/environment"
},
"data": null
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB6eb2e8be57d5492498862f7c6fdb0eae/data_elements",
- "self": "https://reactor.adobe.io/libraries/LB6eb2e8be57d5492498862f7c6fdb0eae/relationships/data_elements"
+ "related": "https://reactor.adobe.io/libraries/LBcec3cf680a4744ddba5953d4bc0e4554/data_elements",
+ "self": "https://reactor.adobe.io/libraries/LBcec3cf680a4744ddba5953d4bc0e4554/relationships/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB6eb2e8be57d5492498862f7c6fdb0eae/extensions",
- "self": "https://reactor.adobe.io/libraries/LB6eb2e8be57d5492498862f7c6fdb0eae/relationships/extensions"
+ "related": "https://reactor.adobe.io/libraries/LBcec3cf680a4744ddba5953d4bc0e4554/extensions",
+ "self": "https://reactor.adobe.io/libraries/LBcec3cf680a4744ddba5953d4bc0e4554/relationships/extensions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB6eb2e8be57d5492498862f7c6fdb0eae/notes"
+ "related": "https://reactor.adobe.io/libraries/LBcec3cf680a4744ddba5953d4bc0e4554/notes"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB6eb2e8be57d5492498862f7c6fdb0eae/rules",
- "self": "https://reactor.adobe.io/libraries/LB6eb2e8be57d5492498862f7c6fdb0eae/relationships/rules"
+ "related": "https://reactor.adobe.io/libraries/LBcec3cf680a4744ddba5953d4bc0e4554/rules",
+ "self": "https://reactor.adobe.io/libraries/LBcec3cf680a4744ddba5953d4bc0e4554/relationships/rules"
}
},
"upstream_library": {
@@ -28277,23 +28402,23 @@
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB6eb2e8be57d5492498862f7c6fdb0eae/property"
+ "related": "https://reactor.adobe.io/libraries/LBcec3cf680a4744ddba5953d4bc0e4554/property"
},
"data": {
- "id": "PReb8ab3eead064ffcaef384628b74d016",
+ "id": "PR206a74ec51514faebf8669eccbb580bb",
"type": "properties"
}
},
"last_build": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB6eb2e8be57d5492498862f7c6fdb0eae/last_build"
+ "related": "https://reactor.adobe.io/libraries/LBcec3cf680a4744ddba5953d4bc0e4554/last_build"
},
"data": null
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PReb8ab3eead064ffcaef384628b74d016",
- "self": "https://reactor.adobe.io/libraries/LB6eb2e8be57d5492498862f7c6fdb0eae"
+ "property": "https://reactor.adobe.io/properties/PR206a74ec51514faebf8669eccbb580bb",
+ "self": "https://reactor.adobe.io/libraries/LBcec3cf680a4744ddba5953d4bc0e4554"
},
"meta": {
"build_status": null,
@@ -28324,20 +28449,20 @@
"attributes": {
"name": "Your Library"
},
- "id": "LB78d4a109b64f49b388cb436f1c020b87",
+ "id": "LBc1857fe187494eb6a57267edaf50d18c",
"type": "libraries"
}
},
"response": {
"data": {
- "id": "LB78d4a109b64f49b388cb436f1c020b87",
+ "id": "LBc1857fe187494eb6a57267edaf50d18c",
"type": "libraries",
"attributes": {
- "created_at": "2023-01-30T20:54:46.841Z",
+ "created_at": "2023-04-21T23:00:27.725Z",
"name": "Your Library",
"published_at": null,
"state": "development",
- "updated_at": "2023-01-30T20:54:46.895Z",
+ "updated_at": "2023-04-21T23:00:27.792Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -28347,36 +28472,36 @@
"relationships": {
"builds": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB78d4a109b64f49b388cb436f1c020b87/builds"
+ "related": "https://reactor.adobe.io/libraries/LBc1857fe187494eb6a57267edaf50d18c/builds"
}
},
"environment": {
"links": {
- "self": "https://reactor.adobe.io/libraries/LB78d4a109b64f49b388cb436f1c020b87/relationships/environment"
+ "self": "https://reactor.adobe.io/libraries/LBc1857fe187494eb6a57267edaf50d18c/relationships/environment"
},
"data": null
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB78d4a109b64f49b388cb436f1c020b87/data_elements",
- "self": "https://reactor.adobe.io/libraries/LB78d4a109b64f49b388cb436f1c020b87/relationships/data_elements"
+ "related": "https://reactor.adobe.io/libraries/LBc1857fe187494eb6a57267edaf50d18c/data_elements",
+ "self": "https://reactor.adobe.io/libraries/LBc1857fe187494eb6a57267edaf50d18c/relationships/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB78d4a109b64f49b388cb436f1c020b87/extensions",
- "self": "https://reactor.adobe.io/libraries/LB78d4a109b64f49b388cb436f1c020b87/relationships/extensions"
+ "related": "https://reactor.adobe.io/libraries/LBc1857fe187494eb6a57267edaf50d18c/extensions",
+ "self": "https://reactor.adobe.io/libraries/LBc1857fe187494eb6a57267edaf50d18c/relationships/extensions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB78d4a109b64f49b388cb436f1c020b87/notes"
+ "related": "https://reactor.adobe.io/libraries/LBc1857fe187494eb6a57267edaf50d18c/notes"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB78d4a109b64f49b388cb436f1c020b87/rules",
- "self": "https://reactor.adobe.io/libraries/LB78d4a109b64f49b388cb436f1c020b87/relationships/rules"
+ "related": "https://reactor.adobe.io/libraries/LBc1857fe187494eb6a57267edaf50d18c/rules",
+ "self": "https://reactor.adobe.io/libraries/LBc1857fe187494eb6a57267edaf50d18c/relationships/rules"
}
},
"upstream_library": {
@@ -28384,23 +28509,23 @@
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB78d4a109b64f49b388cb436f1c020b87/property"
+ "related": "https://reactor.adobe.io/libraries/LBc1857fe187494eb6a57267edaf50d18c/property"
},
"data": {
- "id": "PRaf4d7f2614f94e11ac76997d96d1e2a9",
+ "id": "PR86d960ecb29f476d85505de6e09221ad",
"type": "properties"
}
},
"last_build": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB78d4a109b64f49b388cb436f1c020b87/last_build"
+ "related": "https://reactor.adobe.io/libraries/LBc1857fe187494eb6a57267edaf50d18c/last_build"
},
"data": null
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRaf4d7f2614f94e11ac76997d96d1e2a9",
- "self": "https://reactor.adobe.io/libraries/LB78d4a109b64f49b388cb436f1c020b87"
+ "property": "https://reactor.adobe.io/properties/PR86d960ecb29f476d85505de6e09221ad",
+ "self": "https://reactor.adobe.io/libraries/LBc1857fe187494eb6a57267edaf50d18c"
},
"meta": {
"build_status": null,
@@ -28421,12 +28546,12 @@
"data": [
{
"type": "data_elements",
- "id": "DE785807c7c8ed4d35b22a67c589d714ad"
+ "id": "DE53c42c92db8b4497a3521fd29860727a"
}
],
"links": {
- "related": "https://reactor.adobe.io/libraries/LB65da5610a3454aea8ab6e29e6ddcbadf/data_elements",
- "self": "https://reactor.adobe.io/libraries/LB65da5610a3454aea8ab6e29e6ddcbadf/relationships/data_elements"
+ "related": "https://reactor.adobe.io/libraries/LBcd1e5d55fca54c0b9e8df155622691ae/data_elements",
+ "self": "https://reactor.adobe.io/libraries/LBcd1e5d55fca54c0b9e8df155622691ae/relationships/data_elements"
}
},
"response_code": 200,
@@ -28442,12 +28567,12 @@
"data": [
{
"type": "extensions",
- "id": "EXe1b9f2e7c7ca4468a55f0062bc1ba90f"
+ "id": "EX602e68bb12c540628833ddd53ab5d4dc"
}
],
"links": {
- "related": "https://reactor.adobe.io/libraries/LBab688112f7a140059a2b02529d16070d/extensions",
- "self": "https://reactor.adobe.io/libraries/LBab688112f7a140059a2b02529d16070d/relationships/extensions"
+ "related": "https://reactor.adobe.io/libraries/LB92ea49fb08044c4dae689a185f90deda/extensions",
+ "self": "https://reactor.adobe.io/libraries/LB92ea49fb08044c4dae689a185f90deda/relationships/extensions"
}
},
"response_code": 200,
@@ -28463,12 +28588,12 @@
"data": [
{
"type": "rules",
- "id": "RL6137e24f10594c98aae07c194b729bf3"
+ "id": "RL95990a4f0f7c45ef9bcb3b7bb60fc46b"
}
],
"links": {
- "related": "https://reactor.adobe.io/libraries/LBc1ce8f00c4804a8294c60ab3004c7b9e/rules",
- "self": "https://reactor.adobe.io/libraries/LBc1ce8f00c4804a8294c60ab3004c7b9e/relationships/rules"
+ "related": "https://reactor.adobe.io/libraries/LB3f27b425620e4075b56208e1e79d4b09/rules",
+ "self": "https://reactor.adobe.io/libraries/LB3f27b425620e4075b56208e1e79d4b09/relationships/rules"
}
},
"response_code": 200,
@@ -28483,18 +28608,18 @@
"response": {
"data": [
{
- "id": "DE092d77533ed14b208f8e2794aedd4497",
+ "id": "DE77ae511b5bf84e6d9379391ebfb7ff4c",
"type": "data_elements",
"attributes": {
- "created_at": "2023-01-30T20:55:10.167Z",
+ "created_at": "2023-04-21T23:00:50.989Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
- "name": "My Data Element 2023-01-30 13:55:10 -0700",
+ "name": "My Data Element 2023-04-21 17:00:50 -0600",
"published": false,
"published_at": null,
"revision_number": 1,
- "updated_at": "2023-01-30T20:55:10.167Z",
+ "updated_at": "2023-04-21T23:00:50.989Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -28510,49 +28635,49 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE092d77533ed14b208f8e2794aedd4497/libraries"
+ "related": "https://reactor.adobe.io/data_elements/DE77ae511b5bf84e6d9379391ebfb7ff4c/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE092d77533ed14b208f8e2794aedd4497/revisions"
+ "related": "https://reactor.adobe.io/data_elements/DE77ae511b5bf84e6d9379391ebfb7ff4c/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE092d77533ed14b208f8e2794aedd4497/notes"
+ "related": "https://reactor.adobe.io/data_elements/DE77ae511b5bf84e6d9379391ebfb7ff4c/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE092d77533ed14b208f8e2794aedd4497/property"
+ "related": "https://reactor.adobe.io/data_elements/DE77ae511b5bf84e6d9379391ebfb7ff4c/property"
},
"data": {
- "id": "PRd99818c4c9e34a85b06e27a69575cd31",
+ "id": "PRe1973f84a422450abdace143717e4958",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE092d77533ed14b208f8e2794aedd4497/origin"
+ "related": "https://reactor.adobe.io/data_elements/DE77ae511b5bf84e6d9379391ebfb7ff4c/origin"
},
"data": {
- "id": "DE1b4267220ba94d7096220bf9ebe6d4c5",
+ "id": "DE5e79acd5e25e4509b6cd2f00d9d903a3",
"type": "data_elements"
}
},
"extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE092d77533ed14b208f8e2794aedd4497/extension"
+ "related": "https://reactor.adobe.io/data_elements/DE77ae511b5bf84e6d9379391ebfb7ff4c/extension"
},
"data": {
- "id": "EX1a7891a4424748f3b5d5a05eed44bdbb",
+ "id": "EXf0aaf5519d374c49938c1040a79f6a60",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE092d77533ed14b208f8e2794aedd4497/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/data_elements/DE77ae511b5bf84e6d9379391ebfb7ff4c/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -28561,19 +28686,19 @@
},
"updated_with_extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE092d77533ed14b208f8e2794aedd4497/updated_with_extension"
+ "related": "https://reactor.adobe.io/data_elements/DE77ae511b5bf84e6d9379391ebfb7ff4c/updated_with_extension"
},
"data": {
- "id": "EX0a8a72af31e1438b917dae7bbe22ba91",
+ "id": "EXe0f99040079c48e5838f350160e81190",
"type": "extensions"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRd99818c4c9e34a85b06e27a69575cd31",
- "origin": "https://reactor.adobe.io/data_elements/DE1b4267220ba94d7096220bf9ebe6d4c5",
- "self": "https://reactor.adobe.io/data_elements/DE092d77533ed14b208f8e2794aedd4497",
- "extension": "https://reactor.adobe.io/extensions/EX1a7891a4424748f3b5d5a05eed44bdbb"
+ "property": "https://reactor.adobe.io/properties/PRe1973f84a422450abdace143717e4958",
+ "origin": "https://reactor.adobe.io/data_elements/DE5e79acd5e25e4509b6cd2f00d9d903a3",
+ "self": "https://reactor.adobe.io/data_elements/DE77ae511b5bf84e6d9379391ebfb7ff4c",
+ "extension": "https://reactor.adobe.io/extensions/EXf0aaf5519d374c49938c1040a79f6a60"
},
"meta": {
"latest_revision_number": 1
@@ -28602,10 +28727,10 @@
"response": {
"data": [
{
- "id": "EX083faa305ed8466bb49430c358067df7",
+ "id": "EX80e0b37a3ddd4f1ebc8d489b323afa21",
"type": "extensions",
"attributes": {
- "created_at": "2023-01-30T20:55:15.969Z",
+ "created_at": "2023-04-21T23:00:56.694Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -28613,7 +28738,7 @@
"published": false,
"published_at": null,
"revision_number": 1,
- "updated_at": "2023-01-30T20:55:15.969Z",
+ "updated_at": "2023-04-21T23:00:56.694Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -28627,40 +28752,40 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX083faa305ed8466bb49430c358067df7/libraries"
+ "related": "https://reactor.adobe.io/extensions/EX80e0b37a3ddd4f1ebc8d489b323afa21/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX083faa305ed8466bb49430c358067df7/revisions"
+ "related": "https://reactor.adobe.io/extensions/EX80e0b37a3ddd4f1ebc8d489b323afa21/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX083faa305ed8466bb49430c358067df7/notes"
+ "related": "https://reactor.adobe.io/extensions/EX80e0b37a3ddd4f1ebc8d489b323afa21/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX083faa305ed8466bb49430c358067df7/property"
+ "related": "https://reactor.adobe.io/extensions/EX80e0b37a3ddd4f1ebc8d489b323afa21/property"
},
"data": {
- "id": "PR199064340e304e70a625dfccadfe5920",
+ "id": "PRd9680fe750e34ee48087a4cde32761ca",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX083faa305ed8466bb49430c358067df7/origin"
+ "related": "https://reactor.adobe.io/extensions/EX80e0b37a3ddd4f1ebc8d489b323afa21/origin"
},
"data": {
- "id": "EX21082f2c164f41e7b519b1166e055c1a",
+ "id": "EX1c9480efd1e841ebb7120ea3d74bfae6",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX083faa305ed8466bb49430c358067df7/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX80e0b37a3ddd4f1ebc8d489b323afa21/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -28669,7 +28794,7 @@
},
"extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX083faa305ed8466bb49430c358067df7/extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX80e0b37a3ddd4f1ebc8d489b323afa21/extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -28678,9 +28803,9 @@
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR199064340e304e70a625dfccadfe5920",
- "origin": "https://reactor.adobe.io/extensions/EX21082f2c164f41e7b519b1166e055c1a",
- "self": "https://reactor.adobe.io/extensions/EX083faa305ed8466bb49430c358067df7",
+ "property": "https://reactor.adobe.io/properties/PRd9680fe750e34ee48087a4cde32761ca",
+ "origin": "https://reactor.adobe.io/extensions/EX1c9480efd1e841ebb7120ea3d74bfae6",
+ "self": "https://reactor.adobe.io/extensions/EX80e0b37a3ddd4f1ebc8d489b323afa21",
"extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab",
"latest_extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab"
},
@@ -28711,10 +28836,10 @@
"response": {
"data": [
{
- "id": "RL687e29b7c1354a2396b4b1c35611ed48",
+ "id": "RL554de690f8224e99a03df8acf1420eed",
"type": "rules",
"attributes": {
- "created_at": "2023-01-30T20:55:21.697Z",
+ "created_at": "2023-04-21T23:01:02.422Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -28722,7 +28847,7 @@
"published": false,
"published_at": null,
"revision_number": 1,
- "updated_at": "2023-01-30T20:55:21.697Z",
+ "updated_at": "2023-04-21T23:01:02.422Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -28732,48 +28857,48 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL687e29b7c1354a2396b4b1c35611ed48/libraries"
+ "related": "https://reactor.adobe.io/rules/RL554de690f8224e99a03df8acf1420eed/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL687e29b7c1354a2396b4b1c35611ed48/revisions"
+ "related": "https://reactor.adobe.io/rules/RL554de690f8224e99a03df8acf1420eed/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL687e29b7c1354a2396b4b1c35611ed48/notes"
+ "related": "https://reactor.adobe.io/rules/RL554de690f8224e99a03df8acf1420eed/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL687e29b7c1354a2396b4b1c35611ed48/property"
+ "related": "https://reactor.adobe.io/rules/RL554de690f8224e99a03df8acf1420eed/property"
},
"data": {
- "id": "PR0d4469194b694ad895f38651955fed36",
+ "id": "PR3346339888294729806405fccd5d3c4a",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL687e29b7c1354a2396b4b1c35611ed48/origin"
+ "related": "https://reactor.adobe.io/rules/RL554de690f8224e99a03df8acf1420eed/origin"
},
"data": {
- "id": "RL87ee9379825f422eb1a60f2ac9de174c",
+ "id": "RL1208671fbfdc4440a67bfcb7e5512cda",
"type": "rules"
}
},
"rule_components": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL687e29b7c1354a2396b4b1c35611ed48/rule_components"
+ "related": "https://reactor.adobe.io/rules/RL554de690f8224e99a03df8acf1420eed/rule_components"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR0d4469194b694ad895f38651955fed36",
- "origin": "https://reactor.adobe.io/rules/RL87ee9379825f422eb1a60f2ac9de174c",
- "self": "https://reactor.adobe.io/rules/RL687e29b7c1354a2396b4b1c35611ed48",
- "rule_components": "https://reactor.adobe.io/rules/RL687e29b7c1354a2396b4b1c35611ed48/rule_components"
+ "property": "https://reactor.adobe.io/properties/PR3346339888294729806405fccd5d3c4a",
+ "origin": "https://reactor.adobe.io/rules/RL1208671fbfdc4440a67bfcb7e5512cda",
+ "self": "https://reactor.adobe.io/rules/RL554de690f8224e99a03df8acf1420eed",
+ "rule_components": "https://reactor.adobe.io/rules/RL554de690f8224e99a03df8acf1420eed/rule_components"
},
"meta": {
"latest_revision_number": 1
@@ -28801,7 +28926,7 @@
"request": {
"data": [
{
- "id": "DE7e9e58e03b854f3ca9fe76617b6e30cf",
+ "id": "DEfc5a1d4dd03e4d0f85cf516703e058c5",
"type": "data_elements"
}
]
@@ -28810,12 +28935,12 @@
"data": [
{
"type": "data_elements",
- "id": "DE7e9e58e03b854f3ca9fe76617b6e30cf"
+ "id": "DEfc5a1d4dd03e4d0f85cf516703e058c5"
}
],
"links": {
- "related": "https://reactor.adobe.io/libraries/LBbce7b4abf9274576b13e4d97b7ed9a77/data_elements",
- "self": "https://reactor.adobe.io/libraries/LBbce7b4abf9274576b13e4d97b7ed9a77/relationships/data_elements"
+ "related": "https://reactor.adobe.io/libraries/LB7712b3804b93455d9ecf2680841b87a9/data_elements",
+ "self": "https://reactor.adobe.io/libraries/LB7712b3804b93455d9ecf2680841b87a9/relationships/data_elements"
}
},
"response_code": 200,
@@ -28829,7 +28954,7 @@
"request": {
"data": [
{
- "id": "RLff4355676db245b2bc8adbc47bab58bb",
+ "id": "RL224560b1ec0c4433b7c8e3f3ad3e66e8",
"type": "rules"
}
]
@@ -28838,12 +28963,12 @@
"data": [
{
"type": "rules",
- "id": "RLff4355676db245b2bc8adbc47bab58bb"
+ "id": "RL224560b1ec0c4433b7c8e3f3ad3e66e8"
}
],
"links": {
- "related": "https://reactor.adobe.io/libraries/LB9277aee2dcfa48d58cad5f6f6db94836/rules",
- "self": "https://reactor.adobe.io/libraries/LB9277aee2dcfa48d58cad5f6f6db94836/relationships/rules"
+ "related": "https://reactor.adobe.io/libraries/LB8a5141d40a9f48448b7a626f02fa05f6/rules",
+ "self": "https://reactor.adobe.io/libraries/LB8a5141d40a9f48448b7a626f02fa05f6/relationships/rules"
}
},
"response_code": 200,
@@ -28857,7 +28982,7 @@
"request": {
"data": [
{
- "id": "EXa58c3c873bab4703906758fab2ecf788",
+ "id": "EX2c6415b721e9425e94aed1ad019d2fc1",
"type": "extensions"
}
]
@@ -28866,12 +28991,12 @@
"data": [
{
"type": "extensions",
- "id": "EXa58c3c873bab4703906758fab2ecf788"
+ "id": "EX2c6415b721e9425e94aed1ad019d2fc1"
}
],
"links": {
- "related": "https://reactor.adobe.io/libraries/LB06815f091cd244f8b9280139123a87cf/extensions",
- "self": "https://reactor.adobe.io/libraries/LB06815f091cd244f8b9280139123a87cf/relationships/extensions"
+ "related": "https://reactor.adobe.io/libraries/LBb90caf2669004395b38c44de087cd97b/extensions",
+ "self": "https://reactor.adobe.io/libraries/LBb90caf2669004395b38c44de087cd97b/relationships/extensions"
}
},
"response_code": 200,
@@ -28885,7 +29010,7 @@
"request": {
"data": [
{
- "id": "DE820fa7e112bd4226a51e2138e86c8d61",
+ "id": "DEc7410c2f3c2949f6a11cc61c0df8004c",
"type": "data_elements"
}
]
@@ -28894,12 +29019,12 @@
"data": [
{
"type": "data_elements",
- "id": "DE820fa7e112bd4226a51e2138e86c8d61"
+ "id": "DEc7410c2f3c2949f6a11cc61c0df8004c"
}
],
"links": {
- "related": "https://reactor.adobe.io/libraries/LBbaef82db9c83474ba7a1b998497d327d/data_elements",
- "self": "https://reactor.adobe.io/libraries/LBbaef82db9c83474ba7a1b998497d327d/relationships/data_elements"
+ "related": "https://reactor.adobe.io/libraries/LBd165b09f81b24a45b6019e5531a5ace8/data_elements",
+ "self": "https://reactor.adobe.io/libraries/LBd165b09f81b24a45b6019e5531a5ace8/relationships/data_elements"
}
},
"response_code": 200,
@@ -28913,7 +29038,7 @@
"request": {
"data": [
{
- "id": "EXf5bd74f1d249429a88994618d774f026",
+ "id": "EX9ffcc4cff9704c06b17262c5f242867c",
"type": "extensions"
}
]
@@ -28922,12 +29047,12 @@
"data": [
{
"type": "extensions",
- "id": "EXf5bd74f1d249429a88994618d774f026"
+ "id": "EX9ffcc4cff9704c06b17262c5f242867c"
}
],
"links": {
- "related": "https://reactor.adobe.io/libraries/LBfc08ba5806184c80a990ff33bfdf55cc/extensions",
- "self": "https://reactor.adobe.io/libraries/LBfc08ba5806184c80a990ff33bfdf55cc/relationships/extensions"
+ "related": "https://reactor.adobe.io/libraries/LB4ddcac8c204c45cd9fd3d6202b2c4d89/extensions",
+ "self": "https://reactor.adobe.io/libraries/LB4ddcac8c204c45cd9fd3d6202b2c4d89/relationships/extensions"
}
},
"response_code": 200,
@@ -28941,7 +29066,7 @@
"request": {
"data": [
{
- "id": "RL9527efedd2b8410ab06c5ea1d223881e",
+ "id": "RL0dcb6028f3094ba49b54020243a410d6",
"type": "rules"
}
]
@@ -28950,12 +29075,12 @@
"data": [
{
"type": "rules",
- "id": "RL9527efedd2b8410ab06c5ea1d223881e"
+ "id": "RL0dcb6028f3094ba49b54020243a410d6"
}
],
"links": {
- "related": "https://reactor.adobe.io/libraries/LBf79da46151d54fd0a48bbadc0531e962/rules",
- "self": "https://reactor.adobe.io/libraries/LBf79da46151d54fd0a48bbadc0531e962/relationships/rules"
+ "related": "https://reactor.adobe.io/libraries/LB4de9f01f6545401fabc502fa629d73f9/rules",
+ "self": "https://reactor.adobe.io/libraries/LB4de9f01f6545401fabc502fa629d73f9/relationships/rules"
}
},
"response_code": 200,
@@ -28969,7 +29094,7 @@
"request": {
"data": [
{
- "id": "DE61df57c817fe4ba3af8dde0638201aca",
+ "id": "DE31bfaed29ce74a2f804f1c4daa9a58ea",
"type": "data_elements"
}
]
@@ -28979,8 +29104,8 @@
],
"links": {
- "related": "https://reactor.adobe.io/libraries/LBd6bf85c9f8e545c1b39d4f16d0fcb40d/data_elements",
- "self": "https://reactor.adobe.io/libraries/LBd6bf85c9f8e545c1b39d4f16d0fcb40d/relationships/data_elements"
+ "related": "https://reactor.adobe.io/libraries/LB24592fae44744b03bcfd4d2b81c539da/data_elements",
+ "self": "https://reactor.adobe.io/libraries/LB24592fae44744b03bcfd4d2b81c539da/relationships/data_elements"
}
},
"response_code": 200,
@@ -28994,7 +29119,7 @@
"request": {
"data": [
{
- "id": "EX062ca8139bbf49048e9a8d22ce857c78",
+ "id": "EX14242fd6c81f4d03887c4d97daf3955c",
"type": "extensions"
}
]
@@ -29004,8 +29129,8 @@
],
"links": {
- "related": "https://reactor.adobe.io/libraries/LBd00931f9a0f147bb8c2da566278f4a9b/extensions",
- "self": "https://reactor.adobe.io/libraries/LBd00931f9a0f147bb8c2da566278f4a9b/relationships/extensions"
+ "related": "https://reactor.adobe.io/libraries/LB4d14bc25293f459db045f67ffacebe89/extensions",
+ "self": "https://reactor.adobe.io/libraries/LB4d14bc25293f459db045f67ffacebe89/relationships/extensions"
}
},
"response_code": 200,
@@ -29019,7 +29144,7 @@
"request": {
"data": [
{
- "id": "RLd47ec929ad5c4df186a9ff07eefa4173",
+ "id": "RL89f34037b1a54b6da9dce465afc4b583",
"type": "rules"
}
]
@@ -29029,8 +29154,8 @@
],
"links": {
- "related": "https://reactor.adobe.io/libraries/LB0cd3078205c043a8a2bc65e18cf45ce8/rules",
- "self": "https://reactor.adobe.io/libraries/LB0cd3078205c043a8a2bc65e18cf45ce8/relationships/rules"
+ "related": "https://reactor.adobe.io/libraries/LB88db61a236554698aec6b00b2013d844/rules",
+ "self": "https://reactor.adobe.io/libraries/LB88db61a236554698aec6b00b2013d844/relationships/rules"
}
},
"response_code": 200,
@@ -29053,7 +29178,7 @@
"multipart": false,
"request": {
"data": {
- "id": "LBadca46db05104945940581e566e11e3e",
+ "id": "LB2dbe44cd22dc433ebb4023f07533ed6d",
"type": "libraries",
"meta": {
"action": "submit"
@@ -29062,14 +29187,14 @@
},
"response": {
"data": {
- "id": "LBadca46db05104945940581e566e11e3e",
+ "id": "LB2dbe44cd22dc433ebb4023f07533ed6d",
"type": "libraries",
"attributes": {
- "created_at": "2023-01-30T20:56:24.643Z",
+ "created_at": "2023-04-21T23:02:05.861Z",
"name": "My Library",
"published_at": null,
"state": "submitted",
- "updated_at": "2023-01-30T20:56:30.047Z",
+ "updated_at": "2023-04-21T23:02:11.217Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -29079,36 +29204,36 @@
"relationships": {
"builds": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBadca46db05104945940581e566e11e3e/builds"
+ "related": "https://reactor.adobe.io/libraries/LB2dbe44cd22dc433ebb4023f07533ed6d/builds"
}
},
"environment": {
"links": {
- "self": "https://reactor.adobe.io/libraries/LBadca46db05104945940581e566e11e3e/relationships/environment"
+ "self": "https://reactor.adobe.io/libraries/LB2dbe44cd22dc433ebb4023f07533ed6d/relationships/environment"
},
"data": null
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBadca46db05104945940581e566e11e3e/data_elements",
- "self": "https://reactor.adobe.io/libraries/LBadca46db05104945940581e566e11e3e/relationships/data_elements"
+ "related": "https://reactor.adobe.io/libraries/LB2dbe44cd22dc433ebb4023f07533ed6d/data_elements",
+ "self": "https://reactor.adobe.io/libraries/LB2dbe44cd22dc433ebb4023f07533ed6d/relationships/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBadca46db05104945940581e566e11e3e/extensions",
- "self": "https://reactor.adobe.io/libraries/LBadca46db05104945940581e566e11e3e/relationships/extensions"
+ "related": "https://reactor.adobe.io/libraries/LB2dbe44cd22dc433ebb4023f07533ed6d/extensions",
+ "self": "https://reactor.adobe.io/libraries/LB2dbe44cd22dc433ebb4023f07533ed6d/relationships/extensions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBadca46db05104945940581e566e11e3e/notes"
+ "related": "https://reactor.adobe.io/libraries/LB2dbe44cd22dc433ebb4023f07533ed6d/notes"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBadca46db05104945940581e566e11e3e/rules",
- "self": "https://reactor.adobe.io/libraries/LBadca46db05104945940581e566e11e3e/relationships/rules"
+ "related": "https://reactor.adobe.io/libraries/LB2dbe44cd22dc433ebb4023f07533ed6d/rules",
+ "self": "https://reactor.adobe.io/libraries/LB2dbe44cd22dc433ebb4023f07533ed6d/relationships/rules"
}
},
"upstream_library": {
@@ -29116,26 +29241,26 @@
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBadca46db05104945940581e566e11e3e/property"
+ "related": "https://reactor.adobe.io/libraries/LB2dbe44cd22dc433ebb4023f07533ed6d/property"
},
"data": {
- "id": "PR5b6ff168533846daaa9a6e256d023da2",
+ "id": "PRd4c8f729db1d4e3abd74dd1014b75aad",
"type": "properties"
}
},
"last_build": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBadca46db05104945940581e566e11e3e/last_build"
+ "related": "https://reactor.adobe.io/libraries/LB2dbe44cd22dc433ebb4023f07533ed6d/last_build"
},
"data": {
- "id": "BL88d30a8ce58e44b1812ad3ae9df16825",
+ "id": "BL22ad91810f964061a3724b0c74042a5b",
"type": "builds"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR5b6ff168533846daaa9a6e256d023da2",
- "self": "https://reactor.adobe.io/libraries/LBadca46db05104945940581e566e11e3e"
+ "property": "https://reactor.adobe.io/properties/PRd4c8f729db1d4e3abd74dd1014b75aad",
+ "self": "https://reactor.adobe.io/libraries/LB2dbe44cd22dc433ebb4023f07533ed6d"
},
"meta": {
"build_status": null
@@ -29153,14 +29278,14 @@
"request": null,
"response": {
"data": {
- "id": "LBfcb0149d9ae548a0becfccb08dec8e76",
+ "id": "LB756966edc21c494d9167d99756d4d383",
"type": "libraries",
"attributes": {
- "created_at": "2023-01-30T20:56:35.535Z",
+ "created_at": "2023-04-21T23:02:16.754Z",
"name": "My Library",
- "published_at": "2023-01-30T20:56:47.608Z",
+ "published_at": "2023-04-21T23:02:28.971Z",
"state": "published",
- "updated_at": "2023-01-30T20:56:47.612Z",
+ "updated_at": "2023-04-21T23:02:28.980Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -29170,36 +29295,36 @@
"relationships": {
"builds": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBfcb0149d9ae548a0becfccb08dec8e76/builds"
+ "related": "https://reactor.adobe.io/libraries/LB756966edc21c494d9167d99756d4d383/builds"
}
},
"environment": {
"links": {
- "self": "https://reactor.adobe.io/libraries/LBfcb0149d9ae548a0becfccb08dec8e76/relationships/environment"
+ "self": "https://reactor.adobe.io/libraries/LB756966edc21c494d9167d99756d4d383/relationships/environment"
},
"data": null
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBfcb0149d9ae548a0becfccb08dec8e76/data_elements",
- "self": "https://reactor.adobe.io/libraries/LBfcb0149d9ae548a0becfccb08dec8e76/relationships/data_elements"
+ "related": "https://reactor.adobe.io/libraries/LB756966edc21c494d9167d99756d4d383/data_elements",
+ "self": "https://reactor.adobe.io/libraries/LB756966edc21c494d9167d99756d4d383/relationships/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBfcb0149d9ae548a0becfccb08dec8e76/extensions",
- "self": "https://reactor.adobe.io/libraries/LBfcb0149d9ae548a0becfccb08dec8e76/relationships/extensions"
+ "related": "https://reactor.adobe.io/libraries/LB756966edc21c494d9167d99756d4d383/extensions",
+ "self": "https://reactor.adobe.io/libraries/LB756966edc21c494d9167d99756d4d383/relationships/extensions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBfcb0149d9ae548a0becfccb08dec8e76/notes"
+ "related": "https://reactor.adobe.io/libraries/LB756966edc21c494d9167d99756d4d383/notes"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBfcb0149d9ae548a0becfccb08dec8e76/rules",
- "self": "https://reactor.adobe.io/libraries/LBfcb0149d9ae548a0becfccb08dec8e76/relationships/rules"
+ "related": "https://reactor.adobe.io/libraries/LB756966edc21c494d9167d99756d4d383/rules",
+ "self": "https://reactor.adobe.io/libraries/LB756966edc21c494d9167d99756d4d383/relationships/rules"
}
},
"upstream_library": {
@@ -29207,26 +29332,26 @@
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBfcb0149d9ae548a0becfccb08dec8e76/property"
+ "related": "https://reactor.adobe.io/libraries/LB756966edc21c494d9167d99756d4d383/property"
},
"data": {
- "id": "PRf8f630dd77c04c80b1017d4446aa47c8",
+ "id": "PR018fdc5b916549b495e14837de2ae43e",
"type": "properties"
}
},
"last_build": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBfcb0149d9ae548a0becfccb08dec8e76/last_build"
+ "related": "https://reactor.adobe.io/libraries/LB756966edc21c494d9167d99756d4d383/last_build"
},
"data": {
- "id": "BLd1005c13d5db4aa797baf05f29a9b29b",
+ "id": "BLa9426411c8cf46779183b01bed24c78c",
"type": "builds"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRf8f630dd77c04c80b1017d4446aa47c8",
- "self": "https://reactor.adobe.io/libraries/LBfcb0149d9ae548a0becfccb08dec8e76"
+ "property": "https://reactor.adobe.io/properties/PR018fdc5b916549b495e14837de2ae43e",
+ "self": "https://reactor.adobe.io/libraries/LB756966edc21c494d9167d99756d4d383"
},
"meta": {
"build_status": null,
@@ -29244,18 +29369,18 @@
"multipart": false,
"request": {
"data": {
- "id": "EN692e9333c88042249170455fce7acf51",
+ "id": "EN663e79f39f8f4518aac8f6c7cbe6014e",
"type": "environments"
}
},
"response": {
"data": {
- "id": "EN692e9333c88042249170455fce7acf51",
+ "id": "EN663e79f39f8f4518aac8f6c7cbe6014e",
"type": "environments"
},
"links": {
- "related": "https://reactor.adobe.io/libraries/LBd4869d9f75324669a6414f4cd2072941/environment",
- "self": "https://reactor.adobe.io/libraries/LBd4869d9f75324669a6414f4cd2072941/relationships/environment"
+ "related": "https://reactor.adobe.io/libraries/LBa92b04c2ae9b43dfa7b540d07337b1e8/environment",
+ "self": "https://reactor.adobe.io/libraries/LBa92b04c2ae9b43dfa7b540d07337b1e8/relationships/environment"
}
},
"response_code": 200,
@@ -29269,12 +29394,12 @@
"request": null,
"response": {
"data": {
- "id": "EN9f439b4e2a284297ab77a285cedee82b",
+ "id": "EN235b353961e5444e9c024206893ab26e",
"type": "environments"
},
"links": {
- "related": "https://reactor.adobe.io/libraries/LBa7331cc74d8e4dd6a48d3dc78f73eabc/environment",
- "self": "https://reactor.adobe.io/libraries/LBa7331cc74d8e4dd6a48d3dc78f73eabc/relationships/environment"
+ "related": "https://reactor.adobe.io/libraries/LB3f8b67b51b3347c8a9c9e92f90d0e460/environment",
+ "self": "https://reactor.adobe.io/libraries/LB3f8b67b51b3347c8a9c9e92f90d0e460/relationships/environment"
}
},
"response_code": 200,
@@ -29300,14 +29425,14 @@
"request": null,
"response": {
"data": {
- "id": "LB2ddee288ccaf462aa52ad6983f83fc4e",
+ "id": "LBd2d833585125430c96d59d1912f6af8d",
"type": "libraries",
"attributes": {
- "created_at": "2023-01-30T20:57:14.137Z",
+ "created_at": "2023-04-21T23:02:56.033Z",
"name": "My Library",
"published_at": null,
"state": "submitted",
- "updated_at": "2023-01-30T20:57:19.468Z",
+ "updated_at": "2023-04-21T23:03:01.406Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -29317,36 +29442,36 @@
"relationships": {
"builds": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB2ddee288ccaf462aa52ad6983f83fc4e/builds"
+ "related": "https://reactor.adobe.io/libraries/LBd2d833585125430c96d59d1912f6af8d/builds"
}
},
"environment": {
"links": {
- "self": "https://reactor.adobe.io/libraries/LB2ddee288ccaf462aa52ad6983f83fc4e/relationships/environment"
+ "self": "https://reactor.adobe.io/libraries/LBd2d833585125430c96d59d1912f6af8d/relationships/environment"
},
"data": null
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB2ddee288ccaf462aa52ad6983f83fc4e/data_elements",
- "self": "https://reactor.adobe.io/libraries/LB2ddee288ccaf462aa52ad6983f83fc4e/relationships/data_elements"
+ "related": "https://reactor.adobe.io/libraries/LBd2d833585125430c96d59d1912f6af8d/data_elements",
+ "self": "https://reactor.adobe.io/libraries/LBd2d833585125430c96d59d1912f6af8d/relationships/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB2ddee288ccaf462aa52ad6983f83fc4e/extensions",
- "self": "https://reactor.adobe.io/libraries/LB2ddee288ccaf462aa52ad6983f83fc4e/relationships/extensions"
+ "related": "https://reactor.adobe.io/libraries/LBd2d833585125430c96d59d1912f6af8d/extensions",
+ "self": "https://reactor.adobe.io/libraries/LBd2d833585125430c96d59d1912f6af8d/relationships/extensions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB2ddee288ccaf462aa52ad6983f83fc4e/notes"
+ "related": "https://reactor.adobe.io/libraries/LBd2d833585125430c96d59d1912f6af8d/notes"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB2ddee288ccaf462aa52ad6983f83fc4e/rules",
- "self": "https://reactor.adobe.io/libraries/LB2ddee288ccaf462aa52ad6983f83fc4e/relationships/rules"
+ "related": "https://reactor.adobe.io/libraries/LBd2d833585125430c96d59d1912f6af8d/rules",
+ "self": "https://reactor.adobe.io/libraries/LBd2d833585125430c96d59d1912f6af8d/relationships/rules"
}
},
"upstream_library": {
@@ -29354,26 +29479,26 @@
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB2ddee288ccaf462aa52ad6983f83fc4e/property"
+ "related": "https://reactor.adobe.io/libraries/LBd2d833585125430c96d59d1912f6af8d/property"
},
"data": {
- "id": "PRd450759ee5af425fb80df7b8a458b45c",
+ "id": "PRc517d865871e4e07b7e76c6c33832135",
"type": "properties"
}
},
"last_build": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB2ddee288ccaf462aa52ad6983f83fc4e/last_build"
+ "related": "https://reactor.adobe.io/libraries/LBd2d833585125430c96d59d1912f6af8d/last_build"
},
"data": {
- "id": "BL893b29a0e42d420bab21e4cb2bbef4be",
+ "id": "BL9b342fbe4a334abb85253b8067797bf1",
"type": "builds"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRd450759ee5af425fb80df7b8a458b45c",
- "self": "https://reactor.adobe.io/libraries/LB2ddee288ccaf462aa52ad6983f83fc4e"
+ "property": "https://reactor.adobe.io/properties/PRc517d865871e4e07b7e76c6c33832135",
+ "self": "https://reactor.adobe.io/libraries/LBd2d833585125430c96d59d1912f6af8d"
},
"meta": {
"build_status": null
@@ -29391,14 +29516,14 @@
"request": null,
"response": {
"data": {
- "id": "LB63f687ae67a94d82889f7d1b83a72356",
+ "id": "LB149c78df0c474c039d94b6b2e5d81c96",
"type": "libraries",
"attributes": {
- "created_at": "2023-01-30T20:57:25.037Z",
+ "created_at": "2023-04-21T23:03:07.065Z",
"name": "My Library",
"published_at": null,
"state": "development",
- "updated_at": "2023-01-30T20:57:25.089Z",
+ "updated_at": "2023-04-21T23:03:07.134Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -29408,40 +29533,40 @@
"relationships": {
"builds": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB63f687ae67a94d82889f7d1b83a72356/builds"
+ "related": "https://reactor.adobe.io/libraries/LB149c78df0c474c039d94b6b2e5d81c96/builds"
}
},
"environment": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB63f687ae67a94d82889f7d1b83a72356/environment",
- "self": "https://reactor.adobe.io/libraries/LB63f687ae67a94d82889f7d1b83a72356/relationships/environment"
+ "related": "https://reactor.adobe.io/libraries/LB149c78df0c474c039d94b6b2e5d81c96/environment",
+ "self": "https://reactor.adobe.io/libraries/LB149c78df0c474c039d94b6b2e5d81c96/relationships/environment"
},
"data": {
- "id": "EN027f3284d94348f2807c29c1001ad261",
+ "id": "EN3d24533d2a1f420f8169d2f059926481",
"type": "environments"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB63f687ae67a94d82889f7d1b83a72356/data_elements",
- "self": "https://reactor.adobe.io/libraries/LB63f687ae67a94d82889f7d1b83a72356/relationships/data_elements"
+ "related": "https://reactor.adobe.io/libraries/LB149c78df0c474c039d94b6b2e5d81c96/data_elements",
+ "self": "https://reactor.adobe.io/libraries/LB149c78df0c474c039d94b6b2e5d81c96/relationships/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB63f687ae67a94d82889f7d1b83a72356/extensions",
- "self": "https://reactor.adobe.io/libraries/LB63f687ae67a94d82889f7d1b83a72356/relationships/extensions"
+ "related": "https://reactor.adobe.io/libraries/LB149c78df0c474c039d94b6b2e5d81c96/extensions",
+ "self": "https://reactor.adobe.io/libraries/LB149c78df0c474c039d94b6b2e5d81c96/relationships/extensions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB63f687ae67a94d82889f7d1b83a72356/notes"
+ "related": "https://reactor.adobe.io/libraries/LB149c78df0c474c039d94b6b2e5d81c96/notes"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB63f687ae67a94d82889f7d1b83a72356/rules",
- "self": "https://reactor.adobe.io/libraries/LB63f687ae67a94d82889f7d1b83a72356/relationships/rules"
+ "related": "https://reactor.adobe.io/libraries/LB149c78df0c474c039d94b6b2e5d81c96/rules",
+ "self": "https://reactor.adobe.io/libraries/LB149c78df0c474c039d94b6b2e5d81c96/relationships/rules"
}
},
"upstream_library": {
@@ -29449,26 +29574,26 @@
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB63f687ae67a94d82889f7d1b83a72356/property"
+ "related": "https://reactor.adobe.io/libraries/LB149c78df0c474c039d94b6b2e5d81c96/property"
},
"data": {
- "id": "PR1d22c2c775724a758d2b902c62ae968d",
+ "id": "PRbf596aeca5694606a2229ae6ddf673f0",
"type": "properties"
}
},
"last_build": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB63f687ae67a94d82889f7d1b83a72356/last_build"
+ "related": "https://reactor.adobe.io/libraries/LB149c78df0c474c039d94b6b2e5d81c96/last_build"
},
"data": {
- "id": "BL22940ae23e95464ea73c2391413c8477",
+ "id": "BL3dc7c1678dee4096a35ece378b04c874",
"type": "builds"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR1d22c2c775724a758d2b902c62ae968d",
- "self": "https://reactor.adobe.io/libraries/LB63f687ae67a94d82889f7d1b83a72356"
+ "property": "https://reactor.adobe.io/properties/PRbf596aeca5694606a2229ae6ddf673f0",
+ "self": "https://reactor.adobe.io/libraries/LB149c78df0c474c039d94b6b2e5d81c96"
},
"meta": {
"build_status": "pending",
@@ -29487,14 +29612,14 @@
"request": null,
"response": {
"data": {
- "id": "LB52efd2b17a0a4d4f90be243adeda7311",
+ "id": "LBf5ff225005254cad862bfceb5ec0d9c4",
"type": "libraries",
"attributes": {
- "created_at": "2023-01-30T20:57:30.784Z",
+ "created_at": "2023-04-21T23:03:12.948Z",
"name": "My Library",
"published_at": null,
"state": "development",
- "updated_at": "2023-01-30T20:57:30.975Z",
+ "updated_at": "2023-04-21T23:03:13.137Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -29504,40 +29629,40 @@
"relationships": {
"builds": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB52efd2b17a0a4d4f90be243adeda7311/builds"
+ "related": "https://reactor.adobe.io/libraries/LBf5ff225005254cad862bfceb5ec0d9c4/builds"
}
},
"environment": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB52efd2b17a0a4d4f90be243adeda7311/environment",
- "self": "https://reactor.adobe.io/libraries/LB52efd2b17a0a4d4f90be243adeda7311/relationships/environment"
+ "related": "https://reactor.adobe.io/libraries/LBf5ff225005254cad862bfceb5ec0d9c4/environment",
+ "self": "https://reactor.adobe.io/libraries/LBf5ff225005254cad862bfceb5ec0d9c4/relationships/environment"
},
"data": {
- "id": "ENeafb1b9dd7b8473680e563c59ff979a2",
+ "id": "ENe608ceb02e774284b559b988326ccb1c",
"type": "environments"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB52efd2b17a0a4d4f90be243adeda7311/data_elements",
- "self": "https://reactor.adobe.io/libraries/LB52efd2b17a0a4d4f90be243adeda7311/relationships/data_elements"
+ "related": "https://reactor.adobe.io/libraries/LBf5ff225005254cad862bfceb5ec0d9c4/data_elements",
+ "self": "https://reactor.adobe.io/libraries/LBf5ff225005254cad862bfceb5ec0d9c4/relationships/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB52efd2b17a0a4d4f90be243adeda7311/extensions",
- "self": "https://reactor.adobe.io/libraries/LB52efd2b17a0a4d4f90be243adeda7311/relationships/extensions"
+ "related": "https://reactor.adobe.io/libraries/LBf5ff225005254cad862bfceb5ec0d9c4/extensions",
+ "self": "https://reactor.adobe.io/libraries/LBf5ff225005254cad862bfceb5ec0d9c4/relationships/extensions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB52efd2b17a0a4d4f90be243adeda7311/notes"
+ "related": "https://reactor.adobe.io/libraries/LBf5ff225005254cad862bfceb5ec0d9c4/notes"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB52efd2b17a0a4d4f90be243adeda7311/rules",
- "self": "https://reactor.adobe.io/libraries/LB52efd2b17a0a4d4f90be243adeda7311/relationships/rules"
+ "related": "https://reactor.adobe.io/libraries/LBf5ff225005254cad862bfceb5ec0d9c4/rules",
+ "self": "https://reactor.adobe.io/libraries/LBf5ff225005254cad862bfceb5ec0d9c4/relationships/rules"
}
},
"upstream_library": {
@@ -29545,23 +29670,23 @@
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB52efd2b17a0a4d4f90be243adeda7311/property"
+ "related": "https://reactor.adobe.io/libraries/LBf5ff225005254cad862bfceb5ec0d9c4/property"
},
"data": {
- "id": "PRd446e54e696a421e9d59afe4b4ad5211",
+ "id": "PR262dd331ca9f4ef7b5953c88dc535b9c",
"type": "properties"
}
},
"last_build": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB52efd2b17a0a4d4f90be243adeda7311/last_build"
+ "related": "https://reactor.adobe.io/libraries/LBf5ff225005254cad862bfceb5ec0d9c4/last_build"
},
"data": null
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRd446e54e696a421e9d59afe4b4ad5211",
- "self": "https://reactor.adobe.io/libraries/LB52efd2b17a0a4d4f90be243adeda7311"
+ "property": "https://reactor.adobe.io/properties/PR262dd331ca9f4ef7b5953c88dc535b9c",
+ "self": "https://reactor.adobe.io/libraries/LBf5ff225005254cad862bfceb5ec0d9c4"
},
"meta": {
"build_status": null,
@@ -29581,14 +29706,14 @@
"response": {
"data": [
{
- "id": "LB3c7393f10a2142d88e9c70a72a2bf347",
+ "id": "LB18a15bd8b94540cf81e1a6ea14c41b0d",
"type": "libraries",
"attributes": {
- "created_at": "2023-01-30T20:57:36.454Z",
+ "created_at": "2023-04-21T23:03:18.632Z",
"name": "My Library",
"published_at": null,
"state": "development",
- "updated_at": "2023-01-30T20:57:36.938Z",
+ "updated_at": "2023-04-21T23:03:19.239Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -29598,36 +29723,36 @@
"relationships": {
"builds": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB3c7393f10a2142d88e9c70a72a2bf347/builds"
+ "related": "https://reactor.adobe.io/libraries/LB18a15bd8b94540cf81e1a6ea14c41b0d/builds"
}
},
"environment": {
"links": {
- "self": "https://reactor.adobe.io/libraries/LB3c7393f10a2142d88e9c70a72a2bf347/relationships/environment"
+ "self": "https://reactor.adobe.io/libraries/LB18a15bd8b94540cf81e1a6ea14c41b0d/relationships/environment"
},
"data": null
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB3c7393f10a2142d88e9c70a72a2bf347/data_elements",
- "self": "https://reactor.adobe.io/libraries/LB3c7393f10a2142d88e9c70a72a2bf347/relationships/data_elements"
+ "related": "https://reactor.adobe.io/libraries/LB18a15bd8b94540cf81e1a6ea14c41b0d/data_elements",
+ "self": "https://reactor.adobe.io/libraries/LB18a15bd8b94540cf81e1a6ea14c41b0d/relationships/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB3c7393f10a2142d88e9c70a72a2bf347/extensions",
- "self": "https://reactor.adobe.io/libraries/LB3c7393f10a2142d88e9c70a72a2bf347/relationships/extensions"
+ "related": "https://reactor.adobe.io/libraries/LB18a15bd8b94540cf81e1a6ea14c41b0d/extensions",
+ "self": "https://reactor.adobe.io/libraries/LB18a15bd8b94540cf81e1a6ea14c41b0d/relationships/extensions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB3c7393f10a2142d88e9c70a72a2bf347/notes"
+ "related": "https://reactor.adobe.io/libraries/LB18a15bd8b94540cf81e1a6ea14c41b0d/notes"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB3c7393f10a2142d88e9c70a72a2bf347/rules",
- "self": "https://reactor.adobe.io/libraries/LB3c7393f10a2142d88e9c70a72a2bf347/relationships/rules"
+ "related": "https://reactor.adobe.io/libraries/LB18a15bd8b94540cf81e1a6ea14c41b0d/rules",
+ "self": "https://reactor.adobe.io/libraries/LB18a15bd8b94540cf81e1a6ea14c41b0d/relationships/rules"
}
},
"upstream_library": {
@@ -29635,23 +29760,23 @@
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB3c7393f10a2142d88e9c70a72a2bf347/property"
+ "related": "https://reactor.adobe.io/libraries/LB18a15bd8b94540cf81e1a6ea14c41b0d/property"
},
"data": {
- "id": "PR42e68feb174f4a3fa126a087d9faffc5",
+ "id": "PRefe156d634ef4b1aaf0a61c9ddb431c9",
"type": "properties"
}
},
"last_build": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB3c7393f10a2142d88e9c70a72a2bf347/last_build"
+ "related": "https://reactor.adobe.io/libraries/LB18a15bd8b94540cf81e1a6ea14c41b0d/last_build"
},
"data": null
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR42e68feb174f4a3fa126a087d9faffc5",
- "self": "https://reactor.adobe.io/libraries/LB3c7393f10a2142d88e9c70a72a2bf347"
+ "property": "https://reactor.adobe.io/properties/PRefe156d634ef4b1aaf0a61c9ddb431c9",
+ "self": "https://reactor.adobe.io/libraries/LB18a15bd8b94540cf81e1a6ea14c41b0d"
},
"meta": {
"build_status": null,
@@ -29681,14 +29806,14 @@
"response": {
"data": [
{
- "id": "LB39708627115f4b8eaea11b610b8677ad",
+ "id": "LB8f061fbe5f3240588d1dd0f6206ed3a2",
"type": "libraries",
"attributes": {
- "created_at": "2023-01-30T20:57:42.523Z",
+ "created_at": "2023-04-21T23:03:24.882Z",
"name": "My Library",
"published_at": null,
"state": "development",
- "updated_at": "2023-01-30T20:57:42.543Z",
+ "updated_at": "2023-04-21T23:03:24.897Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -29698,36 +29823,36 @@
"relationships": {
"builds": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB39708627115f4b8eaea11b610b8677ad/builds"
+ "related": "https://reactor.adobe.io/libraries/LB8f061fbe5f3240588d1dd0f6206ed3a2/builds"
}
},
"environment": {
"links": {
- "self": "https://reactor.adobe.io/libraries/LB39708627115f4b8eaea11b610b8677ad/relationships/environment"
+ "self": "https://reactor.adobe.io/libraries/LB8f061fbe5f3240588d1dd0f6206ed3a2/relationships/environment"
},
"data": null
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB39708627115f4b8eaea11b610b8677ad/data_elements",
- "self": "https://reactor.adobe.io/libraries/LB39708627115f4b8eaea11b610b8677ad/relationships/data_elements"
+ "related": "https://reactor.adobe.io/libraries/LB8f061fbe5f3240588d1dd0f6206ed3a2/data_elements",
+ "self": "https://reactor.adobe.io/libraries/LB8f061fbe5f3240588d1dd0f6206ed3a2/relationships/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB39708627115f4b8eaea11b610b8677ad/extensions",
- "self": "https://reactor.adobe.io/libraries/LB39708627115f4b8eaea11b610b8677ad/relationships/extensions"
+ "related": "https://reactor.adobe.io/libraries/LB8f061fbe5f3240588d1dd0f6206ed3a2/extensions",
+ "self": "https://reactor.adobe.io/libraries/LB8f061fbe5f3240588d1dd0f6206ed3a2/relationships/extensions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB39708627115f4b8eaea11b610b8677ad/notes"
+ "related": "https://reactor.adobe.io/libraries/LB8f061fbe5f3240588d1dd0f6206ed3a2/notes"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB39708627115f4b8eaea11b610b8677ad/rules",
- "self": "https://reactor.adobe.io/libraries/LB39708627115f4b8eaea11b610b8677ad/relationships/rules"
+ "related": "https://reactor.adobe.io/libraries/LB8f061fbe5f3240588d1dd0f6206ed3a2/rules",
+ "self": "https://reactor.adobe.io/libraries/LB8f061fbe5f3240588d1dd0f6206ed3a2/relationships/rules"
}
},
"upstream_library": {
@@ -29735,23 +29860,23 @@
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB39708627115f4b8eaea11b610b8677ad/property"
+ "related": "https://reactor.adobe.io/libraries/LB8f061fbe5f3240588d1dd0f6206ed3a2/property"
},
"data": {
- "id": "PRdf7bd21a54c5441a9d8441d93ddf56bd",
+ "id": "PRf8b0daaea11443fa8851911b722a38b1",
"type": "properties"
}
},
"last_build": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB39708627115f4b8eaea11b610b8677ad/last_build"
+ "related": "https://reactor.adobe.io/libraries/LB8f061fbe5f3240588d1dd0f6206ed3a2/last_build"
},
"data": null
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRdf7bd21a54c5441a9d8441d93ddf56bd",
- "self": "https://reactor.adobe.io/libraries/LB39708627115f4b8eaea11b610b8677ad"
+ "property": "https://reactor.adobe.io/properties/PRf8b0daaea11443fa8851911b722a38b1",
+ "self": "https://reactor.adobe.io/libraries/LB8f061fbe5f3240588d1dd0f6206ed3a2"
},
"meta": {
"build_status": null,
@@ -29787,28 +29912,28 @@
},
"response": {
"data": {
- "id": "NT32f3c98982644cdca2770b69216dad72",
+ "id": "NT68fd0cd986e24331bfe57f9d0e95ab4c",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:57:48.207Z",
+ "created_at": "2023-04-21T23:03:30.365Z",
"text": "this note on a library intentionally left blank"
},
"relationships": {
"resource": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LB4d3696211fde4c82b0b5b9d8b0176c71"
+ "related": "https://reactor.adobe.io/libraries/LBb8344211fb004b6292a116e423e945a1"
},
"data": {
- "id": "LB4d3696211fde4c82b0b5b9d8b0176c71",
+ "id": "LBb8344211fb004b6292a116e423e945a1",
"type": "libraries"
}
}
},
"links": {
- "resource": "https://reactor.adobe.io/libraries/LB4d3696211fde4c82b0b5b9d8b0176c71",
- "self": "https://reactor.adobe.io/notes/NT32f3c98982644cdca2770b69216dad72"
+ "resource": "https://reactor.adobe.io/libraries/LBb8344211fb004b6292a116e423e945a1",
+ "self": "https://reactor.adobe.io/notes/NT68fd0cd986e24331bfe57f9d0e95ab4c"
}
}
},
@@ -29824,28 +29949,28 @@
"response": {
"data": [
{
- "id": "NT00888aff58514dafbad7e8cc77f97b0d",
+ "id": "NT313d16bfb7d64231a656dcc85fa1e341",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:57:53.651Z",
+ "created_at": "2023-04-21T23:03:35.766Z",
"text": "this is a note on a library"
},
"relationships": {
"resource": {
"links": {
- "related": "https://reactor.adobe.io/libraries/LBa51f6ce4af2e4f58a6891c5e40fd5ac1"
+ "related": "https://reactor.adobe.io/libraries/LB06b3af6e8b0e40829d84772ad31cdcc9"
},
"data": {
- "id": "LBa51f6ce4af2e4f58a6891c5e40fd5ac1",
+ "id": "LB06b3af6e8b0e40829d84772ad31cdcc9",
"type": "libraries"
}
}
},
"links": {
- "resource": "https://reactor.adobe.io/libraries/LBa51f6ce4af2e4f58a6891c5e40fd5ac1",
- "self": "https://reactor.adobe.io/notes/NT00888aff58514dafbad7e8cc77f97b0d"
+ "resource": "https://reactor.adobe.io/libraries/LB06b3af6e8b0e40829d84772ad31cdcc9",
+ "self": "https://reactor.adobe.io/notes/NT313d16bfb7d64231a656dcc85fa1e341"
}
}
],
@@ -29870,28 +29995,28 @@
"request": null,
"response": {
"data": {
- "id": "NT05f8da84c5424cf58d5490aed82e37fc",
+ "id": "NTe63594de6354452b94f6d5ae3385bdc2",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:57:59.082Z",
+ "created_at": "2023-04-21T23:03:41.211Z",
"text": "this is a note on a property"
},
"relationships": {
"resource": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRa70d7acf5fb24216a77022e744e61671"
+ "related": "https://reactor.adobe.io/properties/PR956d85154b474a00885eb22d43f31401"
},
"data": {
- "id": "PRa70d7acf5fb24216a77022e744e61671",
+ "id": "PR956d85154b474a00885eb22d43f31401",
"type": "properties"
}
}
},
"links": {
- "resource": "https://reactor.adobe.io/properties/PRa70d7acf5fb24216a77022e744e61671",
- "self": "https://reactor.adobe.io/notes/NT05f8da84c5424cf58d5490aed82e37fc"
+ "resource": "https://reactor.adobe.io/properties/PR956d85154b474a00885eb22d43f31401",
+ "self": "https://reactor.adobe.io/notes/NTe63594de6354452b94f6d5ae3385bdc2"
}
}
},
@@ -29910,7 +30035,7 @@
"type": "users",
"attributes": {
"active_org": "08364A825824E04F0A494115@AdobeOrg",
- "expires_in": 1525,
+ "expires_in": 1309,
"display_name": "George Ciltaru",
"job_function": null,
"email": "ciltaru@adobe.com",
@@ -29923,41 +30048,41 @@
],
"product_contexts": [
- "dma_reactor",
"dma_dtm",
- "dma_audiencemanager_int",
- "dma_tartan"
+ "dma_reactor",
+ "dma_tartan",
+ "dma_audiencemanager_int"
],
"tenant_id": "reactorqe"
},
- "5D1328435BF324E90A49402A@AdobeOrg": {
- "name": "Platform UI - INT",
- "admin": false,
+ "233432C559D3F8C90A49410E@AdobeOrg": {
+ "name": "QE Launch Automation",
+ "admin": true,
"active": false,
"login_companies": [
],
"product_contexts": [
- "acp",
+ "dma_reactor_api",
+ "dma_tartan",
"dma_reactor",
- "dma_tartan"
+ "dma_audiencemanager_int"
],
- "tenant_id": "platformuiintenv"
+ "tenant_id": "launchautomation"
},
- "233432C559D3F8C90A49410E@AdobeOrg": {
- "name": "QE Launch Automation",
- "admin": true,
+ "5D1328435BF324E90A49402A@AdobeOrg": {
+ "name": "Platform UI - INT",
+ "admin": false,
"active": false,
"login_companies": [
],
"product_contexts": [
- "dma_audiencemanager_int",
- "dma_reactor_api",
+ "acp",
"dma_tartan",
"dma_reactor"
],
- "tenant_id": "launchautomation"
+ "tenant_id": "platformuiintenv"
},
"4F0D9DF45824DEC70A49422D@AdobeOrg": {
"name": "Activation Reactor Integrations",
@@ -29967,8 +30092,8 @@
],
"product_contexts": [
- "dma_reactor",
"dma_tartan",
+ "dma_reactor",
"dma_audiencemanager_int"
],
"tenant_id": "reactorintegration"
@@ -29981,9 +30106,9 @@
],
"product_contexts": [
+ "acp",
"dma_reactor",
- "dma_tartan",
- "acp"
+ "dma_tartan"
],
"tenant_id": "aepstreamingservicesstg"
}
@@ -30021,16 +30146,16 @@
},
"response": {
"data": {
- "id": "PR181e2a9632774423b020433a8d64283e",
+ "id": "PR057354e579dc4910a60816c1422b19ed",
"type": "properties",
"attributes": {
- "created_at": "2023-01-30T20:57:59.328Z",
+ "created_at": "2023-04-21T23:03:41.501Z",
"enabled": true,
"name": "Kessel Property A",
- "updated_at": "2023-01-30T20:57:59.328Z",
+ "updated_at": "2023-04-21T23:03:41.501Z",
"platform": "web",
"development": false,
- "token": "ecd4811d52b2",
+ "token": "f74ed1745ad0",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -30044,7 +30169,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR181e2a9632774423b020433a8d64283e/company"
+ "related": "https://reactor.adobe.io/properties/PR057354e579dc4910a60816c1422b19ed/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -30053,52 +30178,52 @@
},
"callbacks": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR181e2a9632774423b020433a8d64283e/callbacks"
+ "related": "https://reactor.adobe.io/properties/PR057354e579dc4910a60816c1422b19ed/callbacks"
}
},
"hosts": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR181e2a9632774423b020433a8d64283e/hosts"
+ "related": "https://reactor.adobe.io/properties/PR057354e579dc4910a60816c1422b19ed/hosts"
}
},
"environments": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR181e2a9632774423b020433a8d64283e/environments"
+ "related": "https://reactor.adobe.io/properties/PR057354e579dc4910a60816c1422b19ed/environments"
}
},
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR181e2a9632774423b020433a8d64283e/libraries"
+ "related": "https://reactor.adobe.io/properties/PR057354e579dc4910a60816c1422b19ed/libraries"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR181e2a9632774423b020433a8d64283e/data_elements"
+ "related": "https://reactor.adobe.io/properties/PR057354e579dc4910a60816c1422b19ed/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR181e2a9632774423b020433a8d64283e/extensions"
+ "related": "https://reactor.adobe.io/properties/PR057354e579dc4910a60816c1422b19ed/extensions"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR181e2a9632774423b020433a8d64283e/rules"
+ "related": "https://reactor.adobe.io/properties/PR057354e579dc4910a60816c1422b19ed/rules"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR181e2a9632774423b020433a8d64283e/notes"
+ "related": "https://reactor.adobe.io/properties/PR057354e579dc4910a60816c1422b19ed/notes"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "data_elements": "https://reactor.adobe.io/properties/PR181e2a9632774423b020433a8d64283e/data_elements",
- "environments": "https://reactor.adobe.io/properties/PR181e2a9632774423b020433a8d64283e/environments",
- "extensions": "https://reactor.adobe.io/properties/PR181e2a9632774423b020433a8d64283e/extensions",
- "rules": "https://reactor.adobe.io/properties/PR181e2a9632774423b020433a8d64283e/rules",
- "self": "https://reactor.adobe.io/properties/PR181e2a9632774423b020433a8d64283e"
+ "data_elements": "https://reactor.adobe.io/properties/PR057354e579dc4910a60816c1422b19ed/data_elements",
+ "environments": "https://reactor.adobe.io/properties/PR057354e579dc4910a60816c1422b19ed/environments",
+ "extensions": "https://reactor.adobe.io/properties/PR057354e579dc4910a60816c1422b19ed/extensions",
+ "rules": "https://reactor.adobe.io/properties/PR057354e579dc4910a60816c1422b19ed/rules",
+ "self": "https://reactor.adobe.io/properties/PR057354e579dc4910a60816c1422b19ed"
},
"meta": {
"rights": [
@@ -30123,16 +30248,16 @@
"request": null,
"response": {
"data": {
- "id": "PR1f4a86f480dd4f2785e02bdb5bf318fe",
+ "id": "PR8f5855c0548340daa849e7a7b16be042",
"type": "properties",
"attributes": {
- "created_at": "2023-01-30T20:57:59.657Z",
+ "created_at": "2023-04-21T23:03:41.838Z",
"enabled": true,
"name": "Kessel Example Property",
- "updated_at": "2023-01-30T20:57:59.657Z",
+ "updated_at": "2023-04-21T23:03:41.838Z",
"platform": "web",
"development": false,
- "token": "e3e961bcd560",
+ "token": "a3576b7431c7",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -30146,7 +30271,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR1f4a86f480dd4f2785e02bdb5bf318fe/company"
+ "related": "https://reactor.adobe.io/properties/PR8f5855c0548340daa849e7a7b16be042/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -30155,52 +30280,52 @@
},
"callbacks": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR1f4a86f480dd4f2785e02bdb5bf318fe/callbacks"
+ "related": "https://reactor.adobe.io/properties/PR8f5855c0548340daa849e7a7b16be042/callbacks"
}
},
"hosts": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR1f4a86f480dd4f2785e02bdb5bf318fe/hosts"
+ "related": "https://reactor.adobe.io/properties/PR8f5855c0548340daa849e7a7b16be042/hosts"
}
},
"environments": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR1f4a86f480dd4f2785e02bdb5bf318fe/environments"
+ "related": "https://reactor.adobe.io/properties/PR8f5855c0548340daa849e7a7b16be042/environments"
}
},
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR1f4a86f480dd4f2785e02bdb5bf318fe/libraries"
+ "related": "https://reactor.adobe.io/properties/PR8f5855c0548340daa849e7a7b16be042/libraries"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR1f4a86f480dd4f2785e02bdb5bf318fe/data_elements"
+ "related": "https://reactor.adobe.io/properties/PR8f5855c0548340daa849e7a7b16be042/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR1f4a86f480dd4f2785e02bdb5bf318fe/extensions"
+ "related": "https://reactor.adobe.io/properties/PR8f5855c0548340daa849e7a7b16be042/extensions"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR1f4a86f480dd4f2785e02bdb5bf318fe/rules"
+ "related": "https://reactor.adobe.io/properties/PR8f5855c0548340daa849e7a7b16be042/rules"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR1f4a86f480dd4f2785e02bdb5bf318fe/notes"
+ "related": "https://reactor.adobe.io/properties/PR8f5855c0548340daa849e7a7b16be042/notes"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "data_elements": "https://reactor.adobe.io/properties/PR1f4a86f480dd4f2785e02bdb5bf318fe/data_elements",
- "environments": "https://reactor.adobe.io/properties/PR1f4a86f480dd4f2785e02bdb5bf318fe/environments",
- "extensions": "https://reactor.adobe.io/properties/PR1f4a86f480dd4f2785e02bdb5bf318fe/extensions",
- "rules": "https://reactor.adobe.io/properties/PR1f4a86f480dd4f2785e02bdb5bf318fe/rules",
- "self": "https://reactor.adobe.io/properties/PR1f4a86f480dd4f2785e02bdb5bf318fe"
+ "data_elements": "https://reactor.adobe.io/properties/PR8f5855c0548340daa849e7a7b16be042/data_elements",
+ "environments": "https://reactor.adobe.io/properties/PR8f5855c0548340daa849e7a7b16be042/environments",
+ "extensions": "https://reactor.adobe.io/properties/PR8f5855c0548340daa849e7a7b16be042/extensions",
+ "rules": "https://reactor.adobe.io/properties/PR8f5855c0548340daa849e7a7b16be042/rules",
+ "self": "https://reactor.adobe.io/properties/PR8f5855c0548340daa849e7a7b16be042"
},
"meta": {
"rights": [
@@ -30494,6 +30619,97 @@
]
}
},
+ {
+ "id": "PR35b41b6f05964ebc83cf2d159b1940cf",
+ "type": "properties",
+ "attributes": {
+ "created_at": "2023-02-09T17:35:33.183Z",
+ "enabled": true,
+ "name": "test host",
+ "updated_at": "2023-02-09T17:35:33.183Z",
+ "platform": "web",
+ "development": false,
+ "token": "5796afe26925",
+ "created_by_email": "ciltaru@adobe.com",
+ "created_by_display_name": "George Ciltaru",
+ "updated_by_email": "ciltaru@adobe.com",
+ "updated_by_display_name": "George Ciltaru",
+ "domains": [
+ "adobe.com"
+ ],
+ "undefined_vars_return_empty": false,
+ "rule_component_sequencing_enabled": true
+ },
+ "relationships": {
+ "company": {
+ "links": {
+ "related": "https://reactor.adobe.io/properties/PR35b41b6f05964ebc83cf2d159b1940cf/company"
+ },
+ "data": {
+ "id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
+ "type": "companies"
+ }
+ },
+ "callbacks": {
+ "links": {
+ "related": "https://reactor.adobe.io/properties/PR35b41b6f05964ebc83cf2d159b1940cf/callbacks"
+ }
+ },
+ "hosts": {
+ "links": {
+ "related": "https://reactor.adobe.io/properties/PR35b41b6f05964ebc83cf2d159b1940cf/hosts"
+ }
+ },
+ "environments": {
+ "links": {
+ "related": "https://reactor.adobe.io/properties/PR35b41b6f05964ebc83cf2d159b1940cf/environments"
+ }
+ },
+ "libraries": {
+ "links": {
+ "related": "https://reactor.adobe.io/properties/PR35b41b6f05964ebc83cf2d159b1940cf/libraries"
+ }
+ },
+ "data_elements": {
+ "links": {
+ "related": "https://reactor.adobe.io/properties/PR35b41b6f05964ebc83cf2d159b1940cf/data_elements"
+ }
+ },
+ "extensions": {
+ "links": {
+ "related": "https://reactor.adobe.io/properties/PR35b41b6f05964ebc83cf2d159b1940cf/extensions"
+ }
+ },
+ "rules": {
+ "links": {
+ "related": "https://reactor.adobe.io/properties/PR35b41b6f05964ebc83cf2d159b1940cf/rules"
+ }
+ },
+ "notes": {
+ "links": {
+ "related": "https://reactor.adobe.io/properties/PR35b41b6f05964ebc83cf2d159b1940cf/notes"
+ }
+ }
+ },
+ "links": {
+ "company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
+ "data_elements": "https://reactor.adobe.io/properties/PR35b41b6f05964ebc83cf2d159b1940cf/data_elements",
+ "environments": "https://reactor.adobe.io/properties/PR35b41b6f05964ebc83cf2d159b1940cf/environments",
+ "extensions": "https://reactor.adobe.io/properties/PR35b41b6f05964ebc83cf2d159b1940cf/extensions",
+ "rules": "https://reactor.adobe.io/properties/PR35b41b6f05964ebc83cf2d159b1940cf/rules",
+ "self": "https://reactor.adobe.io/properties/PR35b41b6f05964ebc83cf2d159b1940cf"
+ },
+ "meta": {
+ "rights": [
+ "approve",
+ "develop",
+ "edit_property",
+ "manage_environments",
+ "manage_extensions",
+ "publish"
+ ]
+ }
+ },
{
"id": "PRf6d60efbc1d7402b823dcdd445a5eb80",
"type": "properties",
@@ -30592,7 +30808,7 @@
"next_page": null,
"prev_page": null,
"total_pages": 1,
- "total_count": 6
+ "total_count": 7
}
}
},
@@ -30612,22 +30828,22 @@
"example.com"
]
},
- "id": "PR300f08bf4dd049b5b263cb7f6071714d",
+ "id": "PRfae8b1cb14b74c71a6d0e0885e6a2b58",
"type": "properties"
}
},
"response": {
"data": {
- "id": "PR300f08bf4dd049b5b263cb7f6071714d",
+ "id": "PRfae8b1cb14b74c71a6d0e0885e6a2b58",
"type": "properties",
"attributes": {
- "created_at": "2023-01-30T20:58:10.485Z",
+ "created_at": "2023-04-21T23:03:53.196Z",
"enabled": true,
"name": "Kessel Property B",
- "updated_at": "2023-01-30T20:58:15.638Z",
+ "updated_at": "2023-04-21T23:03:58.340Z",
"platform": "web",
"development": false,
- "token": "0b496e522bcf",
+ "token": "19f9ecda45f4",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -30641,7 +30857,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR300f08bf4dd049b5b263cb7f6071714d/company"
+ "related": "https://reactor.adobe.io/properties/PRfae8b1cb14b74c71a6d0e0885e6a2b58/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -30650,52 +30866,52 @@
},
"callbacks": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR300f08bf4dd049b5b263cb7f6071714d/callbacks"
+ "related": "https://reactor.adobe.io/properties/PRfae8b1cb14b74c71a6d0e0885e6a2b58/callbacks"
}
},
"hosts": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR300f08bf4dd049b5b263cb7f6071714d/hosts"
+ "related": "https://reactor.adobe.io/properties/PRfae8b1cb14b74c71a6d0e0885e6a2b58/hosts"
}
},
"environments": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR300f08bf4dd049b5b263cb7f6071714d/environments"
+ "related": "https://reactor.adobe.io/properties/PRfae8b1cb14b74c71a6d0e0885e6a2b58/environments"
}
},
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR300f08bf4dd049b5b263cb7f6071714d/libraries"
+ "related": "https://reactor.adobe.io/properties/PRfae8b1cb14b74c71a6d0e0885e6a2b58/libraries"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR300f08bf4dd049b5b263cb7f6071714d/data_elements"
+ "related": "https://reactor.adobe.io/properties/PRfae8b1cb14b74c71a6d0e0885e6a2b58/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR300f08bf4dd049b5b263cb7f6071714d/extensions"
+ "related": "https://reactor.adobe.io/properties/PRfae8b1cb14b74c71a6d0e0885e6a2b58/extensions"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR300f08bf4dd049b5b263cb7f6071714d/rules"
+ "related": "https://reactor.adobe.io/properties/PRfae8b1cb14b74c71a6d0e0885e6a2b58/rules"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR300f08bf4dd049b5b263cb7f6071714d/notes"
+ "related": "https://reactor.adobe.io/properties/PRfae8b1cb14b74c71a6d0e0885e6a2b58/notes"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "data_elements": "https://reactor.adobe.io/properties/PR300f08bf4dd049b5b263cb7f6071714d/data_elements",
- "environments": "https://reactor.adobe.io/properties/PR300f08bf4dd049b5b263cb7f6071714d/environments",
- "extensions": "https://reactor.adobe.io/properties/PR300f08bf4dd049b5b263cb7f6071714d/extensions",
- "rules": "https://reactor.adobe.io/properties/PR300f08bf4dd049b5b263cb7f6071714d/rules",
- "self": "https://reactor.adobe.io/properties/PR300f08bf4dd049b5b263cb7f6071714d"
+ "data_elements": "https://reactor.adobe.io/properties/PRfae8b1cb14b74c71a6d0e0885e6a2b58/data_elements",
+ "environments": "https://reactor.adobe.io/properties/PRfae8b1cb14b74c71a6d0e0885e6a2b58/environments",
+ "extensions": "https://reactor.adobe.io/properties/PRfae8b1cb14b74c71a6d0e0885e6a2b58/extensions",
+ "rules": "https://reactor.adobe.io/properties/PRfae8b1cb14b74c71a6d0e0885e6a2b58/rules",
+ "self": "https://reactor.adobe.io/properties/PRfae8b1cb14b74c71a6d0e0885e6a2b58"
},
"meta": {
"rights": [
@@ -30730,16 +30946,16 @@
"request": null,
"response": {
"data": {
- "id": "PR705b37b793314fc5b511f3feeacf01f7",
+ "id": "PR3ef3e8541ff447cdb9dfa8741b19a30f",
"type": "properties",
"attributes": {
- "created_at": "2023-01-30T20:58:21.208Z",
+ "created_at": "2023-04-21T23:04:04.047Z",
"enabled": true,
"name": "Kessel Example Property",
- "updated_at": "2023-01-30T20:58:21.208Z",
+ "updated_at": "2023-04-21T23:04:04.047Z",
"platform": "web",
"development": false,
- "token": "98cb24b15362",
+ "token": "64a025913794",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -30753,7 +30969,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR705b37b793314fc5b511f3feeacf01f7/company"
+ "related": "https://reactor.adobe.io/properties/PR3ef3e8541ff447cdb9dfa8741b19a30f/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -30762,52 +30978,52 @@
},
"callbacks": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR705b37b793314fc5b511f3feeacf01f7/callbacks"
+ "related": "https://reactor.adobe.io/properties/PR3ef3e8541ff447cdb9dfa8741b19a30f/callbacks"
}
},
"hosts": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR705b37b793314fc5b511f3feeacf01f7/hosts"
+ "related": "https://reactor.adobe.io/properties/PR3ef3e8541ff447cdb9dfa8741b19a30f/hosts"
}
},
"environments": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR705b37b793314fc5b511f3feeacf01f7/environments"
+ "related": "https://reactor.adobe.io/properties/PR3ef3e8541ff447cdb9dfa8741b19a30f/environments"
}
},
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR705b37b793314fc5b511f3feeacf01f7/libraries"
+ "related": "https://reactor.adobe.io/properties/PR3ef3e8541ff447cdb9dfa8741b19a30f/libraries"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR705b37b793314fc5b511f3feeacf01f7/data_elements"
+ "related": "https://reactor.adobe.io/properties/PR3ef3e8541ff447cdb9dfa8741b19a30f/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR705b37b793314fc5b511f3feeacf01f7/extensions"
+ "related": "https://reactor.adobe.io/properties/PR3ef3e8541ff447cdb9dfa8741b19a30f/extensions"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR705b37b793314fc5b511f3feeacf01f7/rules"
+ "related": "https://reactor.adobe.io/properties/PR3ef3e8541ff447cdb9dfa8741b19a30f/rules"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR705b37b793314fc5b511f3feeacf01f7/notes"
+ "related": "https://reactor.adobe.io/properties/PR3ef3e8541ff447cdb9dfa8741b19a30f/notes"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "data_elements": "https://reactor.adobe.io/properties/PR705b37b793314fc5b511f3feeacf01f7/data_elements",
- "environments": "https://reactor.adobe.io/properties/PR705b37b793314fc5b511f3feeacf01f7/environments",
- "extensions": "https://reactor.adobe.io/properties/PR705b37b793314fc5b511f3feeacf01f7/extensions",
- "rules": "https://reactor.adobe.io/properties/PR705b37b793314fc5b511f3feeacf01f7/rules",
- "self": "https://reactor.adobe.io/properties/PR705b37b793314fc5b511f3feeacf01f7"
+ "data_elements": "https://reactor.adobe.io/properties/PR3ef3e8541ff447cdb9dfa8741b19a30f/data_elements",
+ "environments": "https://reactor.adobe.io/properties/PR3ef3e8541ff447cdb9dfa8741b19a30f/environments",
+ "extensions": "https://reactor.adobe.io/properties/PR3ef3e8541ff447cdb9dfa8741b19a30f/extensions",
+ "rules": "https://reactor.adobe.io/properties/PR3ef3e8541ff447cdb9dfa8741b19a30f/rules",
+ "self": "https://reactor.adobe.io/properties/PR3ef3e8541ff447cdb9dfa8741b19a30f"
},
"meta": {
"rights": [
@@ -30832,16 +31048,16 @@
"request": null,
"response": {
"data": {
- "id": "PR0d346a0bf9344a8691cf8d38eb10b08e",
+ "id": "PRaa80eee7393f42f18ac1df6702fc6db8",
"type": "properties",
"attributes": {
- "created_at": "2023-01-30T20:58:26.597Z",
+ "created_at": "2023-04-21T23:04:09.495Z",
"enabled": true,
"name": "Kessel Example Property",
- "updated_at": "2023-01-30T20:58:26.597Z",
+ "updated_at": "2023-04-21T23:04:09.495Z",
"platform": "web",
"development": false,
- "token": "62037a7619f9",
+ "token": "cf489d4c1acf",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -30855,7 +31071,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR0d346a0bf9344a8691cf8d38eb10b08e/company"
+ "related": "https://reactor.adobe.io/properties/PRaa80eee7393f42f18ac1df6702fc6db8/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -30864,52 +31080,52 @@
},
"callbacks": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR0d346a0bf9344a8691cf8d38eb10b08e/callbacks"
+ "related": "https://reactor.adobe.io/properties/PRaa80eee7393f42f18ac1df6702fc6db8/callbacks"
}
},
"hosts": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR0d346a0bf9344a8691cf8d38eb10b08e/hosts"
+ "related": "https://reactor.adobe.io/properties/PRaa80eee7393f42f18ac1df6702fc6db8/hosts"
}
},
"environments": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR0d346a0bf9344a8691cf8d38eb10b08e/environments"
+ "related": "https://reactor.adobe.io/properties/PRaa80eee7393f42f18ac1df6702fc6db8/environments"
}
},
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR0d346a0bf9344a8691cf8d38eb10b08e/libraries"
+ "related": "https://reactor.adobe.io/properties/PRaa80eee7393f42f18ac1df6702fc6db8/libraries"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR0d346a0bf9344a8691cf8d38eb10b08e/data_elements"
+ "related": "https://reactor.adobe.io/properties/PRaa80eee7393f42f18ac1df6702fc6db8/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR0d346a0bf9344a8691cf8d38eb10b08e/extensions"
+ "related": "https://reactor.adobe.io/properties/PRaa80eee7393f42f18ac1df6702fc6db8/extensions"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR0d346a0bf9344a8691cf8d38eb10b08e/rules"
+ "related": "https://reactor.adobe.io/properties/PRaa80eee7393f42f18ac1df6702fc6db8/rules"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR0d346a0bf9344a8691cf8d38eb10b08e/notes"
+ "related": "https://reactor.adobe.io/properties/PRaa80eee7393f42f18ac1df6702fc6db8/notes"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "data_elements": "https://reactor.adobe.io/properties/PR0d346a0bf9344a8691cf8d38eb10b08e/data_elements",
- "environments": "https://reactor.adobe.io/properties/PR0d346a0bf9344a8691cf8d38eb10b08e/environments",
- "extensions": "https://reactor.adobe.io/properties/PR0d346a0bf9344a8691cf8d38eb10b08e/extensions",
- "rules": "https://reactor.adobe.io/properties/PR0d346a0bf9344a8691cf8d38eb10b08e/rules",
- "self": "https://reactor.adobe.io/properties/PR0d346a0bf9344a8691cf8d38eb10b08e"
+ "data_elements": "https://reactor.adobe.io/properties/PRaa80eee7393f42f18ac1df6702fc6db8/data_elements",
+ "environments": "https://reactor.adobe.io/properties/PRaa80eee7393f42f18ac1df6702fc6db8/environments",
+ "extensions": "https://reactor.adobe.io/properties/PRaa80eee7393f42f18ac1df6702fc6db8/extensions",
+ "rules": "https://reactor.adobe.io/properties/PRaa80eee7393f42f18ac1df6702fc6db8/rules",
+ "self": "https://reactor.adobe.io/properties/PRaa80eee7393f42f18ac1df6702fc6db8"
},
"meta": {
"rights": [
@@ -30934,16 +31150,16 @@
"request": null,
"response": {
"data": {
- "id": "PR402b8a5a230c402a80901e4303d7776a",
+ "id": "PR51c4d7162d2b41e7b97a64d4674ef6ad",
"type": "properties",
"attributes": {
- "created_at": "2023-01-30T20:58:32.017Z",
+ "created_at": "2023-04-21T23:04:14.968Z",
"enabled": true,
"name": "Kessel Example Property",
- "updated_at": "2023-01-30T20:58:32.017Z",
+ "updated_at": "2023-04-21T23:04:14.968Z",
"platform": "web",
"development": false,
- "token": "2365bd70a722",
+ "token": "3e556f311574",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -30957,7 +31173,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR402b8a5a230c402a80901e4303d7776a/company"
+ "related": "https://reactor.adobe.io/properties/PR51c4d7162d2b41e7b97a64d4674ef6ad/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -30966,52 +31182,52 @@
},
"callbacks": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR402b8a5a230c402a80901e4303d7776a/callbacks"
+ "related": "https://reactor.adobe.io/properties/PR51c4d7162d2b41e7b97a64d4674ef6ad/callbacks"
}
},
"hosts": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR402b8a5a230c402a80901e4303d7776a/hosts"
+ "related": "https://reactor.adobe.io/properties/PR51c4d7162d2b41e7b97a64d4674ef6ad/hosts"
}
},
"environments": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR402b8a5a230c402a80901e4303d7776a/environments"
+ "related": "https://reactor.adobe.io/properties/PR51c4d7162d2b41e7b97a64d4674ef6ad/environments"
}
},
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR402b8a5a230c402a80901e4303d7776a/libraries"
+ "related": "https://reactor.adobe.io/properties/PR51c4d7162d2b41e7b97a64d4674ef6ad/libraries"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR402b8a5a230c402a80901e4303d7776a/data_elements"
+ "related": "https://reactor.adobe.io/properties/PR51c4d7162d2b41e7b97a64d4674ef6ad/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR402b8a5a230c402a80901e4303d7776a/extensions"
+ "related": "https://reactor.adobe.io/properties/PR51c4d7162d2b41e7b97a64d4674ef6ad/extensions"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR402b8a5a230c402a80901e4303d7776a/rules"
+ "related": "https://reactor.adobe.io/properties/PR51c4d7162d2b41e7b97a64d4674ef6ad/rules"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR402b8a5a230c402a80901e4303d7776a/notes"
+ "related": "https://reactor.adobe.io/properties/PR51c4d7162d2b41e7b97a64d4674ef6ad/notes"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "data_elements": "https://reactor.adobe.io/properties/PR402b8a5a230c402a80901e4303d7776a/data_elements",
- "environments": "https://reactor.adobe.io/properties/PR402b8a5a230c402a80901e4303d7776a/environments",
- "extensions": "https://reactor.adobe.io/properties/PR402b8a5a230c402a80901e4303d7776a/extensions",
- "rules": "https://reactor.adobe.io/properties/PR402b8a5a230c402a80901e4303d7776a/rules",
- "self": "https://reactor.adobe.io/properties/PR402b8a5a230c402a80901e4303d7776a"
+ "data_elements": "https://reactor.adobe.io/properties/PR51c4d7162d2b41e7b97a64d4674ef6ad/data_elements",
+ "environments": "https://reactor.adobe.io/properties/PR51c4d7162d2b41e7b97a64d4674ef6ad/environments",
+ "extensions": "https://reactor.adobe.io/properties/PR51c4d7162d2b41e7b97a64d4674ef6ad/extensions",
+ "rules": "https://reactor.adobe.io/properties/PR51c4d7162d2b41e7b97a64d4674ef6ad/rules",
+ "self": "https://reactor.adobe.io/properties/PR51c4d7162d2b41e7b97a64d4674ef6ad"
},
"meta": {
"rights": [
@@ -31036,16 +31252,16 @@
"request": null,
"response": {
"data": {
- "id": "PR218b8e9d39a244118c182e6579279395",
+ "id": "PRa9d771c19d254c0ab89a193ba2e7025b",
"type": "properties",
"attributes": {
- "created_at": "2023-01-30T20:58:37.682Z",
+ "created_at": "2023-04-21T23:04:21.186Z",
"enabled": true,
"name": "Kessel Example Property",
- "updated_at": "2023-01-30T20:58:37.682Z",
+ "updated_at": "2023-04-21T23:04:21.186Z",
"platform": "web",
"development": false,
- "token": "96647982b313",
+ "token": "871198f4a3e9",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -31059,7 +31275,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR218b8e9d39a244118c182e6579279395/company"
+ "related": "https://reactor.adobe.io/properties/PRa9d771c19d254c0ab89a193ba2e7025b/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -31068,52 +31284,52 @@
},
"callbacks": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR218b8e9d39a244118c182e6579279395/callbacks"
+ "related": "https://reactor.adobe.io/properties/PRa9d771c19d254c0ab89a193ba2e7025b/callbacks"
}
},
"hosts": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR218b8e9d39a244118c182e6579279395/hosts"
+ "related": "https://reactor.adobe.io/properties/PRa9d771c19d254c0ab89a193ba2e7025b/hosts"
}
},
"environments": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR218b8e9d39a244118c182e6579279395/environments"
+ "related": "https://reactor.adobe.io/properties/PRa9d771c19d254c0ab89a193ba2e7025b/environments"
}
},
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR218b8e9d39a244118c182e6579279395/libraries"
+ "related": "https://reactor.adobe.io/properties/PRa9d771c19d254c0ab89a193ba2e7025b/libraries"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR218b8e9d39a244118c182e6579279395/data_elements"
+ "related": "https://reactor.adobe.io/properties/PRa9d771c19d254c0ab89a193ba2e7025b/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR218b8e9d39a244118c182e6579279395/extensions"
+ "related": "https://reactor.adobe.io/properties/PRa9d771c19d254c0ab89a193ba2e7025b/extensions"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR218b8e9d39a244118c182e6579279395/rules"
+ "related": "https://reactor.adobe.io/properties/PRa9d771c19d254c0ab89a193ba2e7025b/rules"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR218b8e9d39a244118c182e6579279395/notes"
+ "related": "https://reactor.adobe.io/properties/PRa9d771c19d254c0ab89a193ba2e7025b/notes"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "data_elements": "https://reactor.adobe.io/properties/PR218b8e9d39a244118c182e6579279395/data_elements",
- "environments": "https://reactor.adobe.io/properties/PR218b8e9d39a244118c182e6579279395/environments",
- "extensions": "https://reactor.adobe.io/properties/PR218b8e9d39a244118c182e6579279395/extensions",
- "rules": "https://reactor.adobe.io/properties/PR218b8e9d39a244118c182e6579279395/rules",
- "self": "https://reactor.adobe.io/properties/PR218b8e9d39a244118c182e6579279395"
+ "data_elements": "https://reactor.adobe.io/properties/PRa9d771c19d254c0ab89a193ba2e7025b/data_elements",
+ "environments": "https://reactor.adobe.io/properties/PRa9d771c19d254c0ab89a193ba2e7025b/environments",
+ "extensions": "https://reactor.adobe.io/properties/PRa9d771c19d254c0ab89a193ba2e7025b/extensions",
+ "rules": "https://reactor.adobe.io/properties/PRa9d771c19d254c0ab89a193ba2e7025b/rules",
+ "self": "https://reactor.adobe.io/properties/PRa9d771c19d254c0ab89a193ba2e7025b"
},
"meta": {
"rights": [
@@ -31138,16 +31354,16 @@
"request": null,
"response": {
"data": {
- "id": "PR0d6d8e0536194082bfd5dc13e38522d9",
+ "id": "PR2b62a386bafa4e8ba1c2fba67e775089",
"type": "properties",
"attributes": {
- "created_at": "2023-01-30T20:58:43.161Z",
+ "created_at": "2023-04-21T23:04:26.789Z",
"enabled": true,
"name": "Kessel Example Property",
- "updated_at": "2023-01-30T20:58:43.161Z",
+ "updated_at": "2023-04-21T23:04:26.789Z",
"platform": "web",
"development": false,
- "token": "070b8306a017",
+ "token": "ad9c34297d06",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -31161,7 +31377,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR0d6d8e0536194082bfd5dc13e38522d9/company"
+ "related": "https://reactor.adobe.io/properties/PR2b62a386bafa4e8ba1c2fba67e775089/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -31170,52 +31386,52 @@
},
"callbacks": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR0d6d8e0536194082bfd5dc13e38522d9/callbacks"
+ "related": "https://reactor.adobe.io/properties/PR2b62a386bafa4e8ba1c2fba67e775089/callbacks"
}
},
"hosts": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR0d6d8e0536194082bfd5dc13e38522d9/hosts"
+ "related": "https://reactor.adobe.io/properties/PR2b62a386bafa4e8ba1c2fba67e775089/hosts"
}
},
"environments": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR0d6d8e0536194082bfd5dc13e38522d9/environments"
+ "related": "https://reactor.adobe.io/properties/PR2b62a386bafa4e8ba1c2fba67e775089/environments"
}
},
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR0d6d8e0536194082bfd5dc13e38522d9/libraries"
+ "related": "https://reactor.adobe.io/properties/PR2b62a386bafa4e8ba1c2fba67e775089/libraries"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR0d6d8e0536194082bfd5dc13e38522d9/data_elements"
+ "related": "https://reactor.adobe.io/properties/PR2b62a386bafa4e8ba1c2fba67e775089/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR0d6d8e0536194082bfd5dc13e38522d9/extensions"
+ "related": "https://reactor.adobe.io/properties/PR2b62a386bafa4e8ba1c2fba67e775089/extensions"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR0d6d8e0536194082bfd5dc13e38522d9/rules"
+ "related": "https://reactor.adobe.io/properties/PR2b62a386bafa4e8ba1c2fba67e775089/rules"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR0d6d8e0536194082bfd5dc13e38522d9/notes"
+ "related": "https://reactor.adobe.io/properties/PR2b62a386bafa4e8ba1c2fba67e775089/notes"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "data_elements": "https://reactor.adobe.io/properties/PR0d6d8e0536194082bfd5dc13e38522d9/data_elements",
- "environments": "https://reactor.adobe.io/properties/PR0d6d8e0536194082bfd5dc13e38522d9/environments",
- "extensions": "https://reactor.adobe.io/properties/PR0d6d8e0536194082bfd5dc13e38522d9/extensions",
- "rules": "https://reactor.adobe.io/properties/PR0d6d8e0536194082bfd5dc13e38522d9/rules",
- "self": "https://reactor.adobe.io/properties/PR0d6d8e0536194082bfd5dc13e38522d9"
+ "data_elements": "https://reactor.adobe.io/properties/PR2b62a386bafa4e8ba1c2fba67e775089/data_elements",
+ "environments": "https://reactor.adobe.io/properties/PR2b62a386bafa4e8ba1c2fba67e775089/environments",
+ "extensions": "https://reactor.adobe.io/properties/PR2b62a386bafa4e8ba1c2fba67e775089/extensions",
+ "rules": "https://reactor.adobe.io/properties/PR2b62a386bafa4e8ba1c2fba67e775089/rules",
+ "self": "https://reactor.adobe.io/properties/PR2b62a386bafa4e8ba1c2fba67e775089"
},
"meta": {
"rights": [
@@ -31240,16 +31456,16 @@
"request": null,
"response": {
"data": {
- "id": "PR6139fd172d274f81b66f44bae9659c3a",
+ "id": "PRab9283861fe0467591fbbaba67689f18",
"type": "properties",
"attributes": {
- "created_at": "2023-01-30T20:58:48.910Z",
+ "created_at": "2023-04-21T23:04:32.639Z",
"enabled": true,
"name": "Kessel Example Property",
- "updated_at": "2023-01-30T20:58:48.910Z",
+ "updated_at": "2023-04-21T23:04:32.639Z",
"platform": "web",
"development": false,
- "token": "1aaf1d5ba56e",
+ "token": "a33e0a8e6630",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -31263,7 +31479,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR6139fd172d274f81b66f44bae9659c3a/company"
+ "related": "https://reactor.adobe.io/properties/PRab9283861fe0467591fbbaba67689f18/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -31272,52 +31488,52 @@
},
"callbacks": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR6139fd172d274f81b66f44bae9659c3a/callbacks"
+ "related": "https://reactor.adobe.io/properties/PRab9283861fe0467591fbbaba67689f18/callbacks"
}
},
"hosts": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR6139fd172d274f81b66f44bae9659c3a/hosts"
+ "related": "https://reactor.adobe.io/properties/PRab9283861fe0467591fbbaba67689f18/hosts"
}
},
"environments": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR6139fd172d274f81b66f44bae9659c3a/environments"
+ "related": "https://reactor.adobe.io/properties/PRab9283861fe0467591fbbaba67689f18/environments"
}
},
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR6139fd172d274f81b66f44bae9659c3a/libraries"
+ "related": "https://reactor.adobe.io/properties/PRab9283861fe0467591fbbaba67689f18/libraries"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR6139fd172d274f81b66f44bae9659c3a/data_elements"
+ "related": "https://reactor.adobe.io/properties/PRab9283861fe0467591fbbaba67689f18/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR6139fd172d274f81b66f44bae9659c3a/extensions"
+ "related": "https://reactor.adobe.io/properties/PRab9283861fe0467591fbbaba67689f18/extensions"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR6139fd172d274f81b66f44bae9659c3a/rules"
+ "related": "https://reactor.adobe.io/properties/PRab9283861fe0467591fbbaba67689f18/rules"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR6139fd172d274f81b66f44bae9659c3a/notes"
+ "related": "https://reactor.adobe.io/properties/PRab9283861fe0467591fbbaba67689f18/notes"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "data_elements": "https://reactor.adobe.io/properties/PR6139fd172d274f81b66f44bae9659c3a/data_elements",
- "environments": "https://reactor.adobe.io/properties/PR6139fd172d274f81b66f44bae9659c3a/environments",
- "extensions": "https://reactor.adobe.io/properties/PR6139fd172d274f81b66f44bae9659c3a/extensions",
- "rules": "https://reactor.adobe.io/properties/PR6139fd172d274f81b66f44bae9659c3a/rules",
- "self": "https://reactor.adobe.io/properties/PR6139fd172d274f81b66f44bae9659c3a"
+ "data_elements": "https://reactor.adobe.io/properties/PRab9283861fe0467591fbbaba67689f18/data_elements",
+ "environments": "https://reactor.adobe.io/properties/PRab9283861fe0467591fbbaba67689f18/environments",
+ "extensions": "https://reactor.adobe.io/properties/PRab9283861fe0467591fbbaba67689f18/extensions",
+ "rules": "https://reactor.adobe.io/properties/PRab9283861fe0467591fbbaba67689f18/rules",
+ "self": "https://reactor.adobe.io/properties/PRab9283861fe0467591fbbaba67689f18"
},
"meta": {
"rights": [
@@ -31342,16 +31558,16 @@
"request": null,
"response": {
"data": {
- "id": "PRce99a893b84243ebaf769a35bee0399b",
+ "id": "PRa64e0a00be0a4a4b9eb84231dcbffe51",
"type": "properties",
"attributes": {
- "created_at": "2023-01-30T20:58:54.482Z",
+ "created_at": "2023-04-21T23:04:38.165Z",
"enabled": true,
"name": "Kessel Example Property",
- "updated_at": "2023-01-30T20:58:54.482Z",
+ "updated_at": "2023-04-21T23:04:38.165Z",
"platform": "web",
"development": false,
- "token": "29b66b2bac64",
+ "token": "d2010ec294e7",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -31365,7 +31581,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRce99a893b84243ebaf769a35bee0399b/company"
+ "related": "https://reactor.adobe.io/properties/PRa64e0a00be0a4a4b9eb84231dcbffe51/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -31374,52 +31590,52 @@
},
"callbacks": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRce99a893b84243ebaf769a35bee0399b/callbacks"
+ "related": "https://reactor.adobe.io/properties/PRa64e0a00be0a4a4b9eb84231dcbffe51/callbacks"
}
},
"hosts": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRce99a893b84243ebaf769a35bee0399b/hosts"
+ "related": "https://reactor.adobe.io/properties/PRa64e0a00be0a4a4b9eb84231dcbffe51/hosts"
}
},
"environments": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRce99a893b84243ebaf769a35bee0399b/environments"
+ "related": "https://reactor.adobe.io/properties/PRa64e0a00be0a4a4b9eb84231dcbffe51/environments"
}
},
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRce99a893b84243ebaf769a35bee0399b/libraries"
+ "related": "https://reactor.adobe.io/properties/PRa64e0a00be0a4a4b9eb84231dcbffe51/libraries"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRce99a893b84243ebaf769a35bee0399b/data_elements"
+ "related": "https://reactor.adobe.io/properties/PRa64e0a00be0a4a4b9eb84231dcbffe51/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRce99a893b84243ebaf769a35bee0399b/extensions"
+ "related": "https://reactor.adobe.io/properties/PRa64e0a00be0a4a4b9eb84231dcbffe51/extensions"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRce99a893b84243ebaf769a35bee0399b/rules"
+ "related": "https://reactor.adobe.io/properties/PRa64e0a00be0a4a4b9eb84231dcbffe51/rules"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRce99a893b84243ebaf769a35bee0399b/notes"
+ "related": "https://reactor.adobe.io/properties/PRa64e0a00be0a4a4b9eb84231dcbffe51/notes"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "data_elements": "https://reactor.adobe.io/properties/PRce99a893b84243ebaf769a35bee0399b/data_elements",
- "environments": "https://reactor.adobe.io/properties/PRce99a893b84243ebaf769a35bee0399b/environments",
- "extensions": "https://reactor.adobe.io/properties/PRce99a893b84243ebaf769a35bee0399b/extensions",
- "rules": "https://reactor.adobe.io/properties/PRce99a893b84243ebaf769a35bee0399b/rules",
- "self": "https://reactor.adobe.io/properties/PRce99a893b84243ebaf769a35bee0399b"
+ "data_elements": "https://reactor.adobe.io/properties/PRa64e0a00be0a4a4b9eb84231dcbffe51/data_elements",
+ "environments": "https://reactor.adobe.io/properties/PRa64e0a00be0a4a4b9eb84231dcbffe51/environments",
+ "extensions": "https://reactor.adobe.io/properties/PRa64e0a00be0a4a4b9eb84231dcbffe51/extensions",
+ "rules": "https://reactor.adobe.io/properties/PRa64e0a00be0a4a4b9eb84231dcbffe51/rules",
+ "self": "https://reactor.adobe.io/properties/PRa64e0a00be0a4a4b9eb84231dcbffe51"
},
"meta": {
"rights": [
@@ -31444,16 +31660,16 @@
"request": null,
"response": {
"data": {
- "id": "PR5eec802daac347869b6efefe40414830",
+ "id": "PRfe7df24984834719977728ca672f58b5",
"type": "properties",
"attributes": {
- "created_at": "2023-01-30T20:59:00.160Z",
+ "created_at": "2023-04-21T23:04:43.871Z",
"enabled": true,
"name": "Kessel Example Property",
- "updated_at": "2023-01-30T20:59:00.160Z",
+ "updated_at": "2023-04-21T23:04:43.871Z",
"platform": "web",
"development": false,
- "token": "c8d969f1fa4b",
+ "token": "af2d63274257",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -31467,7 +31683,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR5eec802daac347869b6efefe40414830/company"
+ "related": "https://reactor.adobe.io/properties/PRfe7df24984834719977728ca672f58b5/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -31476,52 +31692,52 @@
},
"callbacks": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR5eec802daac347869b6efefe40414830/callbacks"
+ "related": "https://reactor.adobe.io/properties/PRfe7df24984834719977728ca672f58b5/callbacks"
}
},
"hosts": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR5eec802daac347869b6efefe40414830/hosts"
+ "related": "https://reactor.adobe.io/properties/PRfe7df24984834719977728ca672f58b5/hosts"
}
},
"environments": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR5eec802daac347869b6efefe40414830/environments"
+ "related": "https://reactor.adobe.io/properties/PRfe7df24984834719977728ca672f58b5/environments"
}
},
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR5eec802daac347869b6efefe40414830/libraries"
+ "related": "https://reactor.adobe.io/properties/PRfe7df24984834719977728ca672f58b5/libraries"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR5eec802daac347869b6efefe40414830/data_elements"
+ "related": "https://reactor.adobe.io/properties/PRfe7df24984834719977728ca672f58b5/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR5eec802daac347869b6efefe40414830/extensions"
+ "related": "https://reactor.adobe.io/properties/PRfe7df24984834719977728ca672f58b5/extensions"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR5eec802daac347869b6efefe40414830/rules"
+ "related": "https://reactor.adobe.io/properties/PRfe7df24984834719977728ca672f58b5/rules"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR5eec802daac347869b6efefe40414830/notes"
+ "related": "https://reactor.adobe.io/properties/PRfe7df24984834719977728ca672f58b5/notes"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "data_elements": "https://reactor.adobe.io/properties/PR5eec802daac347869b6efefe40414830/data_elements",
- "environments": "https://reactor.adobe.io/properties/PR5eec802daac347869b6efefe40414830/environments",
- "extensions": "https://reactor.adobe.io/properties/PR5eec802daac347869b6efefe40414830/extensions",
- "rules": "https://reactor.adobe.io/properties/PR5eec802daac347869b6efefe40414830/rules",
- "self": "https://reactor.adobe.io/properties/PR5eec802daac347869b6efefe40414830"
+ "data_elements": "https://reactor.adobe.io/properties/PRfe7df24984834719977728ca672f58b5/data_elements",
+ "environments": "https://reactor.adobe.io/properties/PRfe7df24984834719977728ca672f58b5/environments",
+ "extensions": "https://reactor.adobe.io/properties/PRfe7df24984834719977728ca672f58b5/extensions",
+ "rules": "https://reactor.adobe.io/properties/PRfe7df24984834719977728ca672f58b5/rules",
+ "self": "https://reactor.adobe.io/properties/PRfe7df24984834719977728ca672f58b5"
},
"meta": {
"rights": [
@@ -31546,16 +31762,16 @@
"request": null,
"response": {
"data": {
- "id": "PRb1f5b9f798f14b82937f625133059d3a",
+ "id": "PR68ce757d21e94d3d990a678431fc9380",
"type": "properties",
"attributes": {
- "created_at": "2023-01-30T20:59:05.596Z",
+ "created_at": "2023-04-21T23:04:49.329Z",
"enabled": true,
"name": "Kessel Edge Example Property",
- "updated_at": "2023-01-30T20:59:05.596Z",
+ "updated_at": "2023-04-21T23:04:49.329Z",
"platform": "edge",
"development": false,
- "token": "6fb344ad2adb",
+ "token": "768728252e8a",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -31564,7 +31780,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRb1f5b9f798f14b82937f625133059d3a/company"
+ "related": "https://reactor.adobe.io/properties/PR68ce757d21e94d3d990a678431fc9380/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -31573,52 +31789,52 @@
},
"callbacks": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRb1f5b9f798f14b82937f625133059d3a/callbacks"
+ "related": "https://reactor.adobe.io/properties/PR68ce757d21e94d3d990a678431fc9380/callbacks"
}
},
"hosts": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRb1f5b9f798f14b82937f625133059d3a/hosts"
+ "related": "https://reactor.adobe.io/properties/PR68ce757d21e94d3d990a678431fc9380/hosts"
}
},
"environments": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRb1f5b9f798f14b82937f625133059d3a/environments"
+ "related": "https://reactor.adobe.io/properties/PR68ce757d21e94d3d990a678431fc9380/environments"
}
},
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRb1f5b9f798f14b82937f625133059d3a/libraries"
+ "related": "https://reactor.adobe.io/properties/PR68ce757d21e94d3d990a678431fc9380/libraries"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRb1f5b9f798f14b82937f625133059d3a/data_elements"
+ "related": "https://reactor.adobe.io/properties/PR68ce757d21e94d3d990a678431fc9380/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRb1f5b9f798f14b82937f625133059d3a/extensions"
+ "related": "https://reactor.adobe.io/properties/PR68ce757d21e94d3d990a678431fc9380/extensions"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRb1f5b9f798f14b82937f625133059d3a/rules"
+ "related": "https://reactor.adobe.io/properties/PR68ce757d21e94d3d990a678431fc9380/rules"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRb1f5b9f798f14b82937f625133059d3a/notes"
+ "related": "https://reactor.adobe.io/properties/PR68ce757d21e94d3d990a678431fc9380/notes"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "data_elements": "https://reactor.adobe.io/properties/PRb1f5b9f798f14b82937f625133059d3a/data_elements",
- "environments": "https://reactor.adobe.io/properties/PRb1f5b9f798f14b82937f625133059d3a/environments",
- "extensions": "https://reactor.adobe.io/properties/PRb1f5b9f798f14b82937f625133059d3a/extensions",
- "rules": "https://reactor.adobe.io/properties/PRb1f5b9f798f14b82937f625133059d3a/rules",
- "self": "https://reactor.adobe.io/properties/PRb1f5b9f798f14b82937f625133059d3a"
+ "data_elements": "https://reactor.adobe.io/properties/PR68ce757d21e94d3d990a678431fc9380/data_elements",
+ "environments": "https://reactor.adobe.io/properties/PR68ce757d21e94d3d990a678431fc9380/environments",
+ "extensions": "https://reactor.adobe.io/properties/PR68ce757d21e94d3d990a678431fc9380/extensions",
+ "rules": "https://reactor.adobe.io/properties/PR68ce757d21e94d3d990a678431fc9380/rules",
+ "self": "https://reactor.adobe.io/properties/PR68ce757d21e94d3d990a678431fc9380"
},
"meta": {
"rights": [
@@ -31651,28 +31867,28 @@
},
"response": {
"data": {
- "id": "NT849ae8ebc3fc423085f5265980cde29c",
+ "id": "NTe313248de48647bb81216596d8dc435b",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:59:17.260Z",
+ "created_at": "2023-04-21T23:05:00.360Z",
"text": "this note on a property intentionally left blank"
},
"relationships": {
"resource": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR1bfabfd717e54072a90c86e9423178d8"
+ "related": "https://reactor.adobe.io/properties/PRb6730fa2e92e48779e0bacf86e3d696e"
},
"data": {
- "id": "PR1bfabfd717e54072a90c86e9423178d8",
+ "id": "PRb6730fa2e92e48779e0bacf86e3d696e",
"type": "properties"
}
}
},
"links": {
- "resource": "https://reactor.adobe.io/properties/PR1bfabfd717e54072a90c86e9423178d8",
- "self": "https://reactor.adobe.io/notes/NT849ae8ebc3fc423085f5265980cde29c"
+ "resource": "https://reactor.adobe.io/properties/PRb6730fa2e92e48779e0bacf86e3d696e",
+ "self": "https://reactor.adobe.io/notes/NTe313248de48647bb81216596d8dc435b"
}
}
},
@@ -31688,28 +31904,28 @@
"response": {
"data": [
{
- "id": "NT5f64b6e02c794afa879591bfa17b6982",
+ "id": "NT9abb545672764b1fb9f951c63b28ca88",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T20:59:22.898Z",
+ "created_at": "2023-04-21T23:05:05.813Z",
"text": "this is a note on a property"
},
"relationships": {
"resource": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRcbb4608e65bb496fb03753d42825c36b"
+ "related": "https://reactor.adobe.io/properties/PRb2a495b17c394fcea754429ab117f149"
},
"data": {
- "id": "PRcbb4608e65bb496fb03753d42825c36b",
+ "id": "PRb2a495b17c394fcea754429ab117f149",
"type": "properties"
}
}
},
"links": {
- "resource": "https://reactor.adobe.io/properties/PRcbb4608e65bb496fb03753d42825c36b",
- "self": "https://reactor.adobe.io/notes/NT5f64b6e02c794afa879591bfa17b6982"
+ "resource": "https://reactor.adobe.io/properties/PRb2a495b17c394fcea754429ab117f149",
+ "self": "https://reactor.adobe.io/notes/NT9abb545672764b1fb9f951c63b28ca88"
}
}
],
@@ -31741,14 +31957,14 @@
"relationships": {
"extension": {
"data": {
- "id": "EX89994139784b4edd89611d36532ee686",
+ "id": "EX976b176f32824f1a9452052d1616d68f",
"type": "extensions"
}
},
"rules": {
"data": [
{
- "id": "RL007ca99261264786a6389026d084a9f0",
+ "id": "RLc16b6dc829df4078b8763b76668b9b63",
"type": "rules"
}
]
@@ -31759,10 +31975,10 @@
},
"response": {
"data": {
- "id": "RC0f7b1387223f4da385c6bbb3f05da67c",
+ "id": "RC806c58a439984e8a9b830983820773bd",
"type": "rule_components",
"attributes": {
- "created_at": "2023-01-30T20:59:29.168Z",
+ "created_at": "2023-04-21T23:05:11.735Z",
"delegate_descriptor_id": "kessel-test::events::click",
"deleted_at": null,
"dirty": true,
@@ -31775,7 +31991,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:59:29.168Z",
+ "updated_at": "2023-04-21T23:05:11.735Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -31785,7 +32001,7 @@
"relationships": {
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RC0f7b1387223f4da385c6bbb3f05da67c/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/rule_components/RC806c58a439984e8a9b830983820773bd/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -31794,56 +32010,56 @@
},
"updated_with_extension": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RC0f7b1387223f4da385c6bbb3f05da67c/updated_with_extension"
+ "related": "https://reactor.adobe.io/rule_components/RC806c58a439984e8a9b830983820773bd/updated_with_extension"
},
"data": {
- "id": "EX995e087ed6974c6d95e202a6129ac93a",
+ "id": "EXc8dea25c848c44c896b6cf07455c289f",
"type": "extensions"
}
},
"extension": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RC0f7b1387223f4da385c6bbb3f05da67c/extension"
+ "related": "https://reactor.adobe.io/rule_components/RC806c58a439984e8a9b830983820773bd/extension"
},
"data": {
- "id": "EX89994139784b4edd89611d36532ee686",
+ "id": "EX976b176f32824f1a9452052d1616d68f",
"type": "extensions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RC0f7b1387223f4da385c6bbb3f05da67c/notes"
+ "related": "https://reactor.adobe.io/rule_components/RC806c58a439984e8a9b830983820773bd/notes"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RC0f7b1387223f4da385c6bbb3f05da67c/origin"
+ "related": "https://reactor.adobe.io/rule_components/RC806c58a439984e8a9b830983820773bd/origin"
},
"data": {
- "id": "RC0f7b1387223f4da385c6bbb3f05da67c",
+ "id": "RC806c58a439984e8a9b830983820773bd",
"type": "rule_components"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR1c1dd9d8faec4a46aaaa68a404f5afbc"
+ "related": "https://reactor.adobe.io/properties/PR7f891ef3dc7b4993bcbb5ebe130545cd"
},
"data": {
- "id": "PR1c1dd9d8faec4a46aaaa68a404f5afbc",
+ "id": "PR7f891ef3dc7b4993bcbb5ebe130545cd",
"type": "properties"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RC0f7b1387223f4da385c6bbb3f05da67c/rules"
+ "related": "https://reactor.adobe.io/rule_components/RC806c58a439984e8a9b830983820773bd/rules"
}
}
},
"links": {
- "extension": "https://reactor.adobe.io/extensions/EX89994139784b4edd89611d36532ee686",
- "origin": "https://reactor.adobe.io/rule_components/RC0f7b1387223f4da385c6bbb3f05da67c",
- "rules": "https://reactor.adobe.io/rule_components/RC0f7b1387223f4da385c6bbb3f05da67c/rules",
- "self": "https://reactor.adobe.io/rule_components/RC0f7b1387223f4da385c6bbb3f05da67c"
+ "extension": "https://reactor.adobe.io/extensions/EX976b176f32824f1a9452052d1616d68f",
+ "origin": "https://reactor.adobe.io/rule_components/RC806c58a439984e8a9b830983820773bd",
+ "rules": "https://reactor.adobe.io/rule_components/RC806c58a439984e8a9b830983820773bd/rules",
+ "self": "https://reactor.adobe.io/rule_components/RC806c58a439984e8a9b830983820773bd"
},
"meta": {
"latest_revision_number": 0
@@ -31861,10 +32077,10 @@
"request": null,
"response": {
"data": {
- "id": "RCc7f0a7feab3b4a81969075ba01b91d1c",
+ "id": "RC58d2850883d94b23abf625d387eabaaf",
"type": "rule_components",
"attributes": {
- "created_at": "2023-01-30T20:59:35.135Z",
+ "created_at": "2023-04-21T23:05:17.740Z",
"delegate_descriptor_id": "kessel-test::events::click",
"deleted_at": null,
"dirty": true,
@@ -31877,7 +32093,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:59:35.135Z",
+ "updated_at": "2023-04-21T23:05:17.740Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -31887,7 +32103,7 @@
"relationships": {
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RCc7f0a7feab3b4a81969075ba01b91d1c/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/rule_components/RC58d2850883d94b23abf625d387eabaaf/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -31896,56 +32112,56 @@
},
"updated_with_extension": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RCc7f0a7feab3b4a81969075ba01b91d1c/updated_with_extension"
+ "related": "https://reactor.adobe.io/rule_components/RC58d2850883d94b23abf625d387eabaaf/updated_with_extension"
},
"data": {
- "id": "EX8cf4e8ce69f5453fa56f7013c9b1f004",
+ "id": "EX0a51fe513f7f4b7ca4635855f8c577ff",
"type": "extensions"
}
},
"extension": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RCc7f0a7feab3b4a81969075ba01b91d1c/extension"
+ "related": "https://reactor.adobe.io/rule_components/RC58d2850883d94b23abf625d387eabaaf/extension"
},
"data": {
- "id": "EX91862c487df14388b83fb300dc590019",
+ "id": "EXff2b34e341334637808e877be5daa956",
"type": "extensions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RCc7f0a7feab3b4a81969075ba01b91d1c/notes"
+ "related": "https://reactor.adobe.io/rule_components/RC58d2850883d94b23abf625d387eabaaf/notes"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RCc7f0a7feab3b4a81969075ba01b91d1c/origin"
+ "related": "https://reactor.adobe.io/rule_components/RC58d2850883d94b23abf625d387eabaaf/origin"
},
"data": {
- "id": "RCc7f0a7feab3b4a81969075ba01b91d1c",
+ "id": "RC58d2850883d94b23abf625d387eabaaf",
"type": "rule_components"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRe2b79e3412cb493c92e0e687aba82b1f"
+ "related": "https://reactor.adobe.io/properties/PR3586f757790d493cad8ab5f8effba73d"
},
"data": {
- "id": "PRe2b79e3412cb493c92e0e687aba82b1f",
+ "id": "PR3586f757790d493cad8ab5f8effba73d",
"type": "properties"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RCc7f0a7feab3b4a81969075ba01b91d1c/rules"
+ "related": "https://reactor.adobe.io/rule_components/RC58d2850883d94b23abf625d387eabaaf/rules"
}
}
},
"links": {
- "extension": "https://reactor.adobe.io/extensions/EX91862c487df14388b83fb300dc590019",
- "origin": "https://reactor.adobe.io/rule_components/RCc7f0a7feab3b4a81969075ba01b91d1c",
- "rules": "https://reactor.adobe.io/rule_components/RCc7f0a7feab3b4a81969075ba01b91d1c/rules",
- "self": "https://reactor.adobe.io/rule_components/RCc7f0a7feab3b4a81969075ba01b91d1c"
+ "extension": "https://reactor.adobe.io/extensions/EXff2b34e341334637808e877be5daa956",
+ "origin": "https://reactor.adobe.io/rule_components/RC58d2850883d94b23abf625d387eabaaf",
+ "rules": "https://reactor.adobe.io/rule_components/RC58d2850883d94b23abf625d387eabaaf/rules",
+ "self": "https://reactor.adobe.io/rule_components/RC58d2850883d94b23abf625d387eabaaf"
},
"meta": {
"latest_revision_number": 0
@@ -31964,10 +32180,10 @@
"response": {
"data": [
{
- "id": "RCc72a3c864daa4460ba77b18fd6bd813c",
+ "id": "RC17907dbf9c3249d2b8e577a0d7b73933",
"type": "rule_components",
"attributes": {
- "created_at": "2023-01-30T20:59:41.018Z",
+ "created_at": "2023-04-21T23:05:23.727Z",
"delegate_descriptor_id": "kessel-test::events::click",
"deleted_at": null,
"dirty": true,
@@ -31980,7 +32196,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:59:41.018Z",
+ "updated_at": "2023-04-21T23:05:23.727Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -31990,7 +32206,7 @@
"relationships": {
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RCc72a3c864daa4460ba77b18fd6bd813c/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/rule_components/RC17907dbf9c3249d2b8e577a0d7b73933/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -31999,56 +32215,56 @@
},
"updated_with_extension": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RCc72a3c864daa4460ba77b18fd6bd813c/updated_with_extension"
+ "related": "https://reactor.adobe.io/rule_components/RC17907dbf9c3249d2b8e577a0d7b73933/updated_with_extension"
},
"data": {
- "id": "EXb911acfab3514f9a8541d09d5aee0eb3",
+ "id": "EXb5c71552828f4fcbb722f1ea8d1a91a1",
"type": "extensions"
}
},
"extension": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RCc72a3c864daa4460ba77b18fd6bd813c/extension"
+ "related": "https://reactor.adobe.io/rule_components/RC17907dbf9c3249d2b8e577a0d7b73933/extension"
},
"data": {
- "id": "EX43cea8432f3e4ecc9cfb99d3e61c94f5",
+ "id": "EXa53636392a424904ba7599e7077a8c8c",
"type": "extensions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RCc72a3c864daa4460ba77b18fd6bd813c/notes"
+ "related": "https://reactor.adobe.io/rule_components/RC17907dbf9c3249d2b8e577a0d7b73933/notes"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RCc72a3c864daa4460ba77b18fd6bd813c/origin"
+ "related": "https://reactor.adobe.io/rule_components/RC17907dbf9c3249d2b8e577a0d7b73933/origin"
},
"data": {
- "id": "RCc72a3c864daa4460ba77b18fd6bd813c",
+ "id": "RC17907dbf9c3249d2b8e577a0d7b73933",
"type": "rule_components"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRa5b3b7f318c6413799f647689800228f"
+ "related": "https://reactor.adobe.io/properties/PRfc70e363c61c4756a9a69b729c2ed596"
},
"data": {
- "id": "PRa5b3b7f318c6413799f647689800228f",
+ "id": "PRfc70e363c61c4756a9a69b729c2ed596",
"type": "properties"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RCc72a3c864daa4460ba77b18fd6bd813c/rules"
+ "related": "https://reactor.adobe.io/rule_components/RC17907dbf9c3249d2b8e577a0d7b73933/rules"
}
}
},
"links": {
- "extension": "https://reactor.adobe.io/extensions/EX43cea8432f3e4ecc9cfb99d3e61c94f5",
- "origin": "https://reactor.adobe.io/rule_components/RCc72a3c864daa4460ba77b18fd6bd813c",
- "rules": "https://reactor.adobe.io/rule_components/RCc72a3c864daa4460ba77b18fd6bd813c/rules",
- "self": "https://reactor.adobe.io/rule_components/RCc72a3c864daa4460ba77b18fd6bd813c"
+ "extension": "https://reactor.adobe.io/extensions/EXa53636392a424904ba7599e7077a8c8c",
+ "origin": "https://reactor.adobe.io/rule_components/RC17907dbf9c3249d2b8e577a0d7b73933",
+ "rules": "https://reactor.adobe.io/rule_components/RC17907dbf9c3249d2b8e577a0d7b73933/rules",
+ "self": "https://reactor.adobe.io/rule_components/RC17907dbf9c3249d2b8e577a0d7b73933"
},
"meta": {
"latest_revision_number": 0
@@ -32080,15 +32296,15 @@
"settings": "{\"elementSelector\":\".accordion\",\"bubbleFireIfChildFired\":false}"
},
"type": "rule_components",
- "id": "RC73da22dd09374ec7bbb78c2741d3c1a1"
+ "id": "RC64092843a1d94ad3958f603bc69242ea"
}
},
"response": {
"data": {
- "id": "RC73da22dd09374ec7bbb78c2741d3c1a1",
+ "id": "RC64092843a1d94ad3958f603bc69242ea",
"type": "rule_components",
"attributes": {
- "created_at": "2023-01-30T20:59:46.808Z",
+ "created_at": "2023-04-21T23:05:29.804Z",
"delegate_descriptor_id": "kessel-test::events::click",
"deleted_at": null,
"dirty": true,
@@ -32101,7 +32317,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:59:46.926Z",
+ "updated_at": "2023-04-21T23:05:29.895Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -32111,7 +32327,7 @@
"relationships": {
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RC73da22dd09374ec7bbb78c2741d3c1a1/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/rule_components/RC64092843a1d94ad3958f603bc69242ea/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -32120,56 +32336,56 @@
},
"updated_with_extension": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RC73da22dd09374ec7bbb78c2741d3c1a1/updated_with_extension"
+ "related": "https://reactor.adobe.io/rule_components/RC64092843a1d94ad3958f603bc69242ea/updated_with_extension"
},
"data": {
- "id": "EX379bd9f305aa4eb2a33391e157e6ef95",
+ "id": "EX3fe6bb6b5a6741a6b2c104043cc9bc6b",
"type": "extensions"
}
},
"extension": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RC73da22dd09374ec7bbb78c2741d3c1a1/extension"
+ "related": "https://reactor.adobe.io/rule_components/RC64092843a1d94ad3958f603bc69242ea/extension"
},
"data": {
- "id": "EX4133f1bd0860469980fae0112a147dda",
+ "id": "EX210b6745a3504f9e9e645f7e217926b4",
"type": "extensions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RC73da22dd09374ec7bbb78c2741d3c1a1/notes"
+ "related": "https://reactor.adobe.io/rule_components/RC64092843a1d94ad3958f603bc69242ea/notes"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RC73da22dd09374ec7bbb78c2741d3c1a1/origin"
+ "related": "https://reactor.adobe.io/rule_components/RC64092843a1d94ad3958f603bc69242ea/origin"
},
"data": {
- "id": "RC73da22dd09374ec7bbb78c2741d3c1a1",
+ "id": "RC64092843a1d94ad3958f603bc69242ea",
"type": "rule_components"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRbee13cfefb20405f9224421aabe2936e"
+ "related": "https://reactor.adobe.io/properties/PR90368dd7c53748e8806922bcf599aad6"
},
"data": {
- "id": "PRbee13cfefb20405f9224421aabe2936e",
+ "id": "PR90368dd7c53748e8806922bcf599aad6",
"type": "properties"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RC73da22dd09374ec7bbb78c2741d3c1a1/rules"
+ "related": "https://reactor.adobe.io/rule_components/RC64092843a1d94ad3958f603bc69242ea/rules"
}
}
},
"links": {
- "extension": "https://reactor.adobe.io/extensions/EX4133f1bd0860469980fae0112a147dda",
- "origin": "https://reactor.adobe.io/rule_components/RC73da22dd09374ec7bbb78c2741d3c1a1",
- "rules": "https://reactor.adobe.io/rule_components/RC73da22dd09374ec7bbb78c2741d3c1a1/rules",
- "self": "https://reactor.adobe.io/rule_components/RC73da22dd09374ec7bbb78c2741d3c1a1"
+ "extension": "https://reactor.adobe.io/extensions/EX210b6745a3504f9e9e645f7e217926b4",
+ "origin": "https://reactor.adobe.io/rule_components/RC64092843a1d94ad3958f603bc69242ea",
+ "rules": "https://reactor.adobe.io/rule_components/RC64092843a1d94ad3958f603bc69242ea/rules",
+ "self": "https://reactor.adobe.io/rule_components/RC64092843a1d94ad3958f603bc69242ea"
},
"meta": {
"latest_revision_number": 0
@@ -32197,10 +32413,10 @@
"request": null,
"response": {
"data": {
- "id": "EX33c44baecc2e412cbe2f417efa89444b",
+ "id": "EX6c0c447e81244149a1afb23f15d51db0",
"type": "extensions",
"attributes": {
- "created_at": "2023-01-30T20:59:58.388Z",
+ "created_at": "2023-04-21T23:05:41.973Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -32208,7 +32424,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T20:59:58.388Z",
+ "updated_at": "2023-04-21T23:05:41.973Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -32222,40 +32438,40 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX33c44baecc2e412cbe2f417efa89444b/libraries"
+ "related": "https://reactor.adobe.io/extensions/EX6c0c447e81244149a1afb23f15d51db0/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX33c44baecc2e412cbe2f417efa89444b/revisions"
+ "related": "https://reactor.adobe.io/extensions/EX6c0c447e81244149a1afb23f15d51db0/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX33c44baecc2e412cbe2f417efa89444b/notes"
+ "related": "https://reactor.adobe.io/extensions/EX6c0c447e81244149a1afb23f15d51db0/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX33c44baecc2e412cbe2f417efa89444b/property"
+ "related": "https://reactor.adobe.io/extensions/EX6c0c447e81244149a1afb23f15d51db0/property"
},
"data": {
- "id": "PRbbe7f9fb7fc648f88881bc51fcf9bd5b",
+ "id": "PR3066ce817b78487885440288b63ee5dd",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX33c44baecc2e412cbe2f417efa89444b/origin"
+ "related": "https://reactor.adobe.io/extensions/EX6c0c447e81244149a1afb23f15d51db0/origin"
},
"data": {
- "id": "EX33c44baecc2e412cbe2f417efa89444b",
+ "id": "EX6c0c447e81244149a1afb23f15d51db0",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX33c44baecc2e412cbe2f417efa89444b/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX6c0c447e81244149a1afb23f15d51db0/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -32264,7 +32480,7 @@
},
"extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EX33c44baecc2e412cbe2f417efa89444b/extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX6c0c447e81244149a1afb23f15d51db0/extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -32273,9 +32489,9 @@
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRbbe7f9fb7fc648f88881bc51fcf9bd5b",
- "origin": "https://reactor.adobe.io/extensions/EX33c44baecc2e412cbe2f417efa89444b",
- "self": "https://reactor.adobe.io/extensions/EX33c44baecc2e412cbe2f417efa89444b",
+ "property": "https://reactor.adobe.io/properties/PR3066ce817b78487885440288b63ee5dd",
+ "origin": "https://reactor.adobe.io/extensions/EX6c0c447e81244149a1afb23f15d51db0",
+ "self": "https://reactor.adobe.io/extensions/EX6c0c447e81244149a1afb23f15d51db0",
"extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab",
"latest_extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab"
},
@@ -32295,10 +32511,10 @@
"request": null,
"response": {
"data": {
- "id": "RCedd770b25d8845788470ce053a1790ce",
+ "id": "RCad50f9ecc09348b895ccda570bac81c6",
"type": "rule_components",
"attributes": {
- "created_at": "2023-01-30T21:00:04.458Z",
+ "created_at": "2023-04-21T23:05:48.499Z",
"delegate_descriptor_id": "kessel-test::events::click",
"deleted_at": null,
"dirty": false,
@@ -32311,7 +32527,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T21:00:04.458Z",
+ "updated_at": "2023-04-21T23:05:48.499Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -32321,7 +32537,7 @@
"relationships": {
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RCedd770b25d8845788470ce053a1790ce/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/rule_components/RCad50f9ecc09348b895ccda570bac81c6/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -32330,56 +32546,56 @@
},
"updated_with_extension": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RCedd770b25d8845788470ce053a1790ce/updated_with_extension"
+ "related": "https://reactor.adobe.io/rule_components/RCad50f9ecc09348b895ccda570bac81c6/updated_with_extension"
},
"data": {
- "id": "EX1dfb255c345b495eb8d4f9736635b99e",
+ "id": "EXe3a6052f93b246f28fde6262ba5b5b2d",
"type": "extensions"
}
},
"extension": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RCedd770b25d8845788470ce053a1790ce/extension"
+ "related": "https://reactor.adobe.io/rule_components/RCad50f9ecc09348b895ccda570bac81c6/extension"
},
"data": {
- "id": "EX4ab75cd56ac4452a88c485c665ece3ed",
+ "id": "EX87e0ef6aadc9474087e562f444f220c9",
"type": "extensions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RCedd770b25d8845788470ce053a1790ce/notes"
+ "related": "https://reactor.adobe.io/rule_components/RCad50f9ecc09348b895ccda570bac81c6/notes"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RCedd770b25d8845788470ce053a1790ce/origin"
+ "related": "https://reactor.adobe.io/rule_components/RCad50f9ecc09348b895ccda570bac81c6/origin"
},
"data": {
- "id": "RCedd770b25d8845788470ce053a1790ce",
+ "id": "RCad50f9ecc09348b895ccda570bac81c6",
"type": "rule_components"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/properties/PR6b20f6bde4e94416b2a216ea3b2ceeb9"
+ "related": "https://reactor.adobe.io/properties/PR24e0cfcf4d074f42a5b234d7ff6d4d19"
},
"data": {
- "id": "PR6b20f6bde4e94416b2a216ea3b2ceeb9",
+ "id": "PR24e0cfcf4d074f42a5b234d7ff6d4d19",
"type": "properties"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RCedd770b25d8845788470ce053a1790ce/rules"
+ "related": "https://reactor.adobe.io/rule_components/RCad50f9ecc09348b895ccda570bac81c6/rules"
}
}
},
"links": {
- "extension": "https://reactor.adobe.io/extensions/EX4ab75cd56ac4452a88c485c665ece3ed",
- "origin": "https://reactor.adobe.io/rule_components/RCedd770b25d8845788470ce053a1790ce",
- "rules": "https://reactor.adobe.io/rule_components/RCedd770b25d8845788470ce053a1790ce/rules",
- "self": "https://reactor.adobe.io/rule_components/RCedd770b25d8845788470ce053a1790ce"
+ "extension": "https://reactor.adobe.io/extensions/EX87e0ef6aadc9474087e562f444f220c9",
+ "origin": "https://reactor.adobe.io/rule_components/RCad50f9ecc09348b895ccda570bac81c6",
+ "rules": "https://reactor.adobe.io/rule_components/RCad50f9ecc09348b895ccda570bac81c6/rules",
+ "self": "https://reactor.adobe.io/rule_components/RCad50f9ecc09348b895ccda570bac81c6"
},
"meta": {
"latest_revision_number": 1
@@ -32404,28 +32620,28 @@
},
"response": {
"data": {
- "id": "NTdba7d7945f0a41b9b722a25704d9d29c",
+ "id": "NTbbe334f779674dccba5e66552cd656db",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T21:00:10.611Z",
+ "created_at": "2023-04-21T23:05:55.334Z",
"text": "this note on a rule component intentionally left blank"
},
"relationships": {
"resource": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RC510620a0f6844a169cd24822d0c7c247"
+ "related": "https://reactor.adobe.io/rule_components/RCcf098c026afa4472b1b4199ec62ee63a"
},
"data": {
- "id": "RC510620a0f6844a169cd24822d0c7c247",
+ "id": "RCcf098c026afa4472b1b4199ec62ee63a",
"type": "rule_components"
}
}
},
"links": {
- "resource": "https://reactor.adobe.io/rule_components/RC510620a0f6844a169cd24822d0c7c247",
- "self": "https://reactor.adobe.io/notes/NTdba7d7945f0a41b9b722a25704d9d29c"
+ "resource": "https://reactor.adobe.io/rule_components/RCcf098c026afa4472b1b4199ec62ee63a",
+ "self": "https://reactor.adobe.io/notes/NTbbe334f779674dccba5e66552cd656db"
}
}
},
@@ -32441,28 +32657,28 @@
"response": {
"data": [
{
- "id": "NT6975df55962743aabe2f0f8f7f9cc196",
+ "id": "NT9e6f92ab2e034154a2e526e7ab84719c",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T21:00:16.342Z",
+ "created_at": "2023-04-21T23:06:01.389Z",
"text": "this is a note on a rule component"
},
"relationships": {
"resource": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RC6a47386f5aca4d9d893dc958fe33959c"
+ "related": "https://reactor.adobe.io/rule_components/RC63df1be232604fce9fb4e7aa7d03d3b4"
},
"data": {
- "id": "RC6a47386f5aca4d9d893dc958fe33959c",
+ "id": "RC63df1be232604fce9fb4e7aa7d03d3b4",
"type": "rule_components"
}
}
},
"links": {
- "resource": "https://reactor.adobe.io/rule_components/RC6a47386f5aca4d9d893dc958fe33959c",
- "self": "https://reactor.adobe.io/notes/NT6975df55962743aabe2f0f8f7f9cc196"
+ "resource": "https://reactor.adobe.io/rule_components/RC63df1be232604fce9fb4e7aa7d03d3b4",
+ "self": "https://reactor.adobe.io/notes/NT9e6f92ab2e034154a2e526e7ab84719c"
}
}
],
@@ -32487,10 +32703,10 @@
"request": null,
"response": {
"data": {
- "id": "EXde899eaf493e4c788187b9bf98f84bd8",
+ "id": "EX34d3f5fb95aa4944ba137569677caf0c",
"type": "extensions",
"attributes": {
- "created_at": "2023-01-30T21:00:21.902Z",
+ "created_at": "2023-04-21T23:06:07.144Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -32498,7 +32714,7 @@
"published": false,
"published_at": null,
"revision_number": 1,
- "updated_at": "2023-01-30T21:00:21.902Z",
+ "updated_at": "2023-04-21T23:06:07.144Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -32512,40 +32728,40 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXde899eaf493e4c788187b9bf98f84bd8/libraries"
+ "related": "https://reactor.adobe.io/extensions/EX34d3f5fb95aa4944ba137569677caf0c/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXde899eaf493e4c788187b9bf98f84bd8/revisions"
+ "related": "https://reactor.adobe.io/extensions/EX34d3f5fb95aa4944ba137569677caf0c/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXde899eaf493e4c788187b9bf98f84bd8/notes"
+ "related": "https://reactor.adobe.io/extensions/EX34d3f5fb95aa4944ba137569677caf0c/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXde899eaf493e4c788187b9bf98f84bd8/property"
+ "related": "https://reactor.adobe.io/extensions/EX34d3f5fb95aa4944ba137569677caf0c/property"
},
"data": {
- "id": "PR511d80e933a54e81b4022cf09b36f97b",
+ "id": "PRc0ef03ff773a41c288c88edecaf89783",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXde899eaf493e4c788187b9bf98f84bd8/origin"
+ "related": "https://reactor.adobe.io/extensions/EX34d3f5fb95aa4944ba137569677caf0c/origin"
},
"data": {
- "id": "EX65fcbcb7c45343b9934ce94853341314",
+ "id": "EX5a23922e1c3a4d32b6f389079fd47f06",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXde899eaf493e4c788187b9bf98f84bd8/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX34d3f5fb95aa4944ba137569677caf0c/updated_with_extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -32554,7 +32770,7 @@
},
"extension_package": {
"links": {
- "related": "https://reactor.adobe.io/extensions/EXde899eaf493e4c788187b9bf98f84bd8/extension_package"
+ "related": "https://reactor.adobe.io/extensions/EX34d3f5fb95aa4944ba137569677caf0c/extension_package"
},
"data": {
"id": "EP3e96b796382e49a48d76a626395d8cab",
@@ -32563,9 +32779,9 @@
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR511d80e933a54e81b4022cf09b36f97b",
- "origin": "https://reactor.adobe.io/extensions/EX65fcbcb7c45343b9934ce94853341314",
- "self": "https://reactor.adobe.io/extensions/EXde899eaf493e4c788187b9bf98f84bd8",
+ "property": "https://reactor.adobe.io/properties/PRc0ef03ff773a41c288c88edecaf89783",
+ "origin": "https://reactor.adobe.io/extensions/EX5a23922e1c3a4d32b6f389079fd47f06",
+ "self": "https://reactor.adobe.io/extensions/EX34d3f5fb95aa4944ba137569677caf0c",
"extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab",
"latest_extension_package": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab"
},
@@ -34999,10 +35215,10 @@
},
"response": {
"data": {
- "id": "RLd36829ba0e734855be692052f9d144e4",
+ "id": "RLef738e76c7224123b88d399d9a70c982",
"type": "rules",
"attributes": {
- "created_at": "2023-01-30T21:00:33.796Z",
+ "created_at": "2023-04-21T23:06:19.196Z",
"deleted_at": null,
"dirty": true,
"enabled": true,
@@ -35010,7 +35226,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T21:00:33.796Z",
+ "updated_at": "2023-04-21T23:06:19.196Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -35020,48 +35236,48 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLd36829ba0e734855be692052f9d144e4/libraries"
+ "related": "https://reactor.adobe.io/rules/RLef738e76c7224123b88d399d9a70c982/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLd36829ba0e734855be692052f9d144e4/revisions"
+ "related": "https://reactor.adobe.io/rules/RLef738e76c7224123b88d399d9a70c982/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLd36829ba0e734855be692052f9d144e4/notes"
+ "related": "https://reactor.adobe.io/rules/RLef738e76c7224123b88d399d9a70c982/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLd36829ba0e734855be692052f9d144e4/property"
+ "related": "https://reactor.adobe.io/rules/RLef738e76c7224123b88d399d9a70c982/property"
},
"data": {
- "id": "PR51eba4117e9c48b78c4e560107b6fc49",
+ "id": "PR5622a0bf80434b0885ed6224b4545f69",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLd36829ba0e734855be692052f9d144e4/origin"
+ "related": "https://reactor.adobe.io/rules/RLef738e76c7224123b88d399d9a70c982/origin"
},
"data": {
- "id": "RLd36829ba0e734855be692052f9d144e4",
+ "id": "RLef738e76c7224123b88d399d9a70c982",
"type": "rules"
}
},
"rule_components": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLd36829ba0e734855be692052f9d144e4/rule_components"
+ "related": "https://reactor.adobe.io/rules/RLef738e76c7224123b88d399d9a70c982/rule_components"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR51eba4117e9c48b78c4e560107b6fc49",
- "origin": "https://reactor.adobe.io/rules/RLd36829ba0e734855be692052f9d144e4",
- "self": "https://reactor.adobe.io/rules/RLd36829ba0e734855be692052f9d144e4",
- "rule_components": "https://reactor.adobe.io/rules/RLd36829ba0e734855be692052f9d144e4/rule_components"
+ "property": "https://reactor.adobe.io/properties/PR5622a0bf80434b0885ed6224b4545f69",
+ "origin": "https://reactor.adobe.io/rules/RLef738e76c7224123b88d399d9a70c982",
+ "self": "https://reactor.adobe.io/rules/RLef738e76c7224123b88d399d9a70c982",
+ "rule_components": "https://reactor.adobe.io/rules/RLef738e76c7224123b88d399d9a70c982/rule_components"
},
"meta": {
"latest_revision_number": 0
@@ -35079,10 +35295,10 @@
"request": null,
"response": {
"data": {
- "id": "RLa48836bb29284f83826c65a4d49d2670",
+ "id": "RL20d5849b1bb546d88ccb09e525593a17",
"type": "rules",
"attributes": {
- "created_at": "2023-01-30T21:00:39.196Z",
+ "created_at": "2023-04-21T23:06:24.660Z",
"deleted_at": null,
"dirty": true,
"enabled": true,
@@ -35090,7 +35306,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T21:00:39.196Z",
+ "updated_at": "2023-04-21T23:06:24.660Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -35100,48 +35316,48 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLa48836bb29284f83826c65a4d49d2670/libraries"
+ "related": "https://reactor.adobe.io/rules/RL20d5849b1bb546d88ccb09e525593a17/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLa48836bb29284f83826c65a4d49d2670/revisions"
+ "related": "https://reactor.adobe.io/rules/RL20d5849b1bb546d88ccb09e525593a17/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLa48836bb29284f83826c65a4d49d2670/notes"
+ "related": "https://reactor.adobe.io/rules/RL20d5849b1bb546d88ccb09e525593a17/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLa48836bb29284f83826c65a4d49d2670/property"
+ "related": "https://reactor.adobe.io/rules/RL20d5849b1bb546d88ccb09e525593a17/property"
},
"data": {
- "id": "PR5a28e2575132467ba8d8a752283b44fa",
+ "id": "PR4b2cbbdaf096469bb85f362e0700e144",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLa48836bb29284f83826c65a4d49d2670/origin"
+ "related": "https://reactor.adobe.io/rules/RL20d5849b1bb546d88ccb09e525593a17/origin"
},
"data": {
- "id": "RLa48836bb29284f83826c65a4d49d2670",
+ "id": "RL20d5849b1bb546d88ccb09e525593a17",
"type": "rules"
}
},
"rule_components": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLa48836bb29284f83826c65a4d49d2670/rule_components"
+ "related": "https://reactor.adobe.io/rules/RL20d5849b1bb546d88ccb09e525593a17/rule_components"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR5a28e2575132467ba8d8a752283b44fa",
- "origin": "https://reactor.adobe.io/rules/RLa48836bb29284f83826c65a4d49d2670",
- "self": "https://reactor.adobe.io/rules/RLa48836bb29284f83826c65a4d49d2670",
- "rule_components": "https://reactor.adobe.io/rules/RLa48836bb29284f83826c65a4d49d2670/rule_components"
+ "property": "https://reactor.adobe.io/properties/PR4b2cbbdaf096469bb85f362e0700e144",
+ "origin": "https://reactor.adobe.io/rules/RL20d5849b1bb546d88ccb09e525593a17",
+ "self": "https://reactor.adobe.io/rules/RL20d5849b1bb546d88ccb09e525593a17",
+ "rule_components": "https://reactor.adobe.io/rules/RL20d5849b1bb546d88ccb09e525593a17/rule_components"
},
"meta": {
"latest_revision_number": 0
@@ -35160,10 +35376,10 @@
"response": {
"data": [
{
- "id": "RLa4cd916b2ea844f2845befd76e9587e0",
+ "id": "RL03bee68e010f496ab10c7c187eb00c6f",
"type": "rules",
"attributes": {
- "created_at": "2023-01-30T21:00:44.629Z",
+ "created_at": "2023-04-21T23:06:30.244Z",
"deleted_at": null,
"dirty": true,
"enabled": true,
@@ -35171,7 +35387,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T21:00:44.629Z",
+ "updated_at": "2023-04-21T23:06:30.244Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -35181,48 +35397,48 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLa4cd916b2ea844f2845befd76e9587e0/libraries"
+ "related": "https://reactor.adobe.io/rules/RL03bee68e010f496ab10c7c187eb00c6f/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLa4cd916b2ea844f2845befd76e9587e0/revisions"
+ "related": "https://reactor.adobe.io/rules/RL03bee68e010f496ab10c7c187eb00c6f/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLa4cd916b2ea844f2845befd76e9587e0/notes"
+ "related": "https://reactor.adobe.io/rules/RL03bee68e010f496ab10c7c187eb00c6f/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLa4cd916b2ea844f2845befd76e9587e0/property"
+ "related": "https://reactor.adobe.io/rules/RL03bee68e010f496ab10c7c187eb00c6f/property"
},
"data": {
- "id": "PR6816ed854b3840e293cee0c65f6b432a",
+ "id": "PRffc4f6e926274d1d9868f1a7c8164896",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLa4cd916b2ea844f2845befd76e9587e0/origin"
+ "related": "https://reactor.adobe.io/rules/RL03bee68e010f496ab10c7c187eb00c6f/origin"
},
"data": {
- "id": "RLa4cd916b2ea844f2845befd76e9587e0",
+ "id": "RL03bee68e010f496ab10c7c187eb00c6f",
"type": "rules"
}
},
"rule_components": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLa4cd916b2ea844f2845befd76e9587e0/rule_components"
+ "related": "https://reactor.adobe.io/rules/RL03bee68e010f496ab10c7c187eb00c6f/rule_components"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR6816ed854b3840e293cee0c65f6b432a",
- "origin": "https://reactor.adobe.io/rules/RLa4cd916b2ea844f2845befd76e9587e0",
- "self": "https://reactor.adobe.io/rules/RLa4cd916b2ea844f2845befd76e9587e0",
- "rule_components": "https://reactor.adobe.io/rules/RLa4cd916b2ea844f2845befd76e9587e0/rule_components"
+ "property": "https://reactor.adobe.io/properties/PRffc4f6e926274d1d9868f1a7c8164896",
+ "origin": "https://reactor.adobe.io/rules/RL03bee68e010f496ab10c7c187eb00c6f",
+ "self": "https://reactor.adobe.io/rules/RL03bee68e010f496ab10c7c187eb00c6f",
+ "rule_components": "https://reactor.adobe.io/rules/RL03bee68e010f496ab10c7c187eb00c6f/rule_components"
},
"meta": {
"latest_revision_number": 0
@@ -35252,16 +35468,16 @@
"attributes": {
"name": "Test Rule"
},
- "id": "RL0572bac2dd5b436e82bb7baa142e3fae",
+ "id": "RLa40cb515d30c4bb9b28ae46e7f578ac3",
"type": "rules"
}
},
"response": {
"data": {
- "id": "RL0572bac2dd5b436e82bb7baa142e3fae",
+ "id": "RLa40cb515d30c4bb9b28ae46e7f578ac3",
"type": "rules",
"attributes": {
- "created_at": "2023-01-30T21:00:50.126Z",
+ "created_at": "2023-04-21T23:06:35.770Z",
"deleted_at": null,
"dirty": true,
"enabled": true,
@@ -35269,7 +35485,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T21:00:50.174Z",
+ "updated_at": "2023-04-21T23:06:35.826Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -35279,48 +35495,48 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL0572bac2dd5b436e82bb7baa142e3fae/libraries"
+ "related": "https://reactor.adobe.io/rules/RLa40cb515d30c4bb9b28ae46e7f578ac3/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL0572bac2dd5b436e82bb7baa142e3fae/revisions"
+ "related": "https://reactor.adobe.io/rules/RLa40cb515d30c4bb9b28ae46e7f578ac3/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL0572bac2dd5b436e82bb7baa142e3fae/notes"
+ "related": "https://reactor.adobe.io/rules/RLa40cb515d30c4bb9b28ae46e7f578ac3/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL0572bac2dd5b436e82bb7baa142e3fae/property"
+ "related": "https://reactor.adobe.io/rules/RLa40cb515d30c4bb9b28ae46e7f578ac3/property"
},
"data": {
- "id": "PR492b31b19432466ebd6c9245105541ff",
+ "id": "PRef4c9864b9634929b208b790a1c6a58e",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL0572bac2dd5b436e82bb7baa142e3fae/origin"
+ "related": "https://reactor.adobe.io/rules/RLa40cb515d30c4bb9b28ae46e7f578ac3/origin"
},
"data": {
- "id": "RL0572bac2dd5b436e82bb7baa142e3fae",
+ "id": "RLa40cb515d30c4bb9b28ae46e7f578ac3",
"type": "rules"
}
},
"rule_components": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL0572bac2dd5b436e82bb7baa142e3fae/rule_components"
+ "related": "https://reactor.adobe.io/rules/RLa40cb515d30c4bb9b28ae46e7f578ac3/rule_components"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR492b31b19432466ebd6c9245105541ff",
- "origin": "https://reactor.adobe.io/rules/RL0572bac2dd5b436e82bb7baa142e3fae",
- "self": "https://reactor.adobe.io/rules/RL0572bac2dd5b436e82bb7baa142e3fae",
- "rule_components": "https://reactor.adobe.io/rules/RL0572bac2dd5b436e82bb7baa142e3fae/rule_components"
+ "property": "https://reactor.adobe.io/properties/PRef4c9864b9634929b208b790a1c6a58e",
+ "origin": "https://reactor.adobe.io/rules/RLa40cb515d30c4bb9b28ae46e7f578ac3",
+ "self": "https://reactor.adobe.io/rules/RLa40cb515d30c4bb9b28ae46e7f578ac3",
+ "rule_components": "https://reactor.adobe.io/rules/RLa40cb515d30c4bb9b28ae46e7f578ac3/rule_components"
},
"meta": {
"latest_revision_number": 0
@@ -35352,16 +35568,16 @@
"meta": {
"action": "revise"
},
- "id": "RLa12f8e9650e04faebbacb6f13ca39c01",
+ "id": "RL7db7ad3cd948406187afe31b5c84854e",
"type": "rules"
}
},
"response": {
"data": {
- "id": "RL6524366e97754a4da1b49065dd33831d",
+ "id": "RLca6e5b6fac2b4c69bbcb80133435c1d4",
"type": "rules",
"attributes": {
- "created_at": "2023-01-30T21:01:01.093Z",
+ "created_at": "2023-04-21T23:06:46.893Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -35369,7 +35585,7 @@
"published": false,
"published_at": null,
"revision_number": 1,
- "updated_at": "2023-01-30T21:01:01.093Z",
+ "updated_at": "2023-04-21T23:06:46.893Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -35379,48 +35595,48 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL6524366e97754a4da1b49065dd33831d/libraries"
+ "related": "https://reactor.adobe.io/rules/RLca6e5b6fac2b4c69bbcb80133435c1d4/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL6524366e97754a4da1b49065dd33831d/revisions"
+ "related": "https://reactor.adobe.io/rules/RLca6e5b6fac2b4c69bbcb80133435c1d4/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL6524366e97754a4da1b49065dd33831d/notes"
+ "related": "https://reactor.adobe.io/rules/RLca6e5b6fac2b4c69bbcb80133435c1d4/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL6524366e97754a4da1b49065dd33831d/property"
+ "related": "https://reactor.adobe.io/rules/RLca6e5b6fac2b4c69bbcb80133435c1d4/property"
},
"data": {
- "id": "PR754d2defd3cb4f2d8c523e6764df9ddf",
+ "id": "PRe692b4bb0fd74a208e9a68fcf2b78fc5",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL6524366e97754a4da1b49065dd33831d/origin"
+ "related": "https://reactor.adobe.io/rules/RLca6e5b6fac2b4c69bbcb80133435c1d4/origin"
},
"data": {
- "id": "RLa12f8e9650e04faebbacb6f13ca39c01",
+ "id": "RL7db7ad3cd948406187afe31b5c84854e",
"type": "rules"
}
},
"rule_components": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL6524366e97754a4da1b49065dd33831d/rule_components"
+ "related": "https://reactor.adobe.io/rules/RLca6e5b6fac2b4c69bbcb80133435c1d4/rule_components"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR754d2defd3cb4f2d8c523e6764df9ddf",
- "origin": "https://reactor.adobe.io/rules/RLa12f8e9650e04faebbacb6f13ca39c01",
- "self": "https://reactor.adobe.io/rules/RL6524366e97754a4da1b49065dd33831d",
- "rule_components": "https://reactor.adobe.io/rules/RL6524366e97754a4da1b49065dd33831d/rule_components"
+ "property": "https://reactor.adobe.io/properties/PRe692b4bb0fd74a208e9a68fcf2b78fc5",
+ "origin": "https://reactor.adobe.io/rules/RL7db7ad3cd948406187afe31b5c84854e",
+ "self": "https://reactor.adobe.io/rules/RLca6e5b6fac2b4c69bbcb80133435c1d4",
+ "rule_components": "https://reactor.adobe.io/rules/RLca6e5b6fac2b4c69bbcb80133435c1d4/rule_components"
},
"meta": {
"latest_revision_number": 1
@@ -35439,10 +35655,10 @@
"response": {
"data": [
{
- "id": "RL374e8dcab0f6425481ae871ec2278f28",
+ "id": "RL327df189ec744a9abe27f60ed223a35f",
"type": "rules",
"attributes": {
- "created_at": "2023-01-30T21:01:06.482Z",
+ "created_at": "2023-04-21T23:06:52.376Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -35450,7 +35666,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T21:01:06.482Z",
+ "updated_at": "2023-04-21T23:06:52.376Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -35460,58 +35676,58 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL374e8dcab0f6425481ae871ec2278f28/libraries"
+ "related": "https://reactor.adobe.io/rules/RL327df189ec744a9abe27f60ed223a35f/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL374e8dcab0f6425481ae871ec2278f28/revisions"
+ "related": "https://reactor.adobe.io/rules/RL327df189ec744a9abe27f60ed223a35f/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL374e8dcab0f6425481ae871ec2278f28/notes"
+ "related": "https://reactor.adobe.io/rules/RL327df189ec744a9abe27f60ed223a35f/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL374e8dcab0f6425481ae871ec2278f28/property"
+ "related": "https://reactor.adobe.io/rules/RL327df189ec744a9abe27f60ed223a35f/property"
},
"data": {
- "id": "PRa8f1050e07144d59a2a2e3bd0418a467",
+ "id": "PR72104f4f0bc247f1a3de1ec83498d562",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL374e8dcab0f6425481ae871ec2278f28/origin"
+ "related": "https://reactor.adobe.io/rules/RL327df189ec744a9abe27f60ed223a35f/origin"
},
"data": {
- "id": "RL374e8dcab0f6425481ae871ec2278f28",
+ "id": "RL327df189ec744a9abe27f60ed223a35f",
"type": "rules"
}
},
"rule_components": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL374e8dcab0f6425481ae871ec2278f28/rule_components"
+ "related": "https://reactor.adobe.io/rules/RL327df189ec744a9abe27f60ed223a35f/rule_components"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRa8f1050e07144d59a2a2e3bd0418a467",
- "origin": "https://reactor.adobe.io/rules/RL374e8dcab0f6425481ae871ec2278f28",
- "self": "https://reactor.adobe.io/rules/RL374e8dcab0f6425481ae871ec2278f28",
- "rule_components": "https://reactor.adobe.io/rules/RL374e8dcab0f6425481ae871ec2278f28/rule_components"
+ "property": "https://reactor.adobe.io/properties/PR72104f4f0bc247f1a3de1ec83498d562",
+ "origin": "https://reactor.adobe.io/rules/RL327df189ec744a9abe27f60ed223a35f",
+ "self": "https://reactor.adobe.io/rules/RL327df189ec744a9abe27f60ed223a35f",
+ "rule_components": "https://reactor.adobe.io/rules/RL327df189ec744a9abe27f60ed223a35f/rule_components"
},
"meta": {
"latest_revision_number": 1
}
},
{
- "id": "RL7131a6d7f62b468989334d9a03cc7293",
+ "id": "RL1ee9d2996b3a4ca68d58b2f5ba802225",
"type": "rules",
"attributes": {
- "created_at": "2023-01-30T21:01:06.544Z",
+ "created_at": "2023-04-21T23:06:52.438Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -35519,7 +35735,7 @@
"published": false,
"published_at": null,
"revision_number": 1,
- "updated_at": "2023-01-30T21:01:06.544Z",
+ "updated_at": "2023-04-21T23:06:52.438Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -35529,48 +35745,48 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL7131a6d7f62b468989334d9a03cc7293/libraries"
+ "related": "https://reactor.adobe.io/rules/RL1ee9d2996b3a4ca68d58b2f5ba802225/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL7131a6d7f62b468989334d9a03cc7293/revisions"
+ "related": "https://reactor.adobe.io/rules/RL1ee9d2996b3a4ca68d58b2f5ba802225/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL7131a6d7f62b468989334d9a03cc7293/notes"
+ "related": "https://reactor.adobe.io/rules/RL1ee9d2996b3a4ca68d58b2f5ba802225/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL7131a6d7f62b468989334d9a03cc7293/property"
+ "related": "https://reactor.adobe.io/rules/RL1ee9d2996b3a4ca68d58b2f5ba802225/property"
},
"data": {
- "id": "PRa8f1050e07144d59a2a2e3bd0418a467",
+ "id": "PR72104f4f0bc247f1a3de1ec83498d562",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL7131a6d7f62b468989334d9a03cc7293/origin"
+ "related": "https://reactor.adobe.io/rules/RL1ee9d2996b3a4ca68d58b2f5ba802225/origin"
},
"data": {
- "id": "RL374e8dcab0f6425481ae871ec2278f28",
+ "id": "RL327df189ec744a9abe27f60ed223a35f",
"type": "rules"
}
},
"rule_components": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL7131a6d7f62b468989334d9a03cc7293/rule_components"
+ "related": "https://reactor.adobe.io/rules/RL1ee9d2996b3a4ca68d58b2f5ba802225/rule_components"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PRa8f1050e07144d59a2a2e3bd0418a467",
- "origin": "https://reactor.adobe.io/rules/RL374e8dcab0f6425481ae871ec2278f28",
- "self": "https://reactor.adobe.io/rules/RL7131a6d7f62b468989334d9a03cc7293",
- "rule_components": "https://reactor.adobe.io/rules/RL7131a6d7f62b468989334d9a03cc7293/rule_components"
+ "property": "https://reactor.adobe.io/properties/PR72104f4f0bc247f1a3de1ec83498d562",
+ "origin": "https://reactor.adobe.io/rules/RL327df189ec744a9abe27f60ed223a35f",
+ "self": "https://reactor.adobe.io/rules/RL1ee9d2996b3a4ca68d58b2f5ba802225",
+ "rule_components": "https://reactor.adobe.io/rules/RL1ee9d2996b3a4ca68d58b2f5ba802225/rule_components"
},
"meta": {
"latest_revision_number": 1
@@ -35598,10 +35814,10 @@
"request": null,
"response": {
"data": {
- "id": "RL6390b350d3b34cc5bad6d9b740b31e51",
+ "id": "RLe133c18bb0b849489192f9505281046e",
"type": "rules",
"attributes": {
- "created_at": "2023-01-30T21:01:11.924Z",
+ "created_at": "2023-04-21T23:06:57.957Z",
"deleted_at": null,
"dirty": false,
"enabled": true,
@@ -35609,7 +35825,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T21:01:11.924Z",
+ "updated_at": "2023-04-21T23:06:57.957Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -35619,48 +35835,48 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL6390b350d3b34cc5bad6d9b740b31e51/libraries"
+ "related": "https://reactor.adobe.io/rules/RLe133c18bb0b849489192f9505281046e/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL6390b350d3b34cc5bad6d9b740b31e51/revisions"
+ "related": "https://reactor.adobe.io/rules/RLe133c18bb0b849489192f9505281046e/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL6390b350d3b34cc5bad6d9b740b31e51/notes"
+ "related": "https://reactor.adobe.io/rules/RLe133c18bb0b849489192f9505281046e/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL6390b350d3b34cc5bad6d9b740b31e51/property"
+ "related": "https://reactor.adobe.io/rules/RLe133c18bb0b849489192f9505281046e/property"
},
"data": {
- "id": "PR359dd8e905e14504aaaf28bf64170867",
+ "id": "PR808432f177dd4af99d763fa9517c3fbf",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL6390b350d3b34cc5bad6d9b740b31e51/origin"
+ "related": "https://reactor.adobe.io/rules/RLe133c18bb0b849489192f9505281046e/origin"
},
"data": {
- "id": "RL6390b350d3b34cc5bad6d9b740b31e51",
+ "id": "RLe133c18bb0b849489192f9505281046e",
"type": "rules"
}
},
"rule_components": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL6390b350d3b34cc5bad6d9b740b31e51/rule_components"
+ "related": "https://reactor.adobe.io/rules/RLe133c18bb0b849489192f9505281046e/rule_components"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR359dd8e905e14504aaaf28bf64170867",
- "origin": "https://reactor.adobe.io/rules/RL6390b350d3b34cc5bad6d9b740b31e51",
- "self": "https://reactor.adobe.io/rules/RL6390b350d3b34cc5bad6d9b740b31e51",
- "rule_components": "https://reactor.adobe.io/rules/RL6390b350d3b34cc5bad6d9b740b31e51/rule_components"
+ "property": "https://reactor.adobe.io/properties/PR808432f177dd4af99d763fa9517c3fbf",
+ "origin": "https://reactor.adobe.io/rules/RLe133c18bb0b849489192f9505281046e",
+ "self": "https://reactor.adobe.io/rules/RLe133c18bb0b849489192f9505281046e",
+ "rule_components": "https://reactor.adobe.io/rules/RLe133c18bb0b849489192f9505281046e/rule_components"
},
"meta": {
"latest_revision_number": 1
@@ -35702,10 +35918,10 @@
"response": {
"data": [
{
- "id": "RLec6c751dedc941b6a036750863a57e5b",
+ "id": "RL1366a8367c5f4c10948dfbd4fa055f6a",
"type": "rules",
"attributes": {
- "created_at": "2023-01-30T21:06:32.336Z",
+ "created_at": "2023-04-21T23:07:15.538Z",
"deleted_at": null,
"dirty": true,
"enabled": true,
@@ -35713,7 +35929,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T21:06:32.536Z",
+ "updated_at": "2023-04-21T23:07:15.617Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -35723,48 +35939,48 @@
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLec6c751dedc941b6a036750863a57e5b/libraries"
+ "related": "https://reactor.adobe.io/rules/RL1366a8367c5f4c10948dfbd4fa055f6a/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLec6c751dedc941b6a036750863a57e5b/revisions"
+ "related": "https://reactor.adobe.io/rules/RL1366a8367c5f4c10948dfbd4fa055f6a/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLec6c751dedc941b6a036750863a57e5b/notes"
+ "related": "https://reactor.adobe.io/rules/RL1366a8367c5f4c10948dfbd4fa055f6a/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLec6c751dedc941b6a036750863a57e5b/property"
+ "related": "https://reactor.adobe.io/rules/RL1366a8367c5f4c10948dfbd4fa055f6a/property"
},
"data": {
- "id": "PR4cf9c5657c874cd79c12913fe4d5236f",
+ "id": "PRef7c45ee2467489698d8179601645b08",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLec6c751dedc941b6a036750863a57e5b/origin"
+ "related": "https://reactor.adobe.io/rules/RL1366a8367c5f4c10948dfbd4fa055f6a/origin"
},
"data": {
- "id": "RLec6c751dedc941b6a036750863a57e5b",
+ "id": "RL1366a8367c5f4c10948dfbd4fa055f6a",
"type": "rules"
}
},
"rule_components": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLec6c751dedc941b6a036750863a57e5b/rule_components"
+ "related": "https://reactor.adobe.io/rules/RL1366a8367c5f4c10948dfbd4fa055f6a/rule_components"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR4cf9c5657c874cd79c12913fe4d5236f",
- "origin": "https://reactor.adobe.io/rules/RLec6c751dedc941b6a036750863a57e5b",
- "self": "https://reactor.adobe.io/rules/RLec6c751dedc941b6a036750863a57e5b",
- "rule_components": "https://reactor.adobe.io/rules/RLec6c751dedc941b6a036750863a57e5b/rule_components"
+ "property": "https://reactor.adobe.io/properties/PRef7c45ee2467489698d8179601645b08",
+ "origin": "https://reactor.adobe.io/rules/RL1366a8367c5f4c10948dfbd4fa055f6a",
+ "self": "https://reactor.adobe.io/rules/RL1366a8367c5f4c10948dfbd4fa055f6a",
+ "rule_components": "https://reactor.adobe.io/rules/RL1366a8367c5f4c10948dfbd4fa055f6a/rule_components"
},
"meta": {
"latest_revision_number": 0
@@ -35790,28 +36006,28 @@
},
"response": {
"data": {
- "id": "NTe4f40a8f2d264d8c80797df7d9d2d58a",
+ "id": "NT508dbfa354b24aaeb7414712e80e43e4",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T21:06:38.087Z",
+ "created_at": "2023-04-21T23:07:21.282Z",
"text": "this note on a rule intentionally left blank"
},
"relationships": {
"resource": {
"links": {
- "related": "https://reactor.adobe.io/rules/RL93f8589a719042e5a791a4b790c7ea9b"
+ "related": "https://reactor.adobe.io/rules/RL665bb311a7904778b17e97798af6656f"
},
"data": {
- "id": "RL93f8589a719042e5a791a4b790c7ea9b",
+ "id": "RL665bb311a7904778b17e97798af6656f",
"type": "rules"
}
}
},
"links": {
- "resource": "https://reactor.adobe.io/rules/RL93f8589a719042e5a791a4b790c7ea9b",
- "self": "https://reactor.adobe.io/notes/NTe4f40a8f2d264d8c80797df7d9d2d58a"
+ "resource": "https://reactor.adobe.io/rules/RL665bb311a7904778b17e97798af6656f",
+ "self": "https://reactor.adobe.io/notes/NT508dbfa354b24aaeb7414712e80e43e4"
}
}
},
@@ -35827,28 +36043,28 @@
"response": {
"data": [
{
- "id": "NT5541a6ff4ec04cd6961f14bf0cb0d0fb",
+ "id": "NT3f61db1ff29b4375be75c0d8584cb912",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T21:06:43.517Z",
+ "created_at": "2023-04-21T23:07:26.767Z",
"text": "this is a note on a rule"
},
"relationships": {
"resource": {
"links": {
- "related": "https://reactor.adobe.io/rules/RLeac653ab610b40a5a25508fcc21f93b3"
+ "related": "https://reactor.adobe.io/rules/RLcdcfadea889f4b0d96289e2a27626297"
},
"data": {
- "id": "RLeac653ab610b40a5a25508fcc21f93b3",
+ "id": "RLcdcfadea889f4b0d96289e2a27626297",
"type": "rules"
}
}
},
"links": {
- "resource": "https://reactor.adobe.io/rules/RLeac653ab610b40a5a25508fcc21f93b3",
- "self": "https://reactor.adobe.io/notes/NT5541a6ff4ec04cd6961f14bf0cb0d0fb"
+ "resource": "https://reactor.adobe.io/rules/RLcdcfadea889f4b0d96289e2a27626297",
+ "self": "https://reactor.adobe.io/notes/NT3f61db1ff29b4375be75c0d8584cb912"
}
}
],
@@ -35874,28 +36090,28 @@
"response": {
"data": [
{
- "id": "NTcc5c73de2bea461d9312b5b2fc7dc8a8",
+ "id": "NT74573e900b184de6a2b255573a70bc24",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T21:06:49.278Z",
+ "created_at": "2023-04-21T23:07:32.709Z",
"text": "this is a note on a rule component"
},
"relationships": {
"resource": {
"links": {
- "related": "https://reactor.adobe.io/rule_components/RC686f91753cb24d0e8548fbff01076a1a"
+ "related": "https://reactor.adobe.io/rule_components/RCcc6e9b96f76848ee8e4752e743d3b1f1"
},
"data": {
- "id": "RC686f91753cb24d0e8548fbff01076a1a",
+ "id": "RCcc6e9b96f76848ee8e4752e743d3b1f1",
"type": "rule_components"
}
}
},
"links": {
- "resource": "https://reactor.adobe.io/rule_components/RC686f91753cb24d0e8548fbff01076a1a",
- "self": "https://reactor.adobe.io/notes/NTcc5c73de2bea461d9312b5b2fc7dc8a8"
+ "resource": "https://reactor.adobe.io/rule_components/RCcc6e9b96f76848ee8e4752e743d3b1f1",
+ "self": "https://reactor.adobe.io/notes/NT74573e900b184de6a2b255573a70bc24"
}
}
],
@@ -35929,16 +36145,16 @@
"response": {
"data": [
{
- "id": "PRc2069cebc52d4cc191e49a436ed9525a",
+ "id": "PRd1996d254ee54442a8260fe04df0156b",
"type": "properties",
"attributes": {
- "created_at": "2023-01-30T21:06:49.535Z",
+ "created_at": "2023-04-21T23:07:33.019Z",
"enabled": true,
"name": "Kessel Example Property",
- "updated_at": "2023-01-30T21:06:49.535Z",
+ "updated_at": "2023-04-21T23:07:33.019Z",
"platform": "web",
"development": false,
- "token": "c4b96836c568",
+ "token": "0da211d79b60",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -35952,7 +36168,7 @@
"relationships": {
"company": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRc2069cebc52d4cc191e49a436ed9525a/company"
+ "related": "https://reactor.adobe.io/properties/PRd1996d254ee54442a8260fe04df0156b/company"
},
"data": {
"id": "COb0dbd63fb8304a6197eef1f5cd0324fb",
@@ -35961,55 +36177,55 @@
},
"callbacks": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRc2069cebc52d4cc191e49a436ed9525a/callbacks"
+ "related": "https://reactor.adobe.io/properties/PRd1996d254ee54442a8260fe04df0156b/callbacks"
}
},
"hosts": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRc2069cebc52d4cc191e49a436ed9525a/hosts"
+ "related": "https://reactor.adobe.io/properties/PRd1996d254ee54442a8260fe04df0156b/hosts"
}
},
"environments": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRc2069cebc52d4cc191e49a436ed9525a/environments"
+ "related": "https://reactor.adobe.io/properties/PRd1996d254ee54442a8260fe04df0156b/environments"
}
},
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRc2069cebc52d4cc191e49a436ed9525a/libraries"
+ "related": "https://reactor.adobe.io/properties/PRd1996d254ee54442a8260fe04df0156b/libraries"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRc2069cebc52d4cc191e49a436ed9525a/data_elements"
+ "related": "https://reactor.adobe.io/properties/PRd1996d254ee54442a8260fe04df0156b/data_elements"
}
},
"extensions": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRc2069cebc52d4cc191e49a436ed9525a/extensions"
+ "related": "https://reactor.adobe.io/properties/PRd1996d254ee54442a8260fe04df0156b/extensions"
}
},
"rules": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRc2069cebc52d4cc191e49a436ed9525a/rules"
+ "related": "https://reactor.adobe.io/properties/PRd1996d254ee54442a8260fe04df0156b/rules"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/properties/PRc2069cebc52d4cc191e49a436ed9525a/notes"
+ "related": "https://reactor.adobe.io/properties/PRd1996d254ee54442a8260fe04df0156b/notes"
}
}
},
"links": {
"company": "https://reactor.adobe.io/companies/COb0dbd63fb8304a6197eef1f5cd0324fb",
- "data_elements": "https://reactor.adobe.io/properties/PRc2069cebc52d4cc191e49a436ed9525a/data_elements",
- "environments": "https://reactor.adobe.io/properties/PRc2069cebc52d4cc191e49a436ed9525a/environments",
- "extensions": "https://reactor.adobe.io/properties/PRc2069cebc52d4cc191e49a436ed9525a/extensions",
- "rules": "https://reactor.adobe.io/properties/PRc2069cebc52d4cc191e49a436ed9525a/rules",
- "self": "https://reactor.adobe.io/properties/PRc2069cebc52d4cc191e49a436ed9525a"
+ "data_elements": "https://reactor.adobe.io/properties/PRd1996d254ee54442a8260fe04df0156b/data_elements",
+ "environments": "https://reactor.adobe.io/properties/PRd1996d254ee54442a8260fe04df0156b/environments",
+ "extensions": "https://reactor.adobe.io/properties/PRd1996d254ee54442a8260fe04df0156b/extensions",
+ "rules": "https://reactor.adobe.io/properties/PRd1996d254ee54442a8260fe04df0156b/rules",
+ "self": "https://reactor.adobe.io/properties/PRd1996d254ee54442a8260fe04df0156b"
},
"meta": {
- "match_score": 10.148351
+ "match_score": 3.1645029
}
}
],
@@ -36037,7 +36253,7 @@
"relationships": {
"environment": {
"data": {
- "id": "EN3861996db04942dcaeafe9cfefe273c6",
+ "id": "EN8ad5f68088a74515824cf35976d1a0ac",
"type": "environments"
}
}
@@ -36047,11 +36263,11 @@
},
"response": {
"data": {
- "id": "SE1a6a6a593f1649ee8e8a7b0162f04bc7",
+ "id": "SEc88b1da10a84432796a601ad7d9019ec",
"type": "secrets",
"attributes": {
- "created_at": "2023-01-30T21:07:01.178Z",
- "updated_at": "2023-01-30T21:07:01.178Z",
+ "created_at": "2023-04-21T23:07:44.599Z",
+ "updated_at": "2023-04-21T23:07:44.599Z",
"name": "my secret",
"type_of": "token",
"activated_at": null,
@@ -36068,19 +36284,19 @@
"relationships": {
"property": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SE1a6a6a593f1649ee8e8a7b0162f04bc7/property"
+ "related": "https://reactor.adobe.io/secrets/SEc88b1da10a84432796a601ad7d9019ec/property"
},
"data": {
- "id": "PRcbc7cfc9990c4a83bfadd2589b61b577",
+ "id": "PR28272c4381e14d639bd1d72e0f65f438",
"type": "properties"
}
},
"environment": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SE1a6a6a593f1649ee8e8a7b0162f04bc7/environment"
+ "related": "https://reactor.adobe.io/secrets/SEc88b1da10a84432796a601ad7d9019ec/environment"
},
"data": {
- "id": "EN3861996db04942dcaeafe9cfefe273c6",
+ "id": "EN8ad5f68088a74515824cf35976d1a0ac",
"type": "environments"
},
"meta": {
@@ -36089,18 +36305,403 @@
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SE1a6a6a593f1649ee8e8a7b0162f04bc7/notes"
+ "related": "https://reactor.adobe.io/secrets/SEc88b1da10a84432796a601ad7d9019ec/notes"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SE1a6a6a593f1649ee8e8a7b0162f04bc7/data_elements"
+ "related": "https://reactor.adobe.io/secrets/SEc88b1da10a84432796a601ad7d9019ec/data_elements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/secrets/SE1a6a6a593f1649ee8e8a7b0162f04bc7",
- "property": "https://reactor.adobe.io/secrets/SE1a6a6a593f1649ee8e8a7b0162f04bc7/property"
+ "self": "https://reactor.adobe.io/secrets/SEc88b1da10a84432796a601ad7d9019ec",
+ "property": "https://reactor.adobe.io/secrets/SEc88b1da10a84432796a601ad7d9019ec/property"
+ }
+ }
+ },
+ "response_code": 201,
+ "response_message": "Created"
+ },
+ {
+ "name": "secrets.create_a_simple_http_secret.create_simple_http",
+ "endpoint": "/properties/:property_id/secrets",
+ "method": "POST",
+ "multipart": false,
+ "request": {
+ "data": {
+ "attributes": {
+ "name": "my simple-http secret",
+ "type_of": "simple-http",
+ "credentials": {
+ "username": "username",
+ "password": "password"
+ }
+ },
+ "relationships": {
+ "environment": {
+ "data": {
+ "id": "EN8b0eec9808c94936898dbff5cb02ca66",
+ "type": "environments"
+ }
+ }
+ },
+ "type": "secrets"
+ }
+ },
+ "response": {
+ "data": {
+ "id": "SEc8fe5e7584b24a4f82fd805ce7ed74e3",
+ "type": "secrets",
+ "attributes": {
+ "created_at": "2023-04-21T23:07:50.950Z",
+ "updated_at": "2023-04-21T23:07:50.950Z",
+ "name": "my simple-http secret",
+ "type_of": "simple-http",
+ "activated_at": null,
+ "expires_at": null,
+ "refresh_at": null,
+ "status": "pending",
+ "created_by_email": "ciltaru@adobe.com",
+ "created_by_display_name": "George Ciltaru",
+ "updated_by_email": "ciltaru@adobe.com",
+ "updated_by_display_name": "George Ciltaru",
+ "credentials": {
+ "username": "username"
+ }
+ },
+ "relationships": {
+ "property": {
+ "links": {
+ "related": "https://reactor.adobe.io/secrets/SEc8fe5e7584b24a4f82fd805ce7ed74e3/property"
+ },
+ "data": {
+ "id": "PR84a35f631ec747f7b802b8cb2a8b1b29",
+ "type": "properties"
+ }
+ },
+ "environment": {
+ "links": {
+ "related": "https://reactor.adobe.io/secrets/SEc8fe5e7584b24a4f82fd805ce7ed74e3/environment"
+ },
+ "data": {
+ "id": "EN8b0eec9808c94936898dbff5cb02ca66",
+ "type": "environments"
+ },
+ "meta": {
+ "stage": "development"
+ }
+ },
+ "notes": {
+ "links": {
+ "related": "https://reactor.adobe.io/secrets/SEc8fe5e7584b24a4f82fd805ce7ed74e3/notes"
+ }
+ },
+ "data_elements": {
+ "links": {
+ "related": "https://reactor.adobe.io/secrets/SEc8fe5e7584b24a4f82fd805ce7ed74e3/data_elements"
+ }
+ }
+ },
+ "links": {
+ "self": "https://reactor.adobe.io/secrets/SEc8fe5e7584b24a4f82fd805ce7ed74e3",
+ "property": "https://reactor.adobe.io/secrets/SEc8fe5e7584b24a4f82fd805ce7ed74e3/property"
+ }
+ }
+ },
+ "response_code": 201,
+ "response_message": "Created"
+ },
+ {
+ "name": "secrets.create_a_oauth2_client_credentials_secret.create_oauth2_client_credentials",
+ "endpoint": "/properties/:property_id/secrets",
+ "method": "POST",
+ "multipart": false,
+ "request": {
+ "data": {
+ "attributes": {
+ "name": "my oauth2-client_credentials secret",
+ "type_of": "oauth2-client_credentials",
+ "credentials": {
+ "client_id": "client_id",
+ "client_secret": "client_secret",
+ "token_url": "https://token.url"
+ }
+ },
+ "relationships": {
+ "environment": {
+ "data": {
+ "id": "ENc3b661c1a2c6413ab25fee036a6a4bc3",
+ "type": "environments"
+ }
+ }
+ },
+ "type": "secrets"
+ }
+ },
+ "response": {
+ "data": {
+ "id": "SEef272366e6ca44cd803704b2e225403e",
+ "type": "secrets",
+ "attributes": {
+ "created_at": "2023-04-21T23:07:57.457Z",
+ "updated_at": "2023-04-21T23:07:57.457Z",
+ "name": "my oauth2-client_credentials secret",
+ "type_of": "oauth2-client_credentials",
+ "activated_at": null,
+ "expires_at": null,
+ "refresh_at": null,
+ "status": "pending",
+ "created_by_email": "ciltaru@adobe.com",
+ "created_by_display_name": "George Ciltaru",
+ "updated_by_email": "ciltaru@adobe.com",
+ "updated_by_display_name": "George Ciltaru",
+ "credentials": {
+ "client_id": "client_id",
+ "token_url": "https://token.url",
+ "refresh_offset": 14400
+ }
+ },
+ "relationships": {
+ "property": {
+ "links": {
+ "related": "https://reactor.adobe.io/secrets/SEef272366e6ca44cd803704b2e225403e/property"
+ },
+ "data": {
+ "id": "PRa8611a2d52e3462baa522b3925434a7a",
+ "type": "properties"
+ }
+ },
+ "environment": {
+ "links": {
+ "related": "https://reactor.adobe.io/secrets/SEef272366e6ca44cd803704b2e225403e/environment"
+ },
+ "data": {
+ "id": "ENc3b661c1a2c6413ab25fee036a6a4bc3",
+ "type": "environments"
+ },
+ "meta": {
+ "stage": "development"
+ }
+ },
+ "notes": {
+ "links": {
+ "related": "https://reactor.adobe.io/secrets/SEef272366e6ca44cd803704b2e225403e/notes"
+ }
+ },
+ "data_elements": {
+ "links": {
+ "related": "https://reactor.adobe.io/secrets/SEef272366e6ca44cd803704b2e225403e/data_elements"
+ }
+ }
+ },
+ "links": {
+ "self": "https://reactor.adobe.io/secrets/SEef272366e6ca44cd803704b2e225403e",
+ "property": "https://reactor.adobe.io/secrets/SEef272366e6ca44cd803704b2e225403e/property"
+ }
+ }
+ },
+ "response_code": 201,
+ "response_message": "Created"
+ },
+ {
+ "name": "secrets.create_a_oauth2_jwt_secret.create_oauth2_jwt",
+ "endpoint": "/properties/:property_id/secrets",
+ "method": "POST",
+ "multipart": false,
+ "request": {
+ "data": {
+ "attributes": {
+ "name": "my oauth2-jwt secret",
+ "type_of": "oauth2-jwt",
+ "credentials": {
+ "iss": "issuer",
+ "sub": "subject",
+ "aud": "audience",
+ "ttl": 86400,
+ "alg": "RS256",
+ "custom_claims": {
+ "claim1": "claim1 value"
+ },
+ "private_key": "-----BEGIN RSA PRIVATE KEY-----\nprivatekey\n-----END RSA PRIVATE KEY-----",
+ "token_url": "https://token.url"
+ }
+ },
+ "relationships": {
+ "environment": {
+ "data": {
+ "id": "ENc2ca603ffe294ace8f2cab14ca47d67f",
+ "type": "environments"
+ }
+ }
+ },
+ "type": "secrets"
+ }
+ },
+ "response": {
+ "data": {
+ "id": "SE675ca9126ce34599ac0b62d94d59cb72",
+ "type": "secrets",
+ "attributes": {
+ "created_at": "2023-04-21T23:08:03.736Z",
+ "updated_at": "2023-04-21T23:08:03.736Z",
+ "name": "my oauth2-jwt secret",
+ "type_of": "oauth2-jwt",
+ "activated_at": null,
+ "expires_at": null,
+ "refresh_at": null,
+ "status": "pending",
+ "created_by_email": "ciltaru@adobe.com",
+ "created_by_display_name": "George Ciltaru",
+ "updated_by_email": "ciltaru@adobe.com",
+ "updated_by_display_name": "George Ciltaru",
+ "credentials": {
+ "iss": "issuer",
+ "sub": "subject",
+ "aud": "audience",
+ "ttl": 86400,
+ "alg": "RS256",
+ "custom_claims": {
+ "claim1": "claim1 value"
+ },
+ "token_url": "https://token.url",
+ "refresh_offset": 1800
+ }
+ },
+ "relationships": {
+ "property": {
+ "links": {
+ "related": "https://reactor.adobe.io/secrets/SE675ca9126ce34599ac0b62d94d59cb72/property"
+ },
+ "data": {
+ "id": "PRcbd1737aafdd40b78a29e40bbd5f25ea",
+ "type": "properties"
+ }
+ },
+ "environment": {
+ "links": {
+ "related": "https://reactor.adobe.io/secrets/SE675ca9126ce34599ac0b62d94d59cb72/environment"
+ },
+ "data": {
+ "id": "ENc2ca603ffe294ace8f2cab14ca47d67f",
+ "type": "environments"
+ },
+ "meta": {
+ "stage": "development"
+ }
+ },
+ "notes": {
+ "links": {
+ "related": "https://reactor.adobe.io/secrets/SE675ca9126ce34599ac0b62d94d59cb72/notes"
+ }
+ },
+ "data_elements": {
+ "links": {
+ "related": "https://reactor.adobe.io/secrets/SE675ca9126ce34599ac0b62d94d59cb72/data_elements"
+ }
+ }
+ },
+ "links": {
+ "self": "https://reactor.adobe.io/secrets/SE675ca9126ce34599ac0b62d94d59cb72",
+ "property": "https://reactor.adobe.io/secrets/SE675ca9126ce34599ac0b62d94d59cb72/property"
+ }
+ }
+ },
+ "response_code": 201,
+ "response_message": "Created"
+ },
+ {
+ "name": "secrets.create_a_oauth2_google_secret.create_oauth2_google",
+ "endpoint": "/properties/:property_id/secrets",
+ "method": "POST",
+ "multipart": false,
+ "request": {
+ "data": {
+ "attributes": {
+ "name": "my oauth2-google secret",
+ "type_of": "oauth2-google",
+ "credentials": {
+ "scopes": [
+ "https://www.googleapis.com/auth/adwords",
+ "https://www.googleapis.com/auth/pubsub"
+ ]
+ }
+ },
+ "relationships": {
+ "environment": {
+ "data": {
+ "id": "EN836d751a266b43d094ae4a8399a9a32f",
+ "type": "environments"
+ }
+ }
+ },
+ "type": "secrets"
+ }
+ },
+ "response": {
+ "data": {
+ "id": "SE36b03b87631048bd917f842bff7441d8",
+ "type": "secrets",
+ "attributes": {
+ "created_at": "2023-04-21T23:08:10.061Z",
+ "updated_at": "2023-04-21T23:08:10.061Z",
+ "name": "my oauth2-google secret",
+ "type_of": "oauth2-google",
+ "activated_at": null,
+ "expires_at": null,
+ "refresh_at": null,
+ "status": "manual_authorization_required",
+ "created_by_email": "ciltaru@adobe.com",
+ "created_by_display_name": "George Ciltaru",
+ "updated_by_email": "ciltaru@adobe.com",
+ "updated_by_display_name": "George Ciltaru",
+ "credentials": {
+ "scopes": [
+ "https://www.googleapis.com/auth/adwords",
+ "https://www.googleapis.com/auth/pubsub"
+ ]
+ }
+ },
+ "relationships": {
+ "property": {
+ "links": {
+ "related": "https://reactor.adobe.io/secrets/SE36b03b87631048bd917f842bff7441d8/property"
+ },
+ "data": {
+ "id": "PR26e94fe3cf324b8fbea90834d4adf354",
+ "type": "properties"
+ }
+ },
+ "environment": {
+ "links": {
+ "related": "https://reactor.adobe.io/secrets/SE36b03b87631048bd917f842bff7441d8/environment"
+ },
+ "data": {
+ "id": "EN836d751a266b43d094ae4a8399a9a32f",
+ "type": "environments"
+ },
+ "meta": {
+ "stage": "development"
+ }
+ },
+ "notes": {
+ "links": {
+ "related": "https://reactor.adobe.io/secrets/SE36b03b87631048bd917f842bff7441d8/notes"
+ }
+ },
+ "data_elements": {
+ "links": {
+ "related": "https://reactor.adobe.io/secrets/SE36b03b87631048bd917f842bff7441d8/data_elements"
+ }
+ }
+ },
+ "links": {
+ "self": "https://reactor.adobe.io/secrets/SE36b03b87631048bd917f842bff7441d8",
+ "property": "https://reactor.adobe.io/secrets/SE36b03b87631048bd917f842bff7441d8/property"
+ },
+ "meta": {
+ "authorization_url": "https://accounts.google.com/o/oauth2/auth?&client_id=434635668552-0qvlu519fdjtnkvk8hu8c8dj8rg3723r.apps.googleusercontent.com&...",
+ "authorization_url_expires_at": "2023-04-22T00:08:09.000Z"
}
}
},
@@ -36121,17 +36722,17 @@
"token": "my new secret token"
}
},
- "id": "SE46a434a05df54fd081f73ef379995615",
+ "id": "SE77096fdd44d247bda74e52e4ce65ce68",
"type": "secrets"
}
},
"response": {
"data": {
- "id": "SE46a434a05df54fd081f73ef379995615",
+ "id": "SE77096fdd44d247bda74e52e4ce65ce68",
"type": "secrets",
"attributes": {
- "created_at": "2023-01-30T21:07:06.955Z",
- "updated_at": "2023-01-30T21:07:07.292Z",
+ "created_at": "2023-04-21T23:08:16.321Z",
+ "updated_at": "2023-04-21T23:08:16.711Z",
"name": "my new secret",
"type_of": "token",
"activated_at": null,
@@ -36148,19 +36749,19 @@
"relationships": {
"property": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SE46a434a05df54fd081f73ef379995615/property"
+ "related": "https://reactor.adobe.io/secrets/SE77096fdd44d247bda74e52e4ce65ce68/property"
},
"data": {
- "id": "PRaee3566f0bd14876af7decd020c86b4f",
+ "id": "PR733b805ee1ad4e788f3217b07c95ee70",
"type": "properties"
}
},
"environment": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SE46a434a05df54fd081f73ef379995615/environment"
+ "related": "https://reactor.adobe.io/secrets/SE77096fdd44d247bda74e52e4ce65ce68/environment"
},
"data": {
- "id": "EN1b508aef12c847dcb12ae2f6ab63716c",
+ "id": "EN8f356ded6ccd424e9d886175c48169b8",
"type": "environments"
},
"meta": {
@@ -36169,18 +36770,18 @@
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SE46a434a05df54fd081f73ef379995615/notes"
+ "related": "https://reactor.adobe.io/secrets/SE77096fdd44d247bda74e52e4ce65ce68/notes"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SE46a434a05df54fd081f73ef379995615/data_elements"
+ "related": "https://reactor.adobe.io/secrets/SE77096fdd44d247bda74e52e4ce65ce68/data_elements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/secrets/SE46a434a05df54fd081f73ef379995615",
- "property": "https://reactor.adobe.io/secrets/SE46a434a05df54fd081f73ef379995615/property"
+ "self": "https://reactor.adobe.io/secrets/SE77096fdd44d247bda74e52e4ce65ce68",
+ "property": "https://reactor.adobe.io/secrets/SE77096fdd44d247bda74e52e4ce65ce68/property"
}
}
},
@@ -36200,17 +36801,17 @@
"meta": {
"action": "retry"
},
- "id": "SEb106c9ec7cf7497c8aec69fef3e24cdf",
+ "id": "SEb2226d52b4194030b15bb8a0fa0f68f4",
"type": "secrets"
}
},
"response": {
"data": {
- "id": "SEb106c9ec7cf7497c8aec69fef3e24cdf",
+ "id": "SEb2226d52b4194030b15bb8a0fa0f68f4",
"type": "secrets",
"attributes": {
- "created_at": "2023-01-30T21:12:11.570Z",
- "updated_at": "2023-01-30T21:12:11.570Z",
+ "created_at": "2023-04-21T23:08:23.110Z",
+ "updated_at": "2023-04-21T23:08:23.110Z",
"name": "Example Secret",
"type_of": "token",
"activated_at": null,
@@ -36227,19 +36828,19 @@
"relationships": {
"property": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SEb106c9ec7cf7497c8aec69fef3e24cdf/property"
+ "related": "https://reactor.adobe.io/secrets/SEb2226d52b4194030b15bb8a0fa0f68f4/property"
},
"data": {
- "id": "PRc677eb0341b3435e8f3c9e6a5c533505",
+ "id": "PR646d338944b7495e8e622080cc0ec2c7",
"type": "properties"
}
},
"environment": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SEb106c9ec7cf7497c8aec69fef3e24cdf/environment"
+ "related": "https://reactor.adobe.io/secrets/SEb2226d52b4194030b15bb8a0fa0f68f4/environment"
},
"data": {
- "id": "EN6427bb65d582431b867a0d97d0c57649",
+ "id": "EN7c35d958087146de84fcf3fe10bdbd9f",
"type": "environments"
},
"meta": {
@@ -36248,18 +36849,18 @@
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SEb106c9ec7cf7497c8aec69fef3e24cdf/notes"
+ "related": "https://reactor.adobe.io/secrets/SEb2226d52b4194030b15bb8a0fa0f68f4/notes"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SEb106c9ec7cf7497c8aec69fef3e24cdf/data_elements"
+ "related": "https://reactor.adobe.io/secrets/SEb2226d52b4194030b15bb8a0fa0f68f4/data_elements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/secrets/SEb106c9ec7cf7497c8aec69fef3e24cdf",
- "property": "https://reactor.adobe.io/secrets/SEb106c9ec7cf7497c8aec69fef3e24cdf/property"
+ "self": "https://reactor.adobe.io/secrets/SEb2226d52b4194030b15bb8a0fa0f68f4",
+ "property": "https://reactor.adobe.io/secrets/SEb2226d52b4194030b15bb8a0fa0f68f4/property"
}
}
},
@@ -36275,11 +36876,11 @@
"response": {
"data": [
{
- "id": "SEa1de5b007ebe41539d99f9b79e537ad3",
+ "id": "SEd0b8eeaedb01453bb94e3638728dc586",
"type": "secrets",
"attributes": {
- "created_at": "2023-01-30T21:12:18.875Z",
- "updated_at": "2023-01-30T21:12:18.875Z",
+ "created_at": "2023-04-21T23:08:29.905Z",
+ "updated_at": "2023-04-21T23:08:29.905Z",
"name": "Example Secret",
"type_of": "token",
"activated_at": null,
@@ -36296,19 +36897,19 @@
"relationships": {
"property": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SEa1de5b007ebe41539d99f9b79e537ad3/property"
+ "related": "https://reactor.adobe.io/secrets/SEd0b8eeaedb01453bb94e3638728dc586/property"
},
"data": {
- "id": "PR0eb638f667e546d883accab96322df48",
+ "id": "PR4c5c1ae11216436e9213cb00002e1a4f",
"type": "properties"
}
},
"environment": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SEa1de5b007ebe41539d99f9b79e537ad3/environment"
+ "related": "https://reactor.adobe.io/secrets/SEd0b8eeaedb01453bb94e3638728dc586/environment"
},
"data": {
- "id": "EN047e5ff7b6144a708510b121f2749e4b",
+ "id": "ENe176985a7f7d4547b1be200d45d56682",
"type": "environments"
},
"meta": {
@@ -36317,18 +36918,18 @@
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SEa1de5b007ebe41539d99f9b79e537ad3/notes"
+ "related": "https://reactor.adobe.io/secrets/SEd0b8eeaedb01453bb94e3638728dc586/notes"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SEa1de5b007ebe41539d99f9b79e537ad3/data_elements"
+ "related": "https://reactor.adobe.io/secrets/SEd0b8eeaedb01453bb94e3638728dc586/data_elements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/secrets/SEa1de5b007ebe41539d99f9b79e537ad3",
- "property": "https://reactor.adobe.io/secrets/SEa1de5b007ebe41539d99f9b79e537ad3/property"
+ "self": "https://reactor.adobe.io/secrets/SEd0b8eeaedb01453bb94e3638728dc586",
+ "property": "https://reactor.adobe.io/secrets/SEd0b8eeaedb01453bb94e3638728dc586/property"
}
}
],
@@ -36354,11 +36955,11 @@
"response": {
"data": [
{
- "id": "SE38b143986c7f43698a42418422ea6009",
+ "id": "SEe57eeb04e5b845cab52b4f4fb64d0e81",
"type": "secrets",
"attributes": {
- "created_at": "2023-01-30T21:12:24.805Z",
- "updated_at": "2023-01-30T21:12:24.805Z",
+ "created_at": "2023-04-21T23:08:36.144Z",
+ "updated_at": "2023-04-21T23:08:36.144Z",
"name": "Example Secret",
"type_of": "token",
"activated_at": null,
@@ -36375,19 +36976,19 @@
"relationships": {
"property": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SE38b143986c7f43698a42418422ea6009/property"
+ "related": "https://reactor.adobe.io/secrets/SEe57eeb04e5b845cab52b4f4fb64d0e81/property"
},
"data": {
- "id": "PR2bb5e4e480a544fb9bd6df623d20248d",
+ "id": "PRbf26e6477952473ba1b226a5b32bc433",
"type": "properties"
}
},
"environment": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SE38b143986c7f43698a42418422ea6009/environment"
+ "related": "https://reactor.adobe.io/secrets/SEe57eeb04e5b845cab52b4f4fb64d0e81/environment"
},
"data": {
- "id": "EN0f7bdb25db9343b9a1661fc0e32a370c",
+ "id": "EN53189c829e884c0fba2114828b19bc4c",
"type": "environments"
},
"meta": {
@@ -36396,18 +36997,18 @@
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SE38b143986c7f43698a42418422ea6009/notes"
+ "related": "https://reactor.adobe.io/secrets/SEe57eeb04e5b845cab52b4f4fb64d0e81/notes"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SE38b143986c7f43698a42418422ea6009/data_elements"
+ "related": "https://reactor.adobe.io/secrets/SEe57eeb04e5b845cab52b4f4fb64d0e81/data_elements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/secrets/SE38b143986c7f43698a42418422ea6009",
- "property": "https://reactor.adobe.io/secrets/SE38b143986c7f43698a42418422ea6009/property"
+ "self": "https://reactor.adobe.io/secrets/SEe57eeb04e5b845cab52b4f4fb64d0e81",
+ "property": "https://reactor.adobe.io/secrets/SEe57eeb04e5b845cab52b4f4fb64d0e81/property"
}
}
],
@@ -36432,11 +37033,11 @@
"request": null,
"response": {
"data": {
- "id": "SEa2fa27a3bc394554999eab45611e11b9",
+ "id": "SEe91a36348b1844b8b0b641d3c84e1c56",
"type": "secrets",
"attributes": {
- "created_at": "2023-01-30T21:12:30.617Z",
- "updated_at": "2023-01-30T21:12:30.617Z",
+ "created_at": "2023-04-21T23:08:42.191Z",
+ "updated_at": "2023-04-21T23:08:42.191Z",
"name": "Example Secret",
"type_of": "token",
"activated_at": null,
@@ -36453,19 +37054,19 @@
"relationships": {
"property": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SEa2fa27a3bc394554999eab45611e11b9/property"
+ "related": "https://reactor.adobe.io/secrets/SEe91a36348b1844b8b0b641d3c84e1c56/property"
},
"data": {
- "id": "PR714f88ec47524fac934ae1a4efc2bd3e",
+ "id": "PR37601e425cab40b794d838f1af070dc4",
"type": "properties"
}
},
"environment": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SEa2fa27a3bc394554999eab45611e11b9/environment"
+ "related": "https://reactor.adobe.io/secrets/SEe91a36348b1844b8b0b641d3c84e1c56/environment"
},
"data": {
- "id": "EN5173bde35d29462e9b2a3a24c4895c58",
+ "id": "ENf78b3c54da344d3587fc7454f0decc78",
"type": "environments"
},
"meta": {
@@ -36474,18 +37075,18 @@
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SEa2fa27a3bc394554999eab45611e11b9/notes"
+ "related": "https://reactor.adobe.io/secrets/SEe91a36348b1844b8b0b641d3c84e1c56/notes"
}
},
"data_elements": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SEa2fa27a3bc394554999eab45611e11b9/data_elements"
+ "related": "https://reactor.adobe.io/secrets/SEe91a36348b1844b8b0b641d3c84e1c56/data_elements"
}
}
},
"links": {
- "self": "https://reactor.adobe.io/secrets/SEa2fa27a3bc394554999eab45611e11b9",
- "property": "https://reactor.adobe.io/secrets/SEa2fa27a3bc394554999eab45611e11b9/property"
+ "self": "https://reactor.adobe.io/secrets/SEe91a36348b1844b8b0b641d3c84e1c56",
+ "property": "https://reactor.adobe.io/secrets/SEe91a36348b1844b8b0b641d3c84e1c56/property"
}
}
},
@@ -36517,28 +37118,28 @@
},
"response": {
"data": {
- "id": "NTb575b911f5824fd4bc47109e9a77b98e",
+ "id": "NT10fe7207501f4f0c944b677473d59960",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T21:12:42.456Z",
+ "created_at": "2023-04-21T23:08:54.803Z",
"text": "this is a secret note"
},
"relationships": {
"resource": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SEe871175fa9864b919b19e64731c7ff1a"
+ "related": "https://reactor.adobe.io/secrets/SE7745df9beb7b4edf8ecafbabe87d7a88"
},
"data": {
- "id": "SEe871175fa9864b919b19e64731c7ff1a",
+ "id": "SE7745df9beb7b4edf8ecafbabe87d7a88",
"type": "secrets"
}
}
},
"links": {
- "resource": "https://reactor.adobe.io/secrets/SEe871175fa9864b919b19e64731c7ff1a",
- "self": "https://reactor.adobe.io/notes/NTb575b911f5824fd4bc47109e9a77b98e"
+ "resource": "https://reactor.adobe.io/secrets/SE7745df9beb7b4edf8ecafbabe87d7a88",
+ "self": "https://reactor.adobe.io/notes/NT10fe7207501f4f0c944b677473d59960"
}
}
},
@@ -36554,28 +37155,28 @@
"response": {
"data": [
{
- "id": "NT0669009785b84b63a5e31f62f9215346",
+ "id": "NTed848da23cfb4f35a13d02a552d47aea",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
- "created_at": "2023-01-30T21:12:48.385Z",
+ "created_at": "2023-04-21T23:09:01.305Z",
"text": "this is a secret note"
},
"relationships": {
"resource": {
"links": {
- "related": "https://reactor.adobe.io/secrets/SEa724ab6598974d0b9af6cfe6c44cc2ab"
+ "related": "https://reactor.adobe.io/secrets/SE62d45cb8eb824d728c08eb7da2ed7c41"
},
"data": {
- "id": "SEa724ab6598974d0b9af6cfe6c44cc2ab",
+ "id": "SE62d45cb8eb824d728c08eb7da2ed7c41",
"type": "secrets"
}
}
},
"links": {
- "resource": "https://reactor.adobe.io/secrets/SEa724ab6598974d0b9af6cfe6c44cc2ab",
- "self": "https://reactor.adobe.io/notes/NT0669009785b84b63a5e31f62f9215346"
+ "resource": "https://reactor.adobe.io/secrets/SE62d45cb8eb824d728c08eb7da2ed7c41",
+ "self": "https://reactor.adobe.io/notes/NTed848da23cfb4f35a13d02a552d47aea"
}
}
],
@@ -36601,10 +37202,10 @@
"response": {
"data": [
{
- "id": "DE3160c70136b04381ab713787686241eb",
+ "id": "DEc2b5a8830aca495bae7dc5d6cf12b556",
"type": "data_elements",
"attributes": {
- "created_at": "2023-01-30T21:12:54.383Z",
+ "created_at": "2023-04-21T23:09:07.770Z",
"deleted_at": null,
"dirty": true,
"enabled": true,
@@ -36612,7 +37213,7 @@
"published": false,
"published_at": null,
"revision_number": 0,
- "updated_at": "2023-01-30T21:12:54.383Z",
+ "updated_at": "2023-04-21T23:09:07.770Z",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
@@ -36623,54 +37224,54 @@
"force_lower_case": false,
"review_status": "unsubmitted",
"storage_duration": null,
- "settings": "{\"secrets\":{\"development\":{\"id\":\"SE61c5d1f672e14b5eb4b97aab8b1df6d6\",\"name\":\"my secret token\"}}}"
+ "settings": "{\"secrets\":{\"development\":{\"id\":\"SE59c3b58008324e2b9306fb7ced597803\",\"name\":\"my secret token\"}}}"
},
"relationships": {
"libraries": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE3160c70136b04381ab713787686241eb/libraries"
+ "related": "https://reactor.adobe.io/data_elements/DEc2b5a8830aca495bae7dc5d6cf12b556/libraries"
}
},
"revisions": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE3160c70136b04381ab713787686241eb/revisions"
+ "related": "https://reactor.adobe.io/data_elements/DEc2b5a8830aca495bae7dc5d6cf12b556/revisions"
}
},
"notes": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE3160c70136b04381ab713787686241eb/notes"
+ "related": "https://reactor.adobe.io/data_elements/DEc2b5a8830aca495bae7dc5d6cf12b556/notes"
}
},
"property": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE3160c70136b04381ab713787686241eb/property"
+ "related": "https://reactor.adobe.io/data_elements/DEc2b5a8830aca495bae7dc5d6cf12b556/property"
},
"data": {
- "id": "PR364ac1cea4d647948f57c265aaa7f274",
+ "id": "PR2b146ae402a3408bb6b37cb7c4d5aed9",
"type": "properties"
}
},
"origin": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE3160c70136b04381ab713787686241eb/origin"
+ "related": "https://reactor.adobe.io/data_elements/DEc2b5a8830aca495bae7dc5d6cf12b556/origin"
},
"data": {
- "id": "DE3160c70136b04381ab713787686241eb",
+ "id": "DEc2b5a8830aca495bae7dc5d6cf12b556",
"type": "data_elements"
}
},
"extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE3160c70136b04381ab713787686241eb/extension"
+ "related": "https://reactor.adobe.io/data_elements/DEc2b5a8830aca495bae7dc5d6cf12b556/extension"
},
"data": {
- "id": "EX56ea2735eaa44c62aec0b10fffa28a9b",
+ "id": "EX01adc6a9246a4c7a9d2b33187ef71c8f",
"type": "extensions"
}
},
"updated_with_extension_package": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE3160c70136b04381ab713787686241eb/updated_with_extension_package"
+ "related": "https://reactor.adobe.io/data_elements/DEc2b5a8830aca495bae7dc5d6cf12b556/updated_with_extension_package"
},
"data": {
"id": "EPfabd069938204ff4a4df13d1eba8f178",
@@ -36679,19 +37280,19 @@
},
"updated_with_extension": {
"links": {
- "related": "https://reactor.adobe.io/data_elements/DE3160c70136b04381ab713787686241eb/updated_with_extension"
+ "related": "https://reactor.adobe.io/data_elements/DEc2b5a8830aca495bae7dc5d6cf12b556/updated_with_extension"
},
"data": {
- "id": "EXb52809ede69442b6af9cc9a5a74cd02e",
+ "id": "EXafe1698dd94349689d580b8e89857ecd",
"type": "extensions"
}
}
},
"links": {
- "property": "https://reactor.adobe.io/properties/PR364ac1cea4d647948f57c265aaa7f274",
- "origin": "https://reactor.adobe.io/data_elements/DE3160c70136b04381ab713787686241eb",
- "self": "https://reactor.adobe.io/data_elements/DE3160c70136b04381ab713787686241eb",
- "extension": "https://reactor.adobe.io/extensions/EX56ea2735eaa44c62aec0b10fffa28a9b"
+ "property": "https://reactor.adobe.io/properties/PR2b146ae402a3408bb6b37cb7c4d5aed9",
+ "origin": "https://reactor.adobe.io/data_elements/DEc2b5a8830aca495bae7dc5d6cf12b556",
+ "self": "https://reactor.adobe.io/data_elements/DEc2b5a8830aca495bae7dc5d6cf12b556",
+ "extension": "https://reactor.adobe.io/extensions/EX01adc6a9246a4c7a9d2b33187ef71c8f"
},
"meta": {
"latest_revision_number": 0
@@ -38561,6 +39162,12 @@
"type_of": {
"type": "string"
},
+ "settings": {
+ "type": [
+ "null",
+ "object"
+ ]
+ },
"status": {
"type": "string",
"enum": [
@@ -47828,6 +48435,7 @@
"enum": [
"oauth2-client_credentials",
"oauth2-google",
+ "oauth2-jwt",
"simple-http",
"token"
]
@@ -48875,6 +49483,12 @@
"type_of": {
"type": "string"
},
+ "settings": {
+ "type": [
+ "null",
+ "object"
+ ]
+ },
"status": {
"type": "string",
"enum": [
@@ -49259,7 +49873,7 @@
null
]
},
- "sandbox_id": {
+ "sandbox_name": {
"type": [
"string",
"null"
@@ -54529,7 +55143,7 @@
null
]
},
- "sandbox_id": {
+ "sandbox_name": {
"type": [
"string",
"null"
@@ -61890,6 +62504,12 @@
"type_of": {
"type": "string"
},
+ "settings": {
+ "type": [
+ "null",
+ "object"
+ ]
+ },
"status": {
"type": "string",
"enum": [
@@ -75469,7 +76089,7 @@
null
]
},
- "sandbox_id": {
+ "sandbox_name": {
"type": [
"string",
"null"
@@ -78890,6 +79510,7 @@
"enum": [
"oauth2-client_credentials",
"oauth2-google",
+ "oauth2-jwt",
"simple-http",
"token"
]
@@ -87097,6 +87718,7 @@
"enum": [
"oauth2-client_credentials",
"oauth2-google",
+ "oauth2-jwt",
"simple-http",
"token"
]