--- type: object title: Bill required: - billID - quoteID - processID - jobID - userID - price - currency - created properties: billID: type: string title: Bill UUID description: Bill ID. format: uuid pattern: "^[a-f0-9]{8}(?:-?[a-f0-9]{4}){3}-?[a-f0-9]{12}$" quoteID: type: string title: Quote UUID description: Original quote ID that produced this bill. format: uuid pattern: "^[a-f0-9]{8}(?:-?[a-f0-9]{4}){3}-?[a-f0-9]{12}$" jobID: type: string title: Job UUID description: Job that processed the execution for this bill. format: uuid pattern: "^[a-f0-9]{8}(?:-?[a-f0-9]{4}){3}-?[a-f0-9]{12}$" processID: type: string title: Process identifier description: Process that was executed with quote details and billed. userID: type: integer title: userID description: User ID that requested the quoted proces execution. price: type: number title: price description: Price associated to the bill. currency: type: string title: currency description: Currency code in ISO-4217 format. created: type: string title: created description: Creation date and time of the bill in ISO-8601 format. format: date-time additionalProperties: true