nsip / specgen_input_au

Capture of specgen input files
2 stars 0 forks source link

Fix examples in infraPaths.yaml #66

Closed joerghuber closed 1 year ago

joerghuber commented 1 year ago

The infraPaths.yaml has definitions for "servicePaths" for some infrastructure operations such as functional services phase operations and message operations of queues. The JSON examples are missing quotes for string values:

Current: pesc: summary: PESC notation for job phase state value: id: 5b72f2d4-7a83-4297-a71f-8b5fb26cbf14 type: INPROGRESS created: 2020-08-29T12:45:10.126Z lastModified: 2020-08-29T12:50:27.394Z description: Merged student data.

Correct: pesc: summary: PESC notation for job phase state value: "id": "5b72f2d4-7a83-4297-a71f-8b5fb26cbf14" "type": "INPROGRESS" "created": "2020-08-29T12:45:10.126Z" "lastModified": "2020-08-29T12:50:27.394Z" "description": "Merged student data."

joerghuber commented 1 year ago

Notation for examples is correct for yaml files.