Sha256: 7388737527d3010f102a97365e17e1aaae915921891d4c68e0e723598b35c456

Contents?: true

Size: 1.56 KB

Versions: 44

Compression:

Stored size: 1.56 KB

Contents

{
  "openapi": "3.0.0",
  "info": {
    "title": "Cheminée",
    "description": "Cheminée: The Chemical Structure Search Engine",
    "version": "1.0",
    "contact": {
      "url": "https://github.com/rdkit-rs/cheminee"
    }
  },
  "servers": [
    {
      "url": "http://localhost:3000/api/v1"
    }
  ],
  "tags": [],
  "paths": {
    "/standardize": {
      "post": {
        "requestBody": {
          "content": {
            "application/json; charset=utf-8": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/Smile"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json; charset=utf-8": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/StandardizedSmile"
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "Smile": {
        "type": "object",
        "required": [
          "smile"
        ],
        "properties": {
          "smile": {
            "type": "string"
          }
        }
      },
      "StandardizedSmile": {
        "type": "object",
        "properties": {
          "smile": {
            "type": "string"
          },
          "error": {
            "type": "string"
          }
        }
      }
    }
  }
}

Version data entries

44 entries across 44 versions & 1 rubygems

Version Path
cheminee-0.1.30 openapi.json
cheminee-0.1.29 openapi.json
cheminee-0.1.28 openapi.json
cheminee-0.1.27 openapi.json
cheminee-0.1.26 openapi.json
cheminee-0.1.24 openapi.json
cheminee-0.1.23 openapi.json
cheminee-0.1.22 openapi.json
cheminee-0.1.21 openapi.json
cheminee-0.1.19 openapi.json
cheminee-0.1.18 openapi.json
cheminee-0.1.17 openapi.json
cheminee-0.1.15 openapi.json
cheminee-0.1.14 openapi.json
cheminee-0.0.14 openapi.json
cheminee-0.1.12 openapi.json
cheminee-0.1.11 openapi.json
cheminee-0.1.10 openapi.json
cheminee-0.1.9 openapi.json
cheminee-0.1.8 openapi.json