CodepaLOUsa 2019 - Presentations
You can find the slide decks and collateral from my CodepaLOUsa 2019 session here.        A little security goes a long way in DevOps culture   from Deven Phillips           Contract-First API Development   from Deven Phillips      Start with an example JSON object:     {       "title": "Something I need to do",       "description": "A long description",       "dueDate": "2019-09-14T09:00:00.000Z",       "complete": false,       "created": "2019-09-27T14:00:00.000Z",       "id": "543da998-a186-11e9-96b9-2b86a7060fde"   }      Open APICur.io  and create a new API using the blank template    Edit the API    Click on “Add a data type”    Give it a name and paste the example JSON data    Select “REST Resource” and click “Save”    Show OpenAPI YAML Source    Explain about creating a “Request” type and a “Hydrated” type.     Request type would not have “id” or “created”    E...