├── .github └── workflows │ └── publish.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── index.bs ├── requirements.txt ├── runtime.txt ├── shapetrees-schema.shex ├── shapetrees.ttl └── snippets ├── manager-multiple.ttl ├── manager-single.ttl └── project-tree.ttl /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapetrees/specification/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | index.html 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapetrees/specification/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapetrees/specification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapetrees/specification/HEAD/README.md -------------------------------------------------------------------------------- /index.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapetrees/specification/HEAD/index.bs -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bikeshed 2 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | 3.7 2 | -------------------------------------------------------------------------------- /shapetrees-schema.shex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapetrees/specification/HEAD/shapetrees-schema.shex -------------------------------------------------------------------------------- /shapetrees.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapetrees/specification/HEAD/shapetrees.ttl -------------------------------------------------------------------------------- /snippets/manager-multiple.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapetrees/specification/HEAD/snippets/manager-multiple.ttl -------------------------------------------------------------------------------- /snippets/manager-single.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapetrees/specification/HEAD/snippets/manager-single.ttl -------------------------------------------------------------------------------- /snippets/project-tree.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapetrees/specification/HEAD/snippets/project-tree.ttl --------------------------------------------------------------------------------