-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update MP provider #23
Changes from all commits
025726c
7bbb435
a229db1
4bd10fb
520a888
bd43a86
6481217
12d116e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,34 @@ | ||||||
{ | ||||||
"data" : { | ||||||
"attributes" : { | ||||||
"available_api_versions" : [ | ||||||
{ | ||||||
"version" : "1.0.0", | ||||||
"url" : "http://providers.optimade.org/index-metadbs/mp/v1/" | ||||||
} | ||||||
], | ||||||
"is_index" : true, | ||||||
"formats" : [ | ||||||
"json" | ||||||
], | ||||||
"entry_types_by_format" : { | ||||||
"json" : [] | ||||||
}, | ||||||
"available_endpoints" : [ | ||||||
"info", | ||||||
"links" | ||||||
], | ||||||
"api_version" : "v1.0.0" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
}, | ||||||
"type" : "info", | ||||||
"relationships" : { | ||||||
"default" : { | ||||||
"data" : { | ||||||
"id" : "mp", | ||||||
"type" : "links" | ||||||
} | ||||||
} | ||||||
}, | ||||||
"id" : "/" | ||||||
} | ||||||
} |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,26 @@ | ||||||
{ | ||||||
"data" : [ | ||||||
{ | ||||||
"id" : "exmpl", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"type" : "links", | ||||||
"attributes" : { | ||||||
"name": "Materials Project", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"description": "The Materials Project: A database of computed materials properties for the discovery and design of novel materials.", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"base_url": "https://optimade.materialsproject.org", | ||||||
"homepage": "https://materialsproject.org", | ||||||
"link_type": "child" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
} | ||||||
}, | ||||||
{ | ||||||
"id" : "optimade-providers", | ||||||
"type" : "links", | ||||||
"attributes" : { | ||||||
"name": "OPTIMADE Providers Index Meta-Database", | ||||||
"description": "The list of OPTIMADE providers maintained by Materials-Consortia", | ||||||
"base_url": "https://providers.optimade.org", | ||||||
"homepage": "https://www.optimade.org", | ||||||
"link_type": "providers" | ||||||
} | ||||||
} | ||||||
] | ||||||
} |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -70,10 +70,10 @@ | |||||
"type": "links", | ||||||
"id": "mp", | ||||||
"attributes": { | ||||||
"name": "materialsproject.org", | ||||||
"description": "", | ||||||
"base_url": null, | ||||||
"homepage": null, | ||||||
"name": "Materials Project", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"description": "The Materials Project: A database of computed materials properties for the discovery and design of novel materials.", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"base_url": "http://providers.optimade.org/index-metadbs/mp", | ||||||
"homepage": "https://materialsproject.org", | ||||||
"link_type": "external" | ||||||
} | ||||||
}, | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.