├── .gitignore ├── LICENSE.md ├── README.md ├── SIPs ├── README.md ├── sip_001.md └── sip_002.md ├── apiary.md └── images └── ascribe_api_workflow.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ascribe/REST-main/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ascribe/REST-main/HEAD/README.md -------------------------------------------------------------------------------- /SIPs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ascribe/REST-main/HEAD/SIPs/README.md -------------------------------------------------------------------------------- /SIPs/sip_001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ascribe/REST-main/HEAD/SIPs/sip_001.md -------------------------------------------------------------------------------- /SIPs/sip_002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ascribe/REST-main/HEAD/SIPs/sip_002.md -------------------------------------------------------------------------------- /apiary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ascribe/REST-main/HEAD/apiary.md -------------------------------------------------------------------------------- /images/ascribe_api_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ascribe/REST-main/HEAD/images/ascribe_api_workflow.png --------------------------------------------------------------------------------