action bigoven_note_get { label: "Get a given note. Make sure you're passing authentication information in the header for the user who owns the note." provider: bigoven method: GET path: "/recipe/{recipeId}/note/{noteId}" encoding: json input: { type: "object" properties: { noteId: { type: "integer" format: "int32" } recipeId: { type: "integer" format: "int32" } } required: ["noteId", "recipeId"] additionalProperties: false } output: { type: "object" properties: { CreationDate: { type: "string" format: "date-time" } Date: { type: "string" } DateDT: { type: "string" format: "date-time" } GUID: { type: "string" } ID: { type: "integer" format: "int32" } Notes: { type: "string" } People: { type: "string" } RecipeID: { type: "integer" format: "int32" } UserID: { type: "integer" format: "int32" } Variations: { type: "string" } } } }