-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.json
1 lines (1 loc) · 2.59 KB
/
openapi.json
1
{"openapi":"3.0.2","info":{"title":"Api","version":"0.1.0"},"paths":{"/api/v1/demo":{"get":{"tags":["demo"],"summary":"Demo","operationId":"demo_api_v1_demo_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"title":"Response Demo Api V1 Demo Get","type":"object"}}}}}}},"/api/v1/collections":{"get":{"tags":["Collections"],"summary":"Get Collections","operationId":"get_collections_api_v1_collections_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/api/v1/collections/{node_ref_id}/pending-materials/{missing_attr}":{"get":{"tags":["Collections"],"summary":"Get Materials With Missing Attributes","operationId":"get_materials_with_missing_attributes_api_v1_collections__node_ref_id__pending_materials__missing_attr__get","parameters":[{"required":true,"schema":{"title":"Node Ref Id","type":"string"},"example":"94f22c9b-0d3a-4c1c-8987-4c8e83f3a92e","name":"node_ref_id","in":"path"},{"required":true,"schema":{"$ref":"#/components/schemas/Attribute"},"name":"missing_attr","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"title":"Response Get Materials With Missing Attributes Api V1 Collections Node Ref Id Pending Materials Missing Attr Get","type":"array","items":{"$ref":"#/components/schemas/LearningMaterial"}}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"Attribute":{"title":"Attribute","enum":["properties.cclom:title","properties.cclom:general_keyword","properties.ccm:educationalcontext","properties.ccm:taxonid"],"type":"string","description":"An enumeration."},"HTTPValidationError":{"title":"HTTPValidationError","type":"object","properties":{"errors":{"title":"Errors","type":"array","items":{"$ref":"#/components/schemas/ValidationError"}}}},"LearningMaterial":{"title":"LearningMaterial","required":["node_ref_id"],"type":"object","properties":{"node_ref_id":{"title":"Node Ref Id","type":"string"},"type":{"title":"Type","type":"string"},"path":{"title":"Path","type":"array","items":{"type":"string"},"default":[]},"name":{"title":"Name","type":"string"},"title":{"title":"Title","type":"string"},"keywords":{"title":"Keywords","type":"string"},"educontext":{"title":"Educontext","type":"string"},"subjects":{"title":"Subjects","type":"string"}}},"ValidationError":{"title":"ValidationError","required":["loc","msg","type"],"type":"object","properties":{"body":{"title":"Body","type":"array","items":{"type":"string"}}}}}}}