action apple_app_pre_orders_create_instance { label: "appPreOrders-create_instance" provider: apple method: POST path: "/v1/appPreOrders" encoding: json input: { type: "object" required: ["data"] properties: { data: { type: "object" required: ["relationships", "type"] properties: { attributes: { type: "object" properties: { appReleaseDate: { type: "string" format: "date" } } } relationships: { type: "object" required: ["app"] properties: { app: { type: "object" required: ["data"] properties: { data: { type: "object" required: ["id", "type"] properties: { id: { type: "string" } type: { type: "string" enum: ["apps"] } } } } } } } type: { type: "string" enum: ["appPreOrders"] } } } } } output: { type: "object" required: ["data", "links"] properties: { data: { type: "object" required: ["id", "links", "type"] properties: { attributes: { type: "object" properties: { appReleaseDate: { type: "string" format: "date" } preOrderAvailableDate: { type: "string" format: "date" } } } id: { type: "string" } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } relationships: { type: "object" properties: { app: { type: "object" properties: { data: { type: "object" required: ["id", "type"] properties: { id: { type: "string" } type: { type: "string" enum: ["apps"] } } } links: { type: "object" properties: { related: { type: "string" format: "uri-reference" } self: { type: "string" format: "uri-reference" } } } } } } } type: { type: "string" enum: ["appPreOrders"] } } } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } } } }