{"openapi":"3.1.0","info":{"title":"Nordkood public website APIs","version":"1.0.0","description":"Unauthenticated public APIs for selected open consulting assignments and site health. Private projects, candidates and admin data are not included."},"servers":[{"url":"https://www.nordkood.com"}],"paths":{"/api/public-projects":{"get":{"operationId":"listPublicProjects","summary":"List selected open consulting assignments","responses":{"200":{"description":"Public assignments currently in matching.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PublicProject"}}}}},"502":{"description":"The upstream public assignment feed was unavailable."}}}},"/api/health":{"get":{"operationId":"getHealth","summary":"Website health","responses":{"200":{"description":"The public website is reachable.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Health"}}}}}}}},"components":{"schemas":{"PublicProject":{"type":"object","required":["id","name","context","location","timeline","status","roles"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"sector":{"type":"string"},"context":{"type":"string"},"location":{"type":"string"},"timeline":{"type":"string"},"status":{"type":"string"},"roles":{"type":"array","items":{"$ref":"#/components/schemas/PublicProjectRole"}}}},"PublicProjectRole":{"type":"object","required":["title"],"properties":{"title":{"type":"string"},"tech_stack":{"type":"string"},"languages":{"type":"string"},"allocation":{"type":"string"},"price":{"type":"string"}}},"Health":{"type":"object","required":["ok","service"],"properties":{"ok":{"type":"boolean"},"service":{"type":"string"}}}}}}