Newer
Older
web-services / biblio-tools / swagger.json
@Nicolas Thouvenin Nicolas Thouvenin on 21 Dec 2021 860 bytes add swagger documenation
{
  "servers": [
    {
      "url": "{scheme}://{hostname}",
      "variables": {
        "scheme": {
          "default": "https"
        }
      }
    }
  ],
  "tags": [
    {
      "name": "bibliography",
      "description": "Bibliographie",
      "externalDocs": {
        "description": "Plus de documentation",
        "url": "https://gitbucket.inist.fr/tdm/web-services/tree/master/bilbio-tools"
      }
    }
  ],
  "components": {
    "schemas": {
      "IdDOIList": {
        "type": "array",
        "items": {
          "$ref": "#/components/schemas/IdDOIItem"
        }
      },
      "IdDOIItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer"
          },
          "value": {
            "type": "string",
            "example": "10.4000/edc.9014"
          }
        }
      }
    }
  }
}