├── README.md ├── _data └── objects.yml ├── extended_instructions.md ├── index.html ├── objects.csv ├── objects.json └── objects.xml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/Very-Simple-API/HEAD/README.md -------------------------------------------------------------------------------- /_data/objects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/Very-Simple-API/HEAD/_data/objects.yml -------------------------------------------------------------------------------- /extended_instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/Very-Simple-API/HEAD/extended_instructions.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/Very-Simple-API/HEAD/index.html -------------------------------------------------------------------------------- /objects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/Very-Simple-API/HEAD/objects.csv -------------------------------------------------------------------------------- /objects.json: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | {{ site.data.objects | jsonify }} 4 | -------------------------------------------------------------------------------- /objects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/Very-Simple-API/HEAD/objects.xml --------------------------------------------------------------------------------