fabric-testbed / fabric-core-api

Python (Flask) based ReSTful API for FABRIC Core User Services
MIT License
0 stars 0 forks source link

Anonymous endpoint for basic project information #69

Closed mjstealey closed 1 month ago

mjstealey commented 5 months ago

Add anonymous endpoint for basic projects information

{
    "communities": [
        "string"
    ],
    "description": "string",
    "is_public": true,
    "name": "string",
    "uuid": "string"
}
{
    "communities": [
        "STRING",
        ...
    ],
    "description": "STRING",
    "fabric_matrix": [
        {
            "description", "STRING",
            "url", "STRING"
        },
        ...
    ]
    "name": "STRING",
    "project_funding": [
        {
            "agency": "STRING",
            "award_amount": "STRING",
            "award_number": "STRING",
            "directorate": "STRING"
        },
        ...
    ],
    "uuid": "STRING"
}