action apple_app_pre_orders_get_instance { label: "appPreOrders-get_instance" provider: apple method: GET path: "/v1/appPreOrders/{id}" encoding: json input: { type: "object" properties: { "fields[appPreOrders]": { type: "array" items: { type: "string" enum: ["app", "appReleaseDate", "preOrderAvailableDate"] } } include: { type: "array" items: { type: "string" enum: ["app"] } } } additionalProperties: false } 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" } } } } } }