Skip to content

Commit

Permalink
Merge pull request #282 from mittwald/webhook-meta
Browse files Browse the repository at this point in the history
Correct meta property in lifecycle webhook reference
  • Loading branch information
cloudsftp authored Oct 21, 2024
2 parents 0f131cf + 0155f29 commit e55ed1e
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 24 deletions.
48 changes: 36 additions & 12 deletions docs/contribution/5-reference/4-webhooks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,20 @@ You may use the following placeholders:
},
meta: {
type: "object",
required: ["createdAt"],
required: [
"extensionId",
"contributorId"
],
properties: {
createdAt: {
extensionId: {
type: "string",
format: "date-time",
example: "2024-03-14T11:36:21Z",
format: "uuid",
example: "c593348d-f594-492a-8185-2b89848a4160",
},
contributorId: {
type: "string",
format: "uuid",
example: "680ba069-7465-4932-8b23-e73914b2e051",
},
},
},
Expand Down Expand Up @@ -204,12 +212,20 @@ You may use the following placeholders:
},
meta: {
type: "object",
required: ["createdAt"],
required: [
"extensionId",
"contributorId"
],
properties: {
createdAt: {
extensionId: {
type: "string",
format: "date-time",
example: "2024-03-14T11:36:21Z",
format: "uuid",
example: "c593348d-f594-492a-8185-2b89848a4160",
},
contributorId: {
type: "string",
format: "uuid",
example: "680ba069-7465-4932-8b23-e73914b2e051",
},
},
},
Expand Down Expand Up @@ -388,12 +404,20 @@ You may use the following placeholders:
},
meta: {
type: "object",
required: ["createdAt"],
required: [
"extensionId",
"contributorId"
],
properties: {
createdAt: {
extensionId: {
type: "string",
format: "date-time",
example: "2024-03-14T11:36:21Z",
format: "uuid",
example: "c593348d-f594-492a-8185-2b89848a4160",
},
contributorId: {
type: "string",
format: "uuid",
example: "680ba069-7465-4932-8b23-e73914b2e051",
},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,20 @@ Folgende Platzhalter können verwendet werden:
},
meta: {
type: "object",
required: ["createdAt"],
required: [
"extensionId",
"contributorId"
],
properties: {
createdAt: {
extensionId: {
type: "string",
format: "date-time",
example: "2024-03-14T11:36:21Z",
format: "uuid",
example: "c593348d-f594-492a-8185-2b89848a4160",
},
contributorId: {
type: "string",
format: "uuid",
example: "680ba069-7465-4932-8b23-e73914b2e051",
},
},
},
Expand Down Expand Up @@ -204,12 +212,20 @@ Folgende Platzhalter können verwendet werden:
},
meta: {
type: "object",
required: ["createdAt"],
required: [
"extensionId",
"contributorId"
],
properties: {
createdAt: {
extensionId: {
type: "string",
format: "date-time",
example: "2024-03-14T11:36:21Z",
format: "uuid",
example: "c593348d-f594-492a-8185-2b89848a4160",
},
contributorId: {
type: "string",
format: "uuid",
example: "680ba069-7465-4932-8b23-e73914b2e051",
},
},
},
Expand Down Expand Up @@ -388,12 +404,20 @@ Folgende Platzhalter können verwendet werden:
},
meta: {
type: "object",
required: ["createdAt"],
required: [
"extensionId",
"contributorId"
],
properties: {
createdAt: {
extensionId: {
type: "string",
format: "date-time",
example: "2024-03-14T11:36:21Z",
format: "uuid",
example: "c593348d-f594-492a-8185-2b89848a4160",
},
contributorId: {
type: "string",
format: "uuid",
example: "680ba069-7465-4932-8b23-e73914b2e051",
},
},
},
Expand Down

0 comments on commit e55ed1e

Please sign in to comment.